Lines Matching refs:Container
42 Container( _nInitSize ) in UniqueIndex()
61 Container( rIdx ) in UniqueIndex()
86 if ( nCount == Container::GetSize() ) in Insert()
90 nUniqIndex = nUniqIndex % Container::GetSize(); in Insert()
93 while ( Container::ImpGetObject( nUniqIndex ) != NULL ) in Insert()
94 nUniqIndex = (nUniqIndex+1) % Container::GetSize(); in Insert()
97 Container::Replace( p, nUniqIndex ); in Insert()
123 if ( nContIndex >= Container::GetSize() ) in Insert()
127 Container::Replace( p, nContIndex ); in Insert()
148 (nIndex < (Container::GetSize()+nStartIndex)) ) in Remove()
152 void* p = Container::Replace( NULL, nIndex-nStartIndex ); in Remove()
181 return Container::Replace( p, nIndex-nStartIndex ); in Replace()
201 (nIndex < (Container::GetSize()+nStartIndex)) ) in Get()
202 return Container::ImpGetObject( nIndex-nStartIndex ); in Get()
219 sal_uIntPtr nPos = Container::GetCurPos(); in GetCurIndex()
222 if ( !Container::ImpGetObject( nPos ) ) in GetCurIndex()
244 sal_uIntPtr nIndex = Container::GetPos( p ); in GetIndex()
266 (nIndex < (Container::GetSize()+nStartIndex)) ) in IsIndexValid()
269 if ( Container::ImpGetObject( nIndex-nStartIndex ) ) in IsIndexValid()
292 return Container::Seek( nIndex-nStartIndex ); in Seek()
317 return Container::Seek( nIndex-nStartIndex ); in Seek()
334 void* p = Container::First(); in First()
336 while ( !p && (Container::GetCurPos() < (Container::GetSize()-1)) ) in First()
337 p = Container::Next(); in First()
354 void* p = Container::Last(); in Last()
356 while ( !p && Container::GetCurPos() ) in Last()
357 p = Container::Prev(); in Last()
376 while ( !p && (Container::GetCurPos() < (Container::GetSize()-1)) ) in Next()
377 p = Container::Next(); in Next()
396 while ( !p && Container::GetCurPos() ) in Prev()
397 p = Container::Prev(); in Prev()
415 Container::operator =( rIdx ); in operator =()
438 (Container::operator ==( rIdx )) ) in operator ==()