Lines Matching refs:Node

45     class Node  class
47 std::vector<Node*> mChildren; // child nodes, create by findChildNode(..)
52 Node *mpUpper; // if I'm a child node that's my parent node
58 Node() // root node Ctor in Node() function in __anon680c6a4f0111::Node
65 Node( const SfxPoolItem& rItem, Node* pParent, const bool bIgnorable ) // child node Ctor in Node() function in __anon680c6a4f0111::Node
73 ~Node();
87 Node* findChildNode( const SfxPoolItem& rItem,
89 Node* nextItemSet( Node* pLast,
102 const StylePool::SfxItemSet_Pointer_t Node::getUsedOrLastAddedItemSet() const in getUsedOrLastAddedItemSet()
119 bool Node::hasItemSet( const bool bCheckUsage ) const in hasItemSet()
148 Node* Node::findChildNode( const SfxPoolItem& rItem, in findChildNode()
152 Node* pNextNode = this; in findChildNode()
153 std::vector<Node*>::iterator aIter = mChildren.begin(); in findChildNode()
162 pNextNode = new Node( rItem, pNextNode, bIsItemIgnorable ); in findChildNode()
184 Node* Node::nextItemSet( Node* pLast, in nextItemSet()
189 std::vector<Node*>::iterator aIter = mChildren.begin(); in nextItemSet()
198 Node *pNext = 0; in nextItemSet()
236 bool Node::hasIgnorableChildren( const bool bCheckUsage ) const in hasIgnorableChildren()
240 std::vector<Node*>::const_iterator aIter = mChildren.begin(); in hasIgnorableChildren()
243 Node* pChild = *aIter; in hasIgnorableChildren()
257 const StylePool::SfxItemSet_Pointer_t Node::getItemSetOfIgnorableChild( in getItemSetOfIgnorableChild()
263 std::vector<Node*>::const_iterator aIter = mChildren.begin(); in getItemSetOfIgnorableChild()
266 Node* pChild = *aIter; in getItemSetOfIgnorableChild()
290 Node::~Node() in ~Node()
292 std::vector<Node*>::iterator aIter = mChildren.begin(); in ~Node()
303 std::map< const SfxItemSet*, Node >& mrRoot;
304 std::map< const SfxItemSet*, Node >::iterator mpCurrNode;
305 Node* mpNode;
310 Iterator( std::map< const SfxItemSet*, Node >& rR, in Iterator()
393 std::map< const SfxItemSet*, Node > maRoot;
431 Node* pCurNode = &maRoot[ rSet.GetParent() ]; in insertItemSet()