Lines Matching refs:nKey
41 TOOLS_DLLPRIVATE sal_uIntPtr ImplGetIndex( sal_uIntPtr nKey, sal_uIntPtr* pIndex = NULL ) const;
48 sal_Bool Insert( sal_uIntPtr nKey, void* p );
49 void* Remove( sal_uIntPtr nKey );
50 void* Replace( sal_uIntPtr nKey, void* p );
51 void* Get( sal_uIntPtr nKey ) const;
59 sal_Bool IsKeyValid( sal_uIntPtr nKey ) const;
66 sal_uIntPtr SearchKey( sal_uIntPtr nKey, sal_uIntPtr* pPos = NULL ) const;
68 void* Seek( sal_uIntPtr nKey );
112 sal_Bool Insert( sal_uIntPtr nKey, Type p ) \
113 { return Table::Insert( nKey, (void*)p ); } \
114 Type Remove( sal_uIntPtr nKey ) \
115 { return (Type)Table::Remove( nKey ); } \
116 Type Replace( sal_uIntPtr nKey, Type p ) \
117 { return (Type)Table::Replace( nKey, (void*)p ); } \
118 Type Get( sal_uIntPtr nKey ) const \
119 { return (Type)Table::Get( nKey ); } \
129 Type Seek( sal_uIntPtr nKey ) \
130 { return (Type)Table::Seek( nKey ); } \