Lines Matching refs:xShapes

70 …SearchContext_impl( uno::Reference< drawing::XShapes >  xShapes, SearchContext_impl* pParent = NUL…  in SearchContext_impl()  argument
71 : mxShapes( xShapes ), mnIndex( -1 ), mpParent( pParent ) {} in SearchContext_impl()
124 uno::Reference< drawing::XShapes > xShapes; in replaceAll() local
132 xPage->queryInterface( ITYPE( drawing::XShapes ) ) >>= xShapes; in replaceAll()
134 if( xShapes.is() && (xShapes->getCount() > 0) ) in replaceAll()
136 pContext = new SearchContext_impl( xShapes ); in replaceAll()
141 xShapes = NULL; in replaceAll()
228 uno::Reference< drawing::XShapes > xShapes; in findAll() local
235 xPage->queryInterface( ITYPE( drawing::XShapes ) ) >>= xShapes; in findAll()
237 if( xShapes.is() && xShapes->getCount() > 0 ) in findAll()
239 pContext = new SearchContext_impl( xShapes ); in findAll()
244 xShapes = NULL; in findAll()
337 uno::Reference< container::XIndexAccess > xShapes( xPage, uno::UNO_QUERY ); in GetCurrentShape() local
338 if( xShapes.is() ) in GetCurrentShape()
340 if(xShapes->getCount() > 0) in GetCurrentShape()
342 xShapes->getByIndex(0) >>= xShape; in GetCurrentShape()
383 uno::Reference< container::XIndexAccess > xShapes( xPage, uno::UNO_QUERY ); in findNext() local
386 if( xShapes.is() ) in findNext()
388 uno::Reference< drawing::XShape > xFound2( GetNextShape( xShapes, xCurrentShape ) ); in findNext()
413 …chReplaceShape::GetNextShape( uno::Reference< container::XIndexAccess > xShapes, uno::Reference< … in GetNextShape() argument
418 if(xShapes.is() && xCurrentShape.is()) in GetNextShape()
420 const sal_Int32 nCount = xShapes->getCount(); in GetNextShape()
424 xShapes->getByIndex(i) >>= xSearchShape; in GetNextShape()
440 xShapes->getByIndex( i ) >>= xFound; in GetNextShape()
458 xShapes->getByIndex(i) >>= xFound; in GetNextShape()