Lines Matching refs:pContext
127 SearchContext_impl* pContext = NULL; in replaceAll() local
136 pContext = new SearchContext_impl( xShapes ); in replaceAll()
137 xShape = pContext->firstShape(); in replaceAll()
172 pContext = new SearchContext_impl( xGroupShape, pContext ); in replaceAll()
173 xShape = pContext->firstShape(); in replaceAll()
177 if( pContext ) in replaceAll()
178 xShape = pContext->nextShape(); in replaceAll()
185 while( pContext && !xShape.is() ) in replaceAll()
187 if( pContext->getParent() ) in replaceAll()
189 SearchContext_impl* pOldContext = pContext; in replaceAll()
190 pContext = pContext->getParent(); in replaceAll()
192 xShape = pContext->nextShape(); in replaceAll()
196 delete pContext; in replaceAll()
197 pContext = NULL; in replaceAll()
231 SearchContext_impl* pContext = NULL; in findAll() local
239 pContext = new SearchContext_impl( xShapes ); in findAll()
240 xShape = pContext->firstShape(); in findAll()
283 pContext = new SearchContext_impl( xGroupShape, pContext ); in findAll()
284 xShape = pContext->firstShape(); in findAll()
288 if( pContext ) in findAll()
289 xShape = pContext->nextShape(); in findAll()
296 while( pContext && !xShape.is() ) in findAll()
298 if( pContext->getParent() ) in findAll()
300 SearchContext_impl* pOldContext = pContext; in findAll()
301 pContext = pContext->getParent(); in findAll()
303 xShape = pContext->nextShape(); in findAll()
307 delete pContext; in findAll()
308 pContext = NULL; in findAll()