/external/v8/src/js/ |
D | i18n.js | 538 if (%HasOwnProperty(keyValues, key)) { 554 if (%HasOwnProperty(extensionMap, key)) { 630 if (%HasOwnProperty(available, i)) { 946 if (%HasOwnProperty(extensionMap, 'co') && internalOptions.usage === 'sort') { 1228 if (%HasOwnProperty(internalOptions, 'minimumSignificantDigits')) { 1231 if (%HasOwnProperty(internalOptions, 'maximumSignificantDigits')) { 1304 if (%HasOwnProperty(format[resolvedSymbol], 'minimumSignificantDigits')) { 1309 if (%HasOwnProperty(format[resolvedSymbol], 'maximumSignificantDigits')) { 1498 if (!%HasOwnProperty(options, option)) {
|
D | macros.py | 132 macro HAS_PRIVATE(obj, sym) = (%HasOwnProperty(obj, sym));
|
D | v8natives.js | 143 return %HasOwnProperty(object, name);
|
/external/v8/src/ |
D | i18n.cc | 428 Maybe<bool> maybe = JSReceiver::HasOwnProperty(resolved, key); in SetResolvedNumberSettings() 438 maybe = JSReceiver::HasOwnProperty(resolved, key); in SetResolvedNumberSettings() 758 Maybe<bool> maybe = JSReceiver::HasOwnProperty(obj, key); in UnpackDateFormat() 838 Maybe<bool> maybe = JSReceiver::HasOwnProperty(obj, key); in UnpackNumberFormat() 899 Maybe<bool> maybe = JSReceiver::HasOwnProperty(obj, key); in UnpackCollator() 964 Maybe<bool> maybe = JSReceiver::HasOwnProperty(obj, key); in UnpackBreakIterator()
|
D | api.cc | 3874 return HasOwnProperty(context, Local<Name>(reinterpret_cast<Name*>(*key))); in HasPrivate() 3987 Maybe<bool> v8::Object::HasOwnProperty(Local<Context> context, in HasOwnProperty() function in v8::v8::Object 3993 auto result = i::JSReceiver::HasOwnProperty(self, key_val); in HasOwnProperty() 4000 bool v8::Object::HasOwnProperty(Local<String> key) { in HasOwnProperty() function in v8::v8::Object 4002 return HasOwnProperty(context, key).FromMaybe(false); in HasOwnProperty()
|
D | builtins.cc | 3189 JSReceiver::HasOwnProperty(target, isolate->factory()->length_string()); in BUILTIN()
|
D | objects-inl.h | 7101 Maybe<bool> JSReceiver::HasOwnProperty(Handle<JSReceiver> object, in HasOwnProperty() function
|
D | objects.h | 1836 MUST_USE_RESULT static inline Maybe<bool> HasOwnProperty(
|
D | objects.cc | 1291 JSReceiver::HasOwnProperty(Handle<JSReceiver>::cast(object), symbol); in IsErrorObject()
|
/external/v8/test/cctest/heap/ |
D | test-mark-compact.cc | 174 CHECK(Just(true) == JSReceiver::HasOwnProperty(global, func_name)); in HEAP_TEST() 192 CHECK(Just(true) == JSReceiver::HasOwnProperty(global, obj_name)); in HEAP_TEST()
|
D | test-heap.cc | 205 CHECK(Just(true) == JSReceiver::HasOwnProperty(global, object_string)); in TEST() 472 CHECK(Just(true) == JSReceiver::HasOwnProperty(global, name)); in TEST() 490 CHECK(Just(true) == JSReceiver::HasOwnProperty(global, obj_name)); in TEST() 906 CHECK(Just(false) == JSReceiver::HasOwnProperty(obj, first)); in TEST() 910 CHECK(Just(true) == JSReceiver::HasOwnProperty(obj, first)); in TEST() 914 CHECK(Just(false) == JSReceiver::HasOwnProperty(obj, first)); in TEST() 919 CHECK(Just(true) == JSReceiver::HasOwnProperty(obj, first)); in TEST() 920 CHECK(Just(true) == JSReceiver::HasOwnProperty(obj, second)); in TEST() 924 CHECK(Just(true) == JSReceiver::HasOwnProperty(obj, second)); in TEST() 926 CHECK(Just(false) == JSReceiver::HasOwnProperty(obj, first)); in TEST() [all …]
|
/external/v8/src/debug/ |
D | debug-scopes.cc | 698 Maybe<bool> maybe = JSReceiver::HasOwnProperty(ext, variable_name); in SetBlockVariableValue() 731 Maybe<bool> maybe = JSReceiver::HasOwnProperty(ext, variable_name); in SetClosureVariableValue()
|
D | debug-evaluate.cc | 299 Maybe<bool> maybe = JSReceiver::HasOwnProperty( in MaterializeArgumentsObject()
|
/external/v8/src/runtime/ |
D | runtime-object.cc | 600 Maybe<bool> maybe = JSReceiver::HasOwnProperty(object, key); in HasOwnPropertyImplementation() 669 JSReceiver::HasOwnProperty(Handle<JSProxy>::cast(object), key); in RUNTIME_FUNCTION()
|
D | runtime.h | 434 F(HasOwnProperty, 2, 1) \
|
/external/pdfium/xfa/src/fxjse/src/ |
D | value.cpp | 432 (bUseTypeGetter && hObject.As<v8::Object>()->HasOwnProperty(hKey)); in HasObjectOwnProperty()
|
/external/v8/test/cctest/ |
D | test-api.cc | 19835 TEST(HasOwnProperty) { in TEST() argument 19854 CHECK(!object->HasOwnProperty(env.local(), v8_str("foo")).FromJust()); in TEST() 19855 CHECK(object->HasOwnProperty(env.local(), v8_str("bar")).FromJust()); in TEST() 19857 CHECK(!object->HasOwnProperty(env.local(), v8_str("baz")).FromJust()); in TEST() 19858 CHECK(object->HasOwnProperty(env.local(), v8_str("bla")).FromJust()); in TEST() 19865 CHECK(!instance->HasOwnProperty(env.local(), v8_str("42")).FromJust()); in TEST() 19866 CHECK(instance->HasOwnProperty(env.local(), v8_str("foo")).FromJust()); in TEST() 19867 CHECK(!instance->HasOwnProperty(env.local(), v8_str("bar")).FromJust()); in TEST() 19874 CHECK(instance->HasOwnProperty(env.local(), v8_str("42")).FromJust()); in TEST() 19875 CHECK(!instance->HasOwnProperty(env.local(), v8_str("43")).FromJust()); in TEST() [all …]
|
/external/v8/include/ |
D | v8.h | 2857 V8_DEPRECATED("Use maybe version", bool HasOwnProperty(Local<String> key)); 2858 V8_WARN_UNUSED_RESULT Maybe<bool> HasOwnProperty(Local<Context> context,
|
/external/v8/ |
D | ChangeLog | 11670 Added Object::HasOwnProperty() to the API.
|