Lines Matching refs:xStyle

286 			Reference<XStyle> xStyle( xPropState, UNO_QUERY );  in exportStyle()  local
287 while ( xStyle.is() ) in exportStyle()
289 OUString aParentStyle( xStyle->getParentStyle() ); in exportStyle()
309 xStyle = Reference<XStyle>( xPropState, UNO_QUERY ); in exportStyle()
457 Reference< XStyle > xStyle; in exportStyleFamily() local
460 xStyles->getByName( *pIter ) >>= xStyle; in exportStyleFamily()
471 DBG_ASSERT( xStyle.is(), "Style not found for export!" ); in exportStyleFamily()
472 if( xStyle.is() ) in exportStyleFamily()
474 if( !bUsed || xStyle->isInUse() ) in exportStyleFamily()
476 sal_Bool bExported = exportStyle( xStyle, rXMLFamily, rPropMapper, in exportStyleFamily()
482 Reference< XPropertySet > xPropSet( xStyle, UNO_QUERY ); in exportStyleFamily()
494 String *pTmp = new String( xStyle->getName() ); in exportStyleFamily()
503 pAutoStylePool->RegisterName( nFamily, xStyle->getName() ); in exportStyleFamily()
514 Reference< XStyle > xStyle; in exportStyleFamily() local
515 xStyles->getByName( *pIter ) >>= xStyle; in exportStyleFamily()
517 DBG_ASSERT( xStyle.is(), "Style not found for export!" ); in exportStyleFamily()
518 if( xStyle.is() ) in exportStyleFamily()
520 Reference< XPropertySet > xPropSet( xStyle, UNO_QUERY ); in exportStyleFamily()
531 if( !xStyle->isInUse() ) in exportStyleFamily()
546 if( xStyle->getName() != sNextName && in exportStyleFamily()
549 xStyleCont->getByName( sNextName ) >>= xStyle; in exportStyleFamily()
550 DBG_ASSERT( xStyle.is(), "Style not found for export!" ); in exportStyleFamily()
552 if( xStyle.is() && exportStyle( xStyle, rXMLFamily, rPropMapper, xStyles,pPrefix ) ) in exportStyleFamily()