Lines Matching refs:xTransform
1454 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()
1512 if( xTransform->getFrom() != rValue ) in setTransformationProperty()
1514 xTransform->setFrom( rValue ); in setTransformationProperty()
1519 if( xTransform->getTo() != rValue ) in setTransformationProperty()
1521 xTransform->setTo( rValue ); in setTransformationProperty()
1526 if( xTransform->getBy() != rValue ) in setTransformationProperty()
1528 xTransform->setBy( rValue ); in setTransformationProperty()
1535 Sequence<Any> aValues( xTransform->getValues() ); in setTransformationProperty()
1543 xTransform->setValues( aValues ); in setTransformationProperty()