Home
last modified time | relevance | path

Searched refs:xTransform (Results 1 – 9 of 9) sorted by relevance

/AOO42X/main/extensions/source/propctrlr/ !
H A Dunourl.cxx46 Reference< XURLTransformer > xTransform; in UnoURL() local
51xTransform = xTransform.query( _rxORB->createInstance( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARA… in UnoURL()
52 … OSL_ENSURE( xTransform.is(), "UnoURL::UnoURL: could not create an URL transformer!" ); in UnoURL()
53 if ( xTransform.is() ) in UnoURL()
54 xTransform->parseStrict( m_aURL ); in UnoURL()
/AOO42X/main/sd/source/core/ !
H A DCustomAnimationEffect.cxx1454 … Reference< XAnimateTransform > xTransform( xEnumeration->nextElement(), UNO_QUERY ); in getTransformationProperty() local
1455 if( !xTransform.is() ) in getTransformationProperty()
1458 if( xTransform->getTransformType() == nTransformType ) in getTransformationProperty()
1462 case VALUE_FROM: aProperty = xTransform->getFrom(); break; in getTransformationProperty()
1463 case VALUE_TO: aProperty = xTransform->getTo(); break; in getTransformationProperty()
1464 case VALUE_BY: aProperty = xTransform->getBy(); break; in getTransformationProperty()
1468 Sequence<Any> aValues( xTransform->getValues() ); in getTransformationProperty()
1503 … Reference< XAnimateTransform > xTransform( xEnumeration->nextElement(), UNO_QUERY ); in setTransformationProperty() local
1504 if( !xTransform.is() ) in setTransformationProperty()
1507 if( xTransform->getTransformType() == nTransformType ) in setTransformationProperty()
[all …]
/AOO42X/main/svgio/source/svgreader/ !
H A Dsvgmasknode.cxx255 const drawinglayer::primitive2d::Primitive2DReference xTransform( in apply() local
262 … aMaskTarget = drawinglayer::primitive2d::Primitive2DSequence(&xTransform, 1); in apply()
269 const drawinglayer::primitive2d::Primitive2DReference xTransform( in apply() local
274 … aMaskTarget = drawinglayer::primitive2d::Primitive2DSequence(&xTransform, 1); in apply()
H A Dsvgsvgnode.cxx551 const drawinglayer::primitive2d::Primitive2DReference xTransform( in decomposeSvgNode() local
556 … aSequence = drawinglayer::primitive2d::Primitive2DSequence(&xTransform, 1); in decomposeSvgNode()
654 const drawinglayer::primitive2d::Primitive2DReference xTransform( in decomposeSvgNode() local
659 … aSequence = drawinglayer::primitive2d::Primitive2DSequence(&xTransform, 1); in decomposeSvgNode()
/AOO42X/main/sd/source/filter/ppt/ !
H A Dpptinanimations.cxx2378 Reference< XAnimateTransform > xTransform( xNode, UNO_QUERY ); in importAnimateScaleContainer() local
2380 …DBG_ASSERT( pAtom && pAtom->getType() == DFF_msofbtAnimateScale && xTransform.is(), "invalid call … in importAnimateScaleContainer()
2381 if( pAtom && xTransform.is() ) in importAnimateScaleContainer()
2383 xTransform->setTransformType( AnimationTransformType::SCALE ); in importAnimateScaleContainer()
2411 xTransform->setFrom( makeAny( aPair ) ); in importAnimateScaleContainer()
2419 xTransform->setTo( makeAny( aPair ) ); in importAnimateScaleContainer()
2431 xTransform->setBy( makeAny( aPair ) ); in importAnimateScaleContainer()
2440 xTransform->setTo( makeAny( aPair ) ); in importAnimateScaleContainer()
2479 Reference< XAnimateTransform > xTransform( xNode, UNO_QUERY ); in importAnimateRotationContainer() local
2481 …DBG_ASSERT( pAtom && pAtom->getType() == DFF_msofbtAnimateRotation && xTransform.is(), "invalid ca… in importAnimateRotationContainer()
[all …]
/AOO42X/main/sd/source/filter/eppt/ !
H A Dpptexanimations.cxx1974 Reference< XAnimateTransform > xTransform( xNode, UNO_QUERY ); in exportAnimateTransform() local
1975 if ( xTransform.is() ) in exportAnimateTransform()
1977 if ( xTransform->getTransformType() == AnimationTransformType::SCALE ) in exportAnimateTransform()
1993 if ( xTransform->getBy() >>= aPair ) in exportAnimateTransform()
2002 if ( xTransform->getFrom() >>= aPair ) in exportAnimateTransform()
2011 if( xTransform->getTo() >>= aPair ) in exportAnimateTransform()
2029 else if ( xTransform->getTransformType() == AnimationTransformType::ROTATE ) in exportAnimateTransform()
2041 if ( xTransform->getBy() >>= fVal ) in exportAnimateTransform()
2046 if ( xTransform->getFrom() >>= fVal ) in exportAnimateTransform()
2051 if ( xTransform->getTo() >>= fVal ) in exportAnimateTransform()
/AOO42X/main/sfx2/source/control/ !
H A Drequest.cxx392 com::sun::star::uno::Reference< com::sun::star::util::XURLTransformer > xTransform( in Record() local
398 xTransform->parseStrict(aURL); in Record()
/AOO42X/main/xmloff/source/draw/ !
H A Danimationimport.cxx1124 Reference< XAnimateTransform > xTransform( mxNode, UNO_QUERY ); in init_node() local
1125 if( xTransform.is() ) in init_node()
1129 xTransform->setTransformType( (sal_Int16)nEnum ); in init_node()
H A Danimationexport.cxx1298 Reference< XAnimateTransform > xTransform( xAnimate, UNO_QUERY_THROW ); in exportAnimate() local
1299 nTemp = xTransform->getTransformType(); in exportAnimate()