Home
last modified time | relevance | path

Searched refs:lookup_key (Results 1 - 18 of 18) sorted by relevance

/third_party/node/deps/v8/src/objects/
H A Djs-array-buffer.cc19 // 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 Dvalue-serializer.cc1124 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 Dmodule.cc427 PropertyKey lookup_key(isolate, key); in DefineOwnProperty()
428 LookupIterator it(isolate, object, lookup_key, LookupIterator::OWN); in DefineOwnProperty()
H A Djs-objects.cc1166 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 Druntime-proxy.cc56 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 Druntime-forin.cc55 PropertyKey lookup_key(isolate, key, &success); in HasEnumerableProperty()
57 LookupIterator it(isolate, receiver, lookup_key); in HasEnumerableProperty()
H A Druntime-object.cc45 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 Druntime-classes.cc742 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 Dhashmap-test.c39 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 Dbuiltins-reflect.cc116 PropertyKey lookup_key(isolate, name); in BUILTIN()
117 LookupIterator it(isolate, receiver, lookup_key, in BUILTIN()
H A Dbuiltins-object.cc113 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 DRBSearchPanel.java114 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 Dhashmap.h83 // 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 Dast-value-factory.h218 const AstRawString* lookup_key, in operator ()()
220 return hash1 == hash2 && AstRawString::Equal(lookup_key, entry_key); in operator ()()
/third_party/openssl/test/
H A Dendecoder_legacy_test.c275 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 Dgrokdump.py2092 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 Dapi.cc4307 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 Dic.cc2902 PropertyKey lookup_key(isolate, key); in RUNTIME_FUNCTION()
2903 LookupIterator it(isolate, object, lookup_key, LookupIterator::OWN); in RUNTIME_FUNCTION()

Completed in 53 milliseconds