Lines Matching refs:xNode
118 …ng( const ::com::sun::star::uno::Reference< ::com::sun::star::animations::XAnimationNode >& xNode ) in fixMainSequenceTiming() argument
123 Reference< XEnumerationAccess > xEA( xNode, UNO_QUERY_THROW ); in fixMainSequenceTiming()
185 …ng( const ::com::sun::star::uno::Reference< ::com::sun::star::animations::XAnimationNode >& xNode ) in fixInteractiveSequenceTiming() argument
189 Any aBegin( xNode->getBegin() ); in fixInteractiveSequenceTiming()
191 xNode->setBegin( aEmpty ); in fixInteractiveSequenceTiming()
193 Reference< XEnumerationAccess > xEA( xNode, UNO_QUERY_THROW ); in fixInteractiveSequenceTiming()
215 Reference< XAnimationNode > xNode = createAndInsert( rFilter, sServiceName, rxNode ); in addNode() local
216 setNode( rFilter, xNode, pSlide ); in addNode()
225 …void TimeNode::setNode( const XmlFilterBase& rFilter, const Reference< XAnimationNode >& xNode, co… in setNode() argument
227 OSL_ENSURE( xNode.is(), "null node passed" ); in setNode()
232 pSlide->getAnimNodesMap()[ msId ] = xNode; in setNode()
250 xNode->setBegin( aAny ); in setNode()
259 xNode->setEnd( aAny ); in setNode()
268 xNode->setNext( aAny ); in setNode()
276 xNode->setPrev( aAny ); in setNode()
283 xNode->setEndSync(aValue); in setNode()
298 Reference< XAnimate > xAnimate( xNode, UNO_QUERY ); in setNode()
299 Reference< XAnimateColor > xAnimateColor( xNode, UNO_QUERY ); in setNode()
300 Reference< XAnimateMotion > xAnimateMotion( xNode, UNO_QUERY ); in setNode()
301 Reference< XAnimateTransform > xAnimateTransform( xNode, UNO_QUERY ); in setNode()
302 Reference< XCommand > xCommand( xNode, UNO_QUERY ); in setNode()
303 Reference< XIterateContainer > xIterateContainer( xNode, UNO_QUERY ); in setNode()
440 xNode->setUserData( aSeq ); in setNode()
448 xNode->setAcceleration( fDouble ); in setNode()
456 xNode->setDecelerate( fDouble ); in setNode()
464 xNode->setAutoReverse( bBool ); in setNode()
471 xNode->setDuration( aValue ); in setNode()
475 xNode->setFill( nInt16 ); in setNode()
482 xNode->setRepeatCount( aValue ); in setNode()
485 xNode->setRepeatDuration( aValue ); in setNode()
489 xNode->setRestart( nInt16 ); in setNode()
542 Reference< XTransitionFilter > xFilter( xNode, UNO_QUERY ); in setNode()
547 … boost::bind(&TimeNode::addNode, _1, boost::cref(rFilter), boost::ref(xNode), in setNode()
559 fixMainSequenceTiming( xNode ); in setNode()
563 fixInteractiveSequenceTiming( xNode ); in setNode()
587 …Reference< XAnimationNode > xNode ( rFilter.getServiceFactory()->createInstance( rServiceName ), U… in createAndInsert() local
590 xParentContainer->appendChild( xNode ); in createAndInsert()
591 return xNode; in createAndInsert()