Lines Matching refs:pList
524 const XmlIdList_t * pList( LookupElementList(i_rStreamName, i_rIdref) ); in LookupElement() local
525 if (pList) in LookupElement()
528 ::std::find_if(pList->begin(), pList->end(), in LookupElement()
536 if (iter != pList->end()) in LookupElement()
576 XmlIdList_t * pList( LookupElementList(i_rStreamName, i_rIdref) ); in TryInsertMetadatable() local
577 if (pList) in TryInsertMetadatable()
579 if (pList->empty()) in TryInsertMetadatable()
581 pList->push_back( &i_rObject ); in TryInsertMetadatable()
589 if ( pList->end() == ::std::find_if(pList->begin(), pList->end(), in TryInsertMetadatable()
601 pList->push_front( &i_rObject ); in TryInsertMetadatable()
824 XmlIdList_t * pList ( m_pImpl->LookupElementList(path, idref) ); in RegisterCopy() local
825 OSL_ENSURE( ::std::find( pList->begin(), pList->end(), &i_rCopy ) in RegisterCopy()
826 == pList->end(), "copy already registered???"); in RegisterCopy()
828 ::std::find( pList->begin(), pList->end(), &i_rSource ) ); in RegisterCopy()
829 OSL_ENSURE(srcpos != pList->end(), "source not in list???"); in RegisterCopy()
830 if (srcpos == pList->end()) in RegisterCopy()
836 pList->insert( srcpos, &i_rCopy ); in RegisterCopy()
841 pList->insert( ++srcpos, &i_rCopy ); in RegisterCopy()
1683 static void dump(sfx2::XmlIdList_t * pList)
1688 static void dump(sfx2::XmlIdList_t * pList) in dump() argument
1690 fprintf(stderr, "\nXmlIdList(%p): ", pList); in dump()
1691 for (sfx2::XmlIdList_t::iterator i = pList->begin(); i != pList->end(); ++i) in dump()