Searched defs:ScopedHashTableVal (Results 1 - 1 of 1) sorted by relevance

/external/llvm/include/llvm/ADT/
H A DScopedHashTable.h44 class ScopedHashTableVal { class in namespace:llvm
45 ScopedHashTableVal *NextInScope;
46 ScopedHashTableVal *NextForKey;
49 ScopedHashTableVal(const K &key, const V &val) : Key(key), Val(val) {} function in class:llvm::ScopedHashTableVal
56 ScopedHashTableVal *getNextForKey() { return NextForKey; }
57 const ScopedHashTableVal *getNextForKey() const { return NextForKey; }
58 ScopedHashTableVal *getNextInScope() { return NextInScope; }
61 static ScopedHashTableVal *Create(ScopedHashTableVal *nextInScope,
62 ScopedHashTableVal *nextForKe
[all...]

Completed in 88 milliseconds