Lines Matching refs:xShapes

500 		uno::Reference< drawing::XShapes > xShapes( xCollection, uno::UNO_QUERY );  in collectShapeAutoStyles()  local
501 if( xShapes.is() ) in collectShapeAutoStyles()
503 collectShapesAutoStyles( xShapes ); in collectShapeAutoStyles()
688 uno::Reference< drawing::XShapes > xShapes( xShape, uno::UNO_QUERY ); in exportShape() local
689 if( !xShapes.is() ) in exportShape()
935 void XMLShapeExport::collectShapesAutoStyles( const uno::Reference < drawing::XShapes >& xShapes ) in collectShapesAutoStyles() argument
938 seekShapes( xShapes ); in collectShapesAutoStyles()
941 const sal_Int32 nShapeCount(xShapes->getCount()); in collectShapesAutoStyles()
944 xShapes->getByIndex(nShapeId) >>= xShape; in collectShapesAutoStyles()
958 void XMLShapeExport::exportShapes( const uno::Reference < drawing::XShapes >& xShapes, sal_Int32 nF… in exportShapes() argument
961 seekShapes( xShapes ); in exportShapes()
964 const sal_Int32 nShapeCount(xShapes->getCount()); in exportShapes()
967 xShapes->getByIndex(nShapeId) >>= xShape; in exportShapes()
980 void XMLShapeExport::seekShapes( const uno::Reference< drawing::XShapes >& xShapes ) throw() in seekShapes() argument
982 if( xShapes.is() ) in seekShapes()
984 maCurrentShapesIter = maShapesInfos.find( xShapes ); in seekShapes()
988 aNewInfoVector.resize( (ShapesInfos::size_type) xShapes->getCount() ); in seekShapes()
989 maShapesInfos[ xShapes ] = aNewInfoVector; in seekShapes()
991 maCurrentShapesIter = maShapesInfos.find( xShapes ); in seekShapes()
996 …DBG_ASSERT( (*maCurrentShapesIter).second.size() == (ShapesInfos::size_type)xShapes->getCount(), "… in seekShapes()