/third_party/node/deps/v8/src/objects/ |
H A D | js-array-buffer.cc | 19 // Returns true if the lookup_key represents a valid index string. 21 const PropertyKey& lookup_key, in CanonicalNumericIndexString() 24 DCHECK(lookup_key.is_element() || lookup_key.name()->IsString()); in CanonicalNumericIndexString() 26 if (lookup_key.is_element()) return true; in CanonicalNumericIndexString() 28 Handle<String> key = Handle<String>::cast(lookup_key.name()); in CanonicalNumericIndexString() 271 PropertyKey lookup_key(isolate, key); in DefineOwnProperty() 272 if (lookup_key.is_element() || key->IsSmi() || key->IsString()) { in DefineOwnProperty() 277 CanonicalNumericIndexString(isolate, lookup_key, &is_minus_zero)) { in DefineOwnProperty() 281 size_t index = lookup_key in DefineOwnProperty() 20 CanonicalNumericIndexString(Isolate* isolate, const PropertyKey& lookup_key, bool* is_minus_zero) CanonicalNumericIndexString() argument [all...] |
H A D | value-serializer.cc | 1124 PropertyKey lookup_key(isolate_, key); in WriteJSObjectPropertiesSlow() 1125 LookupIterator it(isolate_, object, lookup_key, LookupIterator::OWN); in WriteJSObjectPropertiesSlow() 2369 PropertyKey lookup_key(isolate_, key); in ReadJSObjectProperties() 2370 LookupIterator it(isolate_, object, lookup_key, LookupIterator::OWN); in ReadJSObjectProperties() 2403 PropertyKey lookup_key(isolate_, key); in ReadJSObjectProperties() 2404 LookupIterator it(isolate_, object, lookup_key, LookupIterator::OWN); in ReadJSObjectProperties() 2449 PropertyKey lookup_key(isolate, key); in SetPropertiesFromKeyValuePairs() 2450 LookupIterator it(isolate, object, lookup_key, LookupIterator::OWN); in SetPropertiesFromKeyValuePairs()
|
H A D | module.cc | 427 PropertyKey lookup_key(isolate, key); in DefineOwnProperty() 428 LookupIterator it(isolate, object, lookup_key, LookupIterator::OWN); in DefineOwnProperty()
|
H A D | js-objects.cc | 1166 PropertyKey lookup_key(isolate, key); in OrdinaryDefineOwnProperty() 1167 return OrdinaryDefineOwnProperty(isolate, object, lookup_key, desc, in OrdinaryDefineOwnProperty() 1680 PropertyKey lookup_key(isolate, key); in CreateDataProperty() 1681 LookupIterator it(isolate, object, lookup_key, LookupIterator::OWN); in CreateDataProperty() 1756 PropertyKey lookup_key(isolate, key); in GetOwnPropertyDescriptor() 1757 LookupIterator it(isolate, object, lookup_key, LookupIterator::OWN); in GetOwnPropertyDescriptor()
|
/third_party/node/deps/v8/src/runtime/ |
H A D | runtime-proxy.cc | 56 PropertyKey lookup_key(isolate, key, &success); in RUNTIME_FUNCTION() 61 LookupIterator it(isolate, receiver, lookup_key, holder); in RUNTIME_FUNCTION() 76 PropertyKey lookup_key(isolate, key, &success); in RUNTIME_FUNCTION() 81 LookupIterator it(isolate, receiver, lookup_key, holder); in RUNTIME_FUNCTION()
|
H A D | runtime-forin.cc | 55 PropertyKey lookup_key(isolate, key, &success); in HasEnumerableProperty() 57 LookupIterator it(isolate, receiver, lookup_key); in HasEnumerableProperty()
|
H A D | runtime-object.cc | 45 PropertyKey lookup_key(isolate, key, &success); in GetObjectProperty() 48 LookupIterator(isolate, receiver, lookup_key, lookup_start_object); in GetObjectProperty() 277 PropertyKey lookup_key(isolate, key, &success); in DeleteObjectProperty() 279 LookupIterator it(isolate, receiver, lookup_key, LookupIterator::OWN); in DeleteObjectProperty() 575 PropertyKey lookup_key(isolate, key, &success); in SetObjectProperty() 577 LookupIterator it(isolate, object, lookup_key); in SetObjectProperty() 603 PropertyKey lookup_key(isolate, key, &success); in DefineObjectOwnProperty() 605 LookupIterator it(isolate, object, lookup_key, LookupIterator::OWN); in DefineObjectOwnProperty() 933 PropertyKey lookup_key(isolate, key); in RUNTIME_FUNCTION() 934 LookupIterator it(isolate, object, lookup_key, LookupIterato in RUNTIME_FUNCTION() [all...] |
H A D | runtime-classes.cc | 742 PropertyKey lookup_key(isolate, key, &success); in RUNTIME_FUNCTION() 746 isolate, LoadFromSuper(isolate, receiver, home_object, &lookup_key)); in RUNTIME_FUNCTION() 793 PropertyKey lookup_key(isolate, key, &success); in RUNTIME_FUNCTION() 797 isolate, StoreToSuper(isolate, home_object, receiver, &lookup_key, value, in RUNTIME_FUNCTION()
|
/third_party/pulseaudio/src/tests/ |
H A D | hashmap-test.c | 39 int lookup_key; in START_TEST() local 47 lookup_key = 0; in START_TEST() 59 if ((get_ret = pa_hashmap_get(map, &lookup_key)) != &entry) { in START_TEST() 71 if ((get_ret = pa_hashmap_remove(map, &lookup_key)) != &entry) { in START_TEST()
|
/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-reflect.cc | 116 PropertyKey lookup_key(isolate, name); in BUILTIN() 117 LookupIterator it(isolate, receiver, lookup_key, in BUILTIN()
|
H A D | builtins-object.cc | 113 PropertyKey lookup_key(isolate, key); in ObjectLookupAccessor() 114 LookupIterator it(isolate, object, lookup_key, in ObjectLookupAccessor()
|
/third_party/icu/tools/unicodetools/com/ibm/rbm/gui/ |
H A D | RBSearchPanel.java | 114 String lookup_key = (String)enum2.nextElement(); in performSearch() 115 String lookup_value = (String)lookups.get(lookup_key); in performSearch() 140 String lookup_key = (String)enum2.nextElement(); in performSearch() 141 String lookup_value = (String)lookups.get(lookup_key); in performSearch()
|
/third_party/node/deps/v8/src/base/ |
H A D | hashmap.h | 83 // operator()(const LookupKey& lookup_key, const Key& entry_key) 90 Entry* LookupOrInsert(const LookupKey& lookup_key, uint32_t hash, 243 const LookupKey& lookup_key, uint32_t hash, const KeyFunc& key_func, in LookupOrInsert() 246 Entry* entry = Probe(lookup_key, hash); in LookupOrInsert() 242 LookupOrInsert( const LookupKey& lookup_key, uint32_t hash, const KeyFunc& key_func, const ValueFunc& value_func) LookupOrInsert() argument
|
/third_party/node/deps/v8/src/ast/ |
H A D | ast-value-factory.h | 218 const AstRawString* lookup_key, in operator ()() 220 return hash1 == hash2 && AstRawString::Equal(lookup_key, entry_key); in operator ()()
|
/third_party/openssl/test/ |
H A D | endecoder_legacy_test.c | 275 static struct key_st *lookup_key(const char *type) in lookup_key() function 515 || !TEST_ptr(key = lookup_key(test_stanza->keytype))) in test_key()
|
/third_party/node/deps/v8/tools/ |
H A D | grokdump.py | 2092 lookup_key = (self.ContainingKnownOldSpaceName(tagged_address), offset) 2093 known_obj_name = KNOWN_OBJECTS.get(lookup_key) 2116 lookup_key = ("MAP_SPACE", offset) 2117 known_map_info = KNOWN_MAPS.get(lookup_key)
|
/third_party/node/deps/v8/src/api/ |
H A D | api.cc | 4307 i::PropertyKey lookup_key(isolate, key_obj); in CreateDataProperty() 4308 i::LookupIterator it(isolate, self, lookup_key, i::LookupIterator::OWN); in CreateDataProperty() 4988 i::PropertyKey lookup_key(isolate, key_obj); in GetRealNamedPropertyInPrototypeChain() 4989 i::LookupIterator it(isolate, self, lookup_key, proto, in GetRealNamedPropertyInPrototypeChain() 5012 i::PropertyKey lookup_key(isolate, key_obj); in GetRealNamedPropertyAttributesInPrototypeChain() 5013 i::LookupIterator it(isolate, self, lookup_key, proto, in GetRealNamedPropertyAttributesInPrototypeChain() 5029 i::PropertyKey lookup_key(isolate, key_obj); in GetRealNamedProperty() 5030 i::LookupIterator it(isolate, self, lookup_key, self, in GetRealNamedProperty() 5046 i::PropertyKey lookup_key(isolate, key_obj); in GetRealNamedPropertyAttributes() 5047 i::LookupIterator it(isolate, self, lookup_key, sel in GetRealNamedPropertyAttributes() [all...] |
/third_party/node/deps/v8/src/ic/ |
H A D | ic.cc | 2902 PropertyKey lookup_key(isolate, key); in RUNTIME_FUNCTION() 2903 LookupIterator it(isolate, object, lookup_key, LookupIterator::OWN); in RUNTIME_FUNCTION()
|