Lines Matching refs:xNode
142 …ct( const ::com::sun::star::uno::Reference< ::com::sun::star::animations::XAnimationNode >& xNode ) in CustomAnimationEffect() argument
162 setNode( xNode ); in CustomAnimationEffect()
167 …de( const ::com::sun::star::uno::Reference< ::com::sun::star::animations::XAnimationNode >& xNode ) in setNode() argument
169 mxNode = xNode; in setNode()
398 Reference< XAnimationNode > xNode( xCloneable->createClone(), UNO_QUERY_THROW ); in clone() local
399 CustomAnimationEffectPtr pEffect( new CustomAnimationEffect( xNode ) ); in clone()
406 sal_Int32 CustomAnimationEffect::get_node_type( const Reference< XAnimationNode >& xNode ) in get_node_type() argument
410 if( xNode.is() ) in get_node_type()
412 Sequence< NamedValue > aUserData( xNode->getUserData() ); in get_node_type()
861 …de( const ::com::sun::star::uno::Reference< ::com::sun::star::animations::XAnimationNode >& xNode ) in replaceNode() argument
876 setNode( xNode ); in replaceNode()
1595 Reference< XAnimationNode > xNode( xEnumeration->nextElement(), UNO_QUERY ); in findCommandNode() local
1596 if( xNode.is() && (xNode->getType() == AnimationNodeType::COMMAND) ) in findCommandNode()
1597 xCommand.set( xNode, UNO_QUERY_THROW ); in findCommandNode()
1780 Reference< XAnimationNode > xNode( mxSequenceRoot, UNO_QUERY_THROW ); in EffectSequenceHelper() local
1781 create( xNode ); in EffectSequenceHelper()
1829 Reference< XAnimationNode > xNode( pPreset->create( strEmpty ) ); in append() local
1830 if( xNode.is() ) in append()
1834 Sequence< NamedValue > aUserData( xNode->getUserData() ); in append()
1853 xNode->setUserData( aUserData ); in append()
1877 pEffect.reset( new CustomAnimationEffect( xNode ) ); in append()
2014 Reference< XAnimationNode > xNode( xChildEnumeration->nextElement(), UNO_QUERY_THROW ); in implRebuild() local
2015 xChildContainer->removeChild( xNode ); in implRebuild()
2226 Reference< XAnimationNode > xNode( xNextContainer, UNO_QUERY_THROW ); in stl_process_after_effect_node_func() local
2227 xNode->setBegin( makeAny( (double)0.0 ) ); in stl_process_after_effect_node_func()
2229 xNextClickContainer->appendChild( xNode ); in stl_process_after_effect_node_func()
2257 Reference< XAnimationNode > xNode( xNextContainer, UNO_QUERY_THROW ); in stl_process_after_effect_node_func() local
2258 xNode->setBegin( makeAny( (double)0.0 ) ); in stl_process_after_effect_node_func()
2260 xNewClickContainer->appendChild( xNode ); in stl_process_after_effect_node_func()
2304 …nst ::com::sun::star::uno::Reference< ::com::sun::star::animations::XAnimationNode >& xNode ) const in findEffect()
2311 if( (*aIter)->getNode() == xNode ) in findEffect()
3052 …te( const ::com::sun::star::uno::Reference< ::com::sun::star::animations::XAnimationNode >& xNode ) in create() argument
3054 DBG_ASSERT( xNode.is(), "sd::EffectSequenceHelper::create(), illegal argument" ); in create()
3056 if( xNode.is() ) try in create()
3058 Reference< XEnumerationAccess > xEnumerationAccess( xNode, UNO_QUERY_THROW ); in create()
3074 void EffectSequenceHelper::createEffectsequence( const Reference< XAnimationNode >& xNode ) in createEffectsequence() argument
3076 DBG_ASSERT( xNode.is(), "sd::EffectSequenceHelper::createEffectsequence(), illegal argument" ); in createEffectsequence()
3078 if( xNode.is() ) try in createEffectsequence()
3080 Reference< XEnumerationAccess > xEnumerationAccess( xNode, UNO_QUERY_THROW ); in createEffectsequence()
3097 void EffectSequenceHelper::createEffects( const Reference< XAnimationNode >& xNode ) in createEffects() argument
3099 DBG_ASSERT( xNode.is(), "sd::EffectSequenceHelper::createEffects(), illegal argument" ); in createEffects()
3101 if( xNode.is() ) try in createEffects()
3103 Reference< XEnumerationAccess > xEnumerationAccess( xNode, UNO_QUERY_THROW ); in createEffects()
3144 void EffectSequenceHelper::processAfterEffect( const Reference< XAnimationNode >& xNode ) in processAfterEffect() argument
3150 Sequence< NamedValue > aUserData( xNode->getUserData() ); in processAfterEffect()
3180 if( xNode->getType() == AnimationNodeType::ANIMATECOLOR ) in processAfterEffect()
3183 Reference< XAnimate > xAnimate( xNode, UNO_QUERY_THROW ); in processAfterEffect()
3190 Reference< XChild > xNodeChild( xNode, UNO_QUERY_THROW ); in processAfterEffect()
3285 …ce( const ::com::sun::star::uno::Reference< ::com::sun::star::animations::XAnimationNode >& xNode ) in MainSequence() argument
3286 : mxTimingRootNode( xNode, UNO_QUERY ) in MainSequence()
3461 …nst ::com::sun::star::uno::Reference< ::com::sun::star::animations::XAnimationNode >& xNode ) const in findEffect()
3463 CustomAnimationEffectPtr pEffect = EffectSequenceHelper::findEffect( xNode ); in findEffect()
3470 pEffect = (*aIter)->findEffect( xNode ); in findEffect()