Lines Matching refs:maChilds
139 TreeNodeVector maChilds; member in toolkit::MutableTreeNode
332 TreeNodeVector::iterator aIter( maChilds.begin() ); in ~MutableTreeNode()
333 while( aIter != maChilds.end() ) in ~MutableTreeNode()
407 maChilds.push_back( xImpl ); in appendChild()
420 if( (nChildIndex < 0) || (nChildIndex > (sal_Int32)maChilds.size()) ) in insertChildByIndex()
430 TreeNodeVector::iterator aIter( maChilds.begin() ); in insertChildByIndex()
431 while( (nChildIndex-- > 0) && (aIter != maChilds.end()) ) in insertChildByIndex()
434 maChilds.insert( aIter, xImpl ); in insertChildByIndex()
448 if( (nChildIndex >= 0) && (nChildIndex < (sal_Int32)maChilds.size()) ) in removeChildByIndex()
450 TreeNodeVector::iterator aIter( maChilds.begin() ); in removeChildByIndex()
451 while( nChildIndex-- && (aIter != maChilds.end()) ) in removeChildByIndex()
454 if( aIter != maChilds.end() ) in removeChildByIndex()
457 maChilds.erase( aIter ); in removeChildByIndex()
554 if( (nChildIndex < 0) || (nChildIndex >= (sal_Int32)maChilds.size()) ) in getChildAt()
556 return getReference( maChilds[nChildIndex].get() ); in getChildAt()
564 return (sal_Int32)maChilds.size(); in getChildCount()
584 sal_Int32 nChildCount = maChilds.size(); in getIndex()
587 if( maChilds[nChildCount] == xImpl ) in getIndex()