Lines Matching refs:mpPageContext

130 :	mpPageContext(NULL),  in XMLShapeImportHelper()
1354 if( mpPageContext ) in addGluePointMapping()
1355 mpPageContext->maShapeGluePointsMap[xShape][nSourceId] = nDestinnationId; in addGluePointMapping()
1363 if( mpPageContext ) in findGluePointMapping()
1365 … ShapeGluePointsMap::iterator aShapeIter( mpPageContext->maShapeGluePointsMap.find( xShape ) ); in findGluePointMapping()
1367 if( aShapeIter != mpPageContext->maShapeGluePointsMap.end() ) in findGluePointMapping()
1390 if( mpPageContext ) in moveGluePointMapping()
1392 ShapeGluePointsMap::iterator aShapeIter( mpPageContext->maShapeGluePointsMap.find( xShape ) ); in moveGluePointMapping()
1393 if( aShapeIter != mpPageContext->maShapeGluePointsMap.end() ) in moveGluePointMapping()
1411 if( mpPageContext ) in getGluePointId()
1413 ShapeGluePointsMap::iterator aShapeIter( mpPageContext->maShapeGluePointsMap.find( xShape ) ); in getGluePointId()
1414 if( aShapeIter != mpPageContext->maShapeGluePointsMap.end() ) in getGluePointId()
1428 XMLShapeImportPageContextImpl* pOldContext = mpPageContext; in startPage()
1429 mpPageContext = new XMLShapeImportPageContextImpl(); in startPage()
1430 mpPageContext->mpNext = pOldContext; in startPage()
1431 mpPageContext->mxShapes = rShapes; in startPage()
1441 …DBG_ASSERT( mpPageContext && (mpPageContext->mxShapes == rShapes), "wrong call to endPage(), no st… in endPage()
1442 if( NULL == mpPageContext ) in endPage()
1447 XMLShapeImportPageContextImpl* pNextContext = mpPageContext->mpNext; in endPage()
1448 delete mpPageContext; in endPage()
1449 mpPageContext = pNextContext; in endPage()