/external/turbine/java/com/google/turbine/binder/lookup/ |
D | LookupKey.java | 29 public class LookupKey { class 32 public LookupKey(ImmutableList<Ident> simpleNames) { in LookupKey() method in LookupKey 58 public LookupKey rest() { in rest() 62 return new LookupKey(simpleNames.subList(1, simpleNames.size())); in rest()
|
D | WildImportIndex.java | 80 public LookupResult lookup(LookupKey lookupKey, ResolveFunction resolve) { in onDemandImport() 85 LookupResult result = cpi.scope().lookup(new LookupKey(i.type())); in onDemandImport() 95 public LookupResult lookup(LookupKey lookupKey, ResolveFunction unused) { in onDemandImport() 108 LookupResult result = cpi.scope().lookup(new LookupKey(i.type())); 114 public LookupResult lookup(LookupKey lookupKey, ResolveFunction resolve) { 128 LookupKey lookupKey) { 155 public LookupResult lookup(LookupKey lookup, ResolveFunction resolve) {
|
D | ImportScope.java | 39 LookupResult lookup(LookupKey lookupKey, ResolveFunction resolve); in lookup() 45 public LookupResult lookup(LookupKey lookupKey, ResolveFunction resolve) { in append() 63 public LookupResult lookup(LookupKey lookupKey, ResolveFunction resolve) { 74 public LookupResult lookup(LookupKey lookupKey) {
|
D | ImportIndex.java | 100 LookupResult result = cpi.scope().lookup(new LookupKey(i.type())); in namedImport() 116 public LookupResult lookup(LookupKey lookupKey, ResolveFunction unused) { in namedImport() 143 LookupResult base = cpi.scope().lookup(new LookupKey(i.type())); 150 public LookupResult lookup(LookupKey lookupKey, ResolveFunction resolve) { 166 public LookupResult lookup(LookupKey lookup, ResolveFunction resolve) {
|
D | SimpleTopLevelIndex.java | 135 public LookupResult lookup(LookupKey lookupKey) { 180 public LookupResult lookup(LookupKey lookupKey) { in lookup()
|
D | MemberImportIndex.java | 58 LookupResult result = tli.scope().lookup(new LookupKey(i.type())); in MemberImportIndex() 76 LookupResult result = tli.scope().lookup(new LookupKey(i.type())); in MemberImportIndex()
|
D | Scope.java | 28 LookupResult lookup(LookupKey lookupKey); in lookup()
|
D | CompoundScope.java | 35 public LookupResult lookup(LookupKey key) { in lookup()
|
D | LookupResult.java | 49 public LookupResult(Symbol sym, LookupKey remaining) { in LookupResult()
|
D | CompoundTopLevelIndex.java | 47 public LookupResult lookup(LookupKey lookupKey) {
|
/external/turbine/javatests/com/google/turbine/binder/ |
D | JimageClassBinderTest.java | 25 import com.google.turbine.binder.lookup.LookupKey; 55 .lookup(new LookupKey(ImmutableList.of(new Ident(-1, "Object")))); in testDefaultJimage() 63 .lookup(new LookupKey(ImmutableList.of(new Ident(-1, "Map"), new Ident(-1, "Entry")))); in testDefaultJimage() 72 new LookupKey( in testDefaultJimage()
|
D | ClassPathBinderTest.java | 35 import com.google.turbine.binder.lookup.LookupKey; 64 LookupResult result = javaLang.lookup(new LookupKey(ImmutableList.of(new Ident(-1, "String")))); in classPathLookup() 68 result = javaLang.lookup(new LookupKey(ImmutableList.of(new Ident(-1, "Object")))); in classPathLookup()
|
/external/v8/src/objects/ |
D | string-table.cc | 402 Handle<String> result = LookupKey(isolate, &key); in LookupString() 431 Handle<String> StringTable::LookupKey(LocalIsolate* isolate, in LookupKey() function in v8::internal::StringTable 522 template Handle<String> StringTable::LookupKey(Isolate* isolate, 524 template Handle<String> StringTable::LookupKey(Isolate* isolate, 526 template Handle<String> StringTable::LookupKey(Isolate* isolate, 528 template Handle<String> StringTable::LookupKey(Isolate* isolate, 531 template Handle<String> StringTable::LookupKey(LocalIsolate* isolate, 533 template Handle<String> StringTable::LookupKey(LocalIsolate* isolate, 535 template Handle<String> StringTable::LookupKey(LocalIsolate* isolate, 537 template Handle<String> StringTable::LookupKey(LocalIsolate* isolate, [all …]
|
D | string-table.h | 72 Handle<String> LookupKey(LocalIsolate* isolate, StringTableKey* key);
|
/external/llvm/include/llvm/ADT/ |
D | DenseSet.h | 161 const LookupKeyT &LookupKey) { in insert_as() argument 162 return insert_as(ValueT(V), LookupKey); in insert_as() 165 std::pair<iterator, bool> insert_as(ValueT &&V, const LookupKeyT &LookupKey) { in insert_as() argument 167 return TheMap.insert_as(std::make_pair(std::move(V), Empty), LookupKey); in insert_as()
|
/external/turbine/javatests/com/google/turbine/binder/lookup/ |
D | TopLevelIndexTest.java | 108 LookupKey key = lookupKey(ImmutableList.of("java", "util", "List")); in emptyLookup() 119 private LookupKey lookupKey(ImmutableList<String> names) { in lookupKey() 124 return new LookupKey(result.build()); in lookupKey()
|
/external/v8/src/base/ |
D | hashmap.h | 88 template <typename LookupKey, typename KeyFunc, typename ValueFunc> 89 Entry* LookupOrInsert(const LookupKey& lookup_key, uint32_t hash, 135 template <typename LookupKey> 136 Entry* Probe(const LookupKey& key, uint32_t hash) const; 239 template <typename LookupKey, typename KeyFunc, typename ValueFunc> 242 const LookupKey& lookup_key, uint32_t hash, const KeyFunc& key_func, in LookupOrInsert() 358 template <typename LookupKey> 361 const LookupKey& key, uint32_t hash) const { in Probe()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/ |
D | DenseSet.h | 201 const LookupKeyT &LookupKey) { in insert_as() argument 202 return TheMap.insert_as({V, detail::DenseSetEmpty()}, LookupKey); in insert_as() 205 std::pair<iterator, bool> insert_as(ValueT &&V, const LookupKeyT &LookupKey) { in insert_as() argument 206 return TheMap.insert_as({std::move(V), detail::DenseSetEmpty()}, LookupKey); in insert_as()
|
/external/turbine/java/com/google/turbine/binder/ |
D | HierarchyBinder.java | 26 import com.google.turbine.binder.lookup.LookupKey; 121 LookupResult result = lookup(ty, new LookupKey(ImmutableList.copyOf(flat))); in resolveClass() 156 private LookupResult lookup(Tree tree, LookupKey lookup) { in lookup()
|
D | JimageClassBinder.java | 34 import com.google.turbine.binder.lookup.LookupKey; 195 public LookupResult lookup(LookupKey lookupKey) { 214 ? scope.lookup(new LookupKey(names.subList(idx, names.size()))) 233 public LookupResult lookup(LookupKey lookupKey) {
|
D | ModuleBinder.java | 37 import com.google.turbine.binder.lookup.LookupKey; 207 LookupKey key = new LookupKey(simpleNames); in resolve()
|
D | TypeBinder.java | 31 import com.google.turbine.binder.lookup.LookupKey; 78 public LookupResult lookup(LookupKey lookup) { in lookup() 95 public LookupResult lookup(LookupKey lookupKey) { in lookup() 115 public LookupResult lookup(LookupKey lookup) { in lookup() 562 LookupResult lookupResult = scope.lookup(new LookupKey(name)); in bindAnnotations() 648 LookupResult result = scope.lookup(new LookupKey(names)); in bindClassTy()
|
/external/llvm/lib/IR/ |
D | ConstantsContext.h | 545 typedef std::pair<TypeClass *, ValType> LookupKey; 548 typedef std::pair<unsigned, LookupKey> LookupKeyHashed; 561 return getHashValue(LookupKey(CP->getType(), ValType(CP, Storage))); 566 static unsigned getHashValue(const LookupKey &Val) { 572 static bool isEqual(const LookupKey &LHS, const ConstantClass *RHS) { 611 LookupKey Key(Ty, V); 639 LookupKey Key(CP->getType(), ValType(Operands, CP));
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/ |
D | ConstantsContext.h | 571 using LookupKey = std::pair<TypeClass *, ValType>; 574 using LookupKeyHashed = std::pair<unsigned, LookupKey>; 590 return getHashValue(LookupKey(CP->getType(), ValType(CP, Storage))); 597 static unsigned getHashValue(const LookupKey &Val) { 605 static bool isEqual(const LookupKey &LHS, const ConstantClass *RHS) { 646 LookupKey Key(Ty, V); 674 LookupKey Key(CP->getType(), ValType(Operands, CP));
|
/external/v8/src/snapshot/ |
D | startup-deserializer.cc | 90 isolate()->string_table()->LookupKey(isolate(), &key); in DeserializeStringTable()
|