OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:StringMapEntryBase
(Results
1 - 2
of
2
) sorted by null
/external/llvm/include/llvm/ADT/
StringMap.h
31
///
StringMapEntryBase
- Shared base class of StringMapEntry instances.
32
class
StringMapEntryBase
{
36
explicit
StringMapEntryBase
(unsigned Len) : StrLen(Len) {}
48
StringMapEntryBase
**TheTable;
86
void RemoveKey(
StringMapEntryBase
*V);
90
StringMapEntryBase
*RemoveKey(StringRef Key);
97
static
StringMapEntryBase
*getTombstoneVal() {
99
Val <<= PointerLikeTypeTraits<
StringMapEntryBase
*>::NumLowBitsAvailable;
100
return reinterpret_cast<
StringMapEntryBase
*>(Val);
121
class StringMapEntry : public
StringMapEntryBase
{
[
all
...]
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
StringMap.h
42
///
StringMapEntryBase
- Shared base class of StringMapEntry instances.
43
class
StringMapEntryBase
{
46
explicit
StringMapEntryBase
(unsigned Len) : StrLen(Len) {}
63
StringMapEntryBase
*Item;
97
void RemoveKey(
StringMapEntryBase
*V);
101
StringMapEntryBase
*RemoveKey(StringRef Key);
105
static
StringMapEntryBase
*getTombstoneVal() {
106
return (
StringMapEntryBase
*)-1;
120
class StringMapEntry : public
StringMapEntryBase
{
125
:
StringMapEntryBase
(strLen), second() {
[
all
...]
Completed in 90 milliseconds