HomeSort by relevance Sort by last modified time
    Searched defs:ScopedHashTableVal (Results 1 - 2 of 2) sorted by null

  /external/llvm/include/llvm/ADT/
ScopedHashTable.h 44 class ScopedHashTableVal {
45 ScopedHashTableVal *NextInScope;
46 ScopedHashTableVal *NextForKey;
49 ScopedHashTableVal(const K &key, const V &val) : Key(key), Val(val) {}
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 *nextForKey
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
ScopedHashTable.h 44 class ScopedHashTableVal {
45 ScopedHashTableVal *NextInScope;
46 ScopedHashTableVal *NextForKey;
49 ScopedHashTableVal(const K &key, const V &val) : Key(key), Val(val) {}
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 *nextForKey
    [all...]

Completed in 71 milliseconds