Lines Matching refs:BufferNode

36 BufferNode::BufferNode( const cssu::Reference< cssxw::XXMLElementWrapper >& xXMLElement )  in BufferNode()  function in BufferNode
44 bool BufferNode::isECOfBeforeModifyIncluded(sal_Int32 nIgnoredSecurityId) const in isECOfBeforeModifyIncluded()
96 void BufferNode::setReceivedAll() in setReceivedAll()
128 bool BufferNode::isAllReceived() const in isAllReceived()
133 void BufferNode::addElementCollector(const ElementCollector* pElementCollector) in addElementCollector()
163 void BufferNode::removeElementCollector(const ElementCollector* pElementCollector) in removeElementCollector()
203 ElementMark* BufferNode::getBlocker() const in getBlocker()
208 void BufferNode::setBlocker(const ElementMark* pBlocker) in setBlocker()
247 rtl::OUString BufferNode::printChildren() const in printChildren()
317 bool BufferNode::hasAnything() const in hasAnything()
347 bool BufferNode::hasChildren() const in hasChildren()
377 std::vector< const BufferNode* >* BufferNode::getChildren() const in getChildren()
379 return new std::vector< const BufferNode* >( m_vChildren ); in getChildren()
382 const BufferNode* BufferNode::getFirstChild() const in getFirstChild()
409 BufferNode* rc = NULL; in getFirstChild()
413 rc = (BufferNode*)m_vChildren.front(); in getFirstChild()
416 return (const BufferNode*)rc; in getFirstChild()
419 void BufferNode::addChild(const BufferNode* pChild, sal_Int32 nPosition) in addChild()
456 std::vector< const BufferNode* >::iterator ii = m_vChildren.begin(); in addChild()
462 void BufferNode::addChild(const BufferNode* pChild) in addChild()
494 void BufferNode::removeChild(const BufferNode* pChild) in removeChild()
520 std::vector< const BufferNode* >::iterator ii = m_vChildren.begin(); in removeChild()
532 sal_Int32 BufferNode::indexOfChild(const BufferNode* pChild) const in indexOfChild()
562 std::vector< const BufferNode * >::const_iterator ii = m_vChildren.begin(); in indexOfChild()
582 const BufferNode* BufferNode::childAt(sal_Int32 nIndex) const in childAt()
609 BufferNode* rc = NULL; in childAt()
613 rc = (BufferNode*)m_vChildren[nIndex]; in childAt()
616 return (const BufferNode*)rc; in childAt()
619 const BufferNode* BufferNode::getParent() const in getParent()
624 void BufferNode::setParent(const BufferNode* pParent) in setParent()
626 m_pParent = (BufferNode*)pParent; in setParent()
629 const BufferNode* BufferNode::getNextSibling() const in getNextSibling()
655 BufferNode* rc = NULL; in getNextSibling()
659 rc = (BufferNode*)m_pParent->getNextChild(this); in getNextSibling()
662 return (const BufferNode*)rc; in getNextSibling()
665 const BufferNode* BufferNode::isAncestor(const BufferNode* pDescendant) const in isAncestor()
693 BufferNode* rc = NULL; in isAncestor()
697 std::vector< const BufferNode* >::const_iterator ii = m_vChildren.begin(); in isAncestor()
701 BufferNode* pChild = (BufferNode*)*ii; in isAncestor()
717 return (const BufferNode*)rc; in isAncestor()
720 bool BufferNode::isPrevious(const BufferNode* pFollowing) const in isPrevious()
750 BufferNode* pNextBufferNode = (BufferNode*)getNextNodeByTreeOrder(); in isPrevious()
759 pNextBufferNode = (BufferNode*)(pNextBufferNode->getNextNodeByTreeOrder()); in isPrevious()
765 const BufferNode* BufferNode::getNextNodeByTreeOrder() const in getNextNodeByTreeOrder()
814 BufferNode* pNextSibling = (BufferNode*)getNextSibling(); in getNextNodeByTreeOrder()
824 BufferNode* pNode = (BufferNode*)this; in getNextNodeByTreeOrder()
825 BufferNode* pParent; in getNextNodeByTreeOrder()
826 BufferNode* pNextSiblingParent = NULL; in getNextNodeByTreeOrder()
835 pParent = (BufferNode*)pNode->getParent(); in getNextNodeByTreeOrder()
838 pNextSiblingParent = (BufferNode*)pParent->getNextSibling(); in getNextNodeByTreeOrder()
847 cssu::Reference< cssxw::XXMLElementWrapper > BufferNode::getXMLElement() const in getXMLElement()
852 void BufferNode::setXMLElement( const cssu::Reference< cssxw::XXMLElementWrapper >& xXMLElement ) in setXMLElement()
857 void BufferNode::notifyBranch() in notifyBranch()
884 std::vector< const BufferNode* >::const_iterator ii = m_vChildren.begin(); in notifyBranch()
888 BufferNode* pBufferNode = (BufferNode*)*ii; in notifyBranch()
894 void BufferNode::notifyAncestor() in notifyAncestor()
921 BufferNode* pParent = m_pParent; in notifyAncestor()
925 pParent = (BufferNode*)pParent->getParent(); in notifyAncestor()
929 void BufferNode::elementCollectorNotify() in elementCollectorNotify()
1018 bool BufferNode::isECInSubTreeIncluded(sal_Int32 nIgnoredSecurityId) const in isECInSubTreeIncluded()
1066 std::vector< const BufferNode* >::const_iterator ii = m_vChildren.begin(); in isECInSubTreeIncluded()
1070 BufferNode* pBufferNode = (BufferNode*)*ii; in isECInSubTreeIncluded()
1083 bool BufferNode::isECOfBeforeModifyInAncestorIncluded(sal_Int32 nIgnoredSecurityId) const in isECOfBeforeModifyInAncestorIncluded()
1118 BufferNode* pParentNode = m_pParent; in isECOfBeforeModifyInAncestorIncluded()
1127 pParentNode = (BufferNode*)pParentNode->getParent(); in isECOfBeforeModifyInAncestorIncluded()
1133 bool BufferNode::isBlockerInSubTreeIncluded(sal_Int32 nIgnoredSecurityId) const in isBlockerInSubTreeIncluded()
1166 std::vector< const BufferNode* >::const_iterator ii = m_vChildren.begin(); in isBlockerInSubTreeIncluded()
1170 BufferNode* pBufferNode = (BufferNode*)*ii; in isBlockerInSubTreeIncluded()
1191 const BufferNode* BufferNode::getNextChild(const BufferNode* pChild) const in getNextChild()
1218 BufferNode* rc = NULL; in getNextChild()
1221 std::vector< const BufferNode* >::const_iterator ii = m_vChildren.begin(); in getNextChild()
1226 rc = (BufferNode*)*ii; in getNextChild()
1236 return (const BufferNode*)rc; in getNextChild()
1240 void BufferNode::freeAllChildren() in freeAllChildren()
1266 std::vector< const BufferNode* >::const_iterator ii = m_vChildren.begin(); in freeAllChildren()
1269 BufferNode *pChild = (BufferNode *)(*ii); in freeAllChildren()