OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HashTableImpl
(Results
1 - 2
of
2
) sorted by null
/frameworks/compile/mclinker/include/mcld/ADT/
HashBase.h
45
/** \class
HashTableImpl
46
* \brief
HashTableImpl
is the base class of HashTable.
48
*
HashTableImpl
uses open-addressing, linear probing hash table.
56
* efficiently.
HashTableImpl
provides a template argument to change the
63
* than static linkers.
HashTableImpl
also provides a template argument to
68
class
HashTableImpl
79
typedef
HashTableImpl
<HashEntryTy, HashFunctionTy> Self;
83
HashTableImpl
();
84
explicit
HashTableImpl
(unsigned int pInitSize);
85
virtual ~
HashTableImpl
();
[
all
...]
HashTable.h
36
class HashTable : public
HashTableImpl
<HashEntryTy, HashFunctionTy>,
40
typedef
HashTableImpl
<HashEntryTy, HashFunctionTy> BaseTy;
Completed in 226 milliseconds