Lines Matching refs:aIt
548 tChildMap::const_iterator aIt( m_aChildMap.find( rParent )); in hasChildren() local
549 if( aIt != m_aChildMap.end()) in hasChildren()
550 return ! (aIt->second.empty()); in hasChildren()
559 tChildMap::const_iterator aIt( m_aChildMap.find( rParent )); in getChildren() local
560 if( aIt != m_aChildMap.end()) in getChildren()
561 return aIt->second; in getChildren()
570 for( tChildMap::const_iterator aIt( m_aChildMap.begin()); in getSiblings() local
571 aIt != m_aChildMap.end(); ++aIt ) in getSiblings()
574 ::std::find( aIt->second.begin(), aIt->second.end(), rNode )); in getSiblings()
575 if( aElemIt != aIt->second.end()) in getSiblings()
576 return aIt->second; in getSiblings()
588 ObjectHierarchy::tChildContainer::const_iterator aIt( in getParentImpl() local
591 if( aIt != aChildren.end()) in getParentImpl()
594 for( aIt = aChildren.begin(); aIt != aChildren.end(); ++aIt ) in getParentImpl()
597 ObjectHierarchy::tOID aTempParent( getParentImpl( *aIt, rOID )); in getParentImpl()
678 tChildContainer::const_iterator aIt( aChildren.begin() ); in getIndexInParent() local
679 for( sal_Int32 nIndex = 0; aIt != aChildren.end(); ++nIndex, ++aIt ) in getIndexInParent()
681 if ( *aIt == rNode ) in getIndexInParent()
781 ObjectHierarchy::tChildContainer::const_iterator aIt( in next() local
783 OSL_ASSERT( aIt != aSiblings.end()); in next()
784 if( ++aIt == aSiblings.end()) in next()
785 aIt = aSiblings.begin(); in next()
786 setCurrentSelection( *aIt ); in next()
801 ObjectHierarchy::tChildContainer::const_iterator aIt( in previous() local
803 OSL_ASSERT( aIt != aSiblings.end()); in previous()
804 if( aIt == aSiblings.begin()) in previous()
805 aIt = aSiblings.end(); in previous()
806 --aIt; in previous()
807 setCurrentSelection( *aIt ); in previous()