Lines Matching refs:rpNode
65 OUString DebugGetDescription (const AnimationNodeSharedPtr& rpNode) in DebugGetDescription() argument
67 if (::boost::dynamic_pointer_cast<BaseContainerNode>(rpNode)) in DebugGetDescription()
70 if (::boost::dynamic_pointer_cast<ParallelTimeContainer>(rpNode)) in DebugGetDescription()
72 else if (::boost::dynamic_pointer_cast<SequentialTimeContainer>(rpNode)) in DebugGetDescription()
77 else if (::boost::dynamic_pointer_cast<AnimationTransitionFilterNode>(rpNode)) in DebugGetDescription()
79 else if (::boost::dynamic_pointer_cast<AnimationAudioNode>(rpNode)) in DebugGetDescription()
81 else if (::boost::dynamic_pointer_cast<AnimationColorNode>(rpNode)) in DebugGetDescription()
83 else if (::boost::dynamic_pointer_cast<AnimationCommandNode>(rpNode)) in DebugGetDescription()
85 else if (::boost::dynamic_pointer_cast<AnimationPathMotionNode>(rpNode)) in DebugGetDescription()
87 else if (::boost::dynamic_pointer_cast<AnimationSetNode>(rpNode)) in DebugGetDescription()
89 else if (::boost::dynamic_pointer_cast<AnimationTransformNode>(rpNode)) in DebugGetDescription()
91 else if (::boost::dynamic_pointer_cast<PropertyAnimationNode>(rpNode)) in DebugGetDescription()
100 void DebugShowState (const AnimationNodeSharedPtr& rpNode) in DebugShowState() argument
102 if ( ! rpNode) in DebugShowState()
107 switch (rpNode->getState()) in DebugShowState()
136 const uno::Any aBegin (rpNode->getXAnimationNode()->getBegin()); in DebugShowState()
163 rpNode.get(), in DebugShowState()
164 rpNode.get(), in DebugShowState()
165 rpNode->getXAnimationNode().get(), in DebugShowState()
167 ::rtl::OUStringToOString(DebugGetDescription(rpNode), RTL_TEXTENCODING_ASCII_US).getStr(), in DebugShowState()
172 ::boost::dynamic_pointer_cast<BaseContainerNode>(rpNode)); in DebugShowState()
174 ::boost::static_pointer_cast<NodeContainer>(rpNode)->ShowChildrenState(); in DebugShowState()
192 AnimationNodeSharedPtr DebugGetTreeRoot (const BaseNodeSharedPtr& rpNode) in DebugGetTreeRoot() argument
194 BaseNodeSharedPtr pNode (rpNode); in DebugGetTreeRoot()
212 void Debug_ShowNodeTree (const AnimationNodeSharedPtr& rpNode) in Debug_ShowNodeTree() argument
216 DebugShowState(DebugGetTreeRoot(::boost::dynamic_pointer_cast<BaseNode>(rpNode))); in Debug_ShowNodeTree()