Home
last modified time | relevance | path

Searched refs:LookupKey (Results 1 – 25 of 29) sorted by relevance

12

/external/turbine/java/com/google/turbine/binder/lookup/
DLookupKey.java29 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()
DWildImportIndex.java80 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) {
DImportScope.java39 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) {
DImportIndex.java100 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) {
DSimpleTopLevelIndex.java135 public LookupResult lookup(LookupKey lookupKey) {
180 public LookupResult lookup(LookupKey lookupKey) { in lookup()
DMemberImportIndex.java58 LookupResult result = tli.scope().lookup(new LookupKey(i.type())); in MemberImportIndex()
76 LookupResult result = tli.scope().lookup(new LookupKey(i.type())); in MemberImportIndex()
DScope.java28 LookupResult lookup(LookupKey lookupKey); in lookup()
DCompoundScope.java35 public LookupResult lookup(LookupKey key) { in lookup()
DLookupResult.java49 public LookupResult(Symbol sym, LookupKey remaining) { in LookupResult()
DCompoundTopLevelIndex.java47 public LookupResult lookup(LookupKey lookupKey) {
/external/turbine/javatests/com/google/turbine/binder/
DJimageClassBinderTest.java25 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()
DClassPathBinderTest.java35 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/
Dstring-table.cc402 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 …]
Dstring-table.h72 Handle<String> LookupKey(LocalIsolate* isolate, StringTableKey* key);
/external/llvm/include/llvm/ADT/
DDenseSet.h161 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/
DTopLevelIndexTest.java108 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/
Dhashmap.h88 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/
DDenseSet.h201 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/
DHierarchyBinder.java26 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()
DJimageClassBinder.java34 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) {
DModuleBinder.java37 import com.google.turbine.binder.lookup.LookupKey;
207 LookupKey key = new LookupKey(simpleNames); in resolve()
DTypeBinder.java31 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/
DConstantsContext.h545 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/
DConstantsContext.h571 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/
Dstartup-deserializer.cc90 isolate()->string_table()->LookupKey(isolate(), &key); in DeserializeStringTable()

12