Lines Matching refs:xFound
154 uno::Reference< text::XTextRange > xFound; in replaceAll() local
158 xFound = Search( xRange, pDescr ); in replaceAll()
159 if( !xFound.is() ) in replaceAll()
162 xFound->setString( pDescr->getReplaceString() ); in replaceAll()
163 xRange = xFound->getEnd(); in replaceAll()
256 uno::Reference< text::XTextRange > xFound; in findAll() local
260 xFound = Search( xRange, pDescr ); in findAll()
261 if( !xFound.is() ) in findAll()
271 pArray[nFound++] = xFound; in findAll()
273 xRange = xFound->getEnd(); in findAll()
360 uno::Reference< uno::XInterface > xFound; in findNext() local
370 while(!xFound.is() && xRange.is()) in findNext()
372 xFound = Search( xRange, pDescr ); in findNext()
373 if(!xFound.is()) in findNext()
407 return xFound; in findNext()
415 uno::Reference< drawing::XShape > xFound; in GetNextShape() local
434 xGroup->getByIndex( 0 ) >>= xFound; in GetNextShape()
440 xShapes->getByIndex( i ) >>= xFound; in GetNextShape()
442 xFound = xCurrentShape; in GetNextShape()
449 xFound = GetNextShape( xGroup, xCurrentShape ); in GetNextShape()
450 if( xFound.is() ) in GetNextShape()
452 if( xFound.get() == xCurrentShape.get() ) in GetNextShape()
458 xShapes->getByIndex(i) >>= xFound; in GetNextShape()
468 return xFound; in GetNextShape()
595 uno::Reference< text::XText > xFound; in Search() local
623 xFound = (text::XText*)pRange; in Search()
638 return uno::Reference< text::XTextRange > ( xFound, uno::UNO_QUERY ); in Search()