Searched refs:HasOwnProperty (Results 1 - 13 of 13) sorted by relevance
/external/v8/src/ |
H A D | i18n.cc | 397 Maybe<bool> maybe = JSReceiver::HasOwnProperty(resolved, key); 407 maybe = JSReceiver::HasOwnProperty(resolved, key); 721 Maybe<bool> maybe = JSReceiver::HasOwnProperty(obj, key); 797 Maybe<bool> maybe = JSReceiver::HasOwnProperty(obj, key); 854 Maybe<bool> maybe = JSReceiver::HasOwnProperty(obj, key); 915 Maybe<bool> maybe = JSReceiver::HasOwnProperty(obj, key);
|
H A D | v8natives.js | 248 return %HasOwnProperty(TO_OBJECT_INLINE(this), ToName(V)); 1029 if (%HasOwnProperty(names, s)) { 1161 if (!(%HasOwnProperty(standardNames, N))) { 1181 if (%HasOwnProperty(object, key)) {
|
H A D | macros.py | 177 macro HAS_PRIVATE(obj, sym) = (%HasOwnProperty(obj, sym));
|
H A D | messages.js | 1239 while (current && !%HasOwnProperty(current, name)) {
|
H A D | runtime.h | 29 F(HasOwnProperty, 2, 1) \
|
H A D | api.cc | 3465 // TODO(rossberg): this should use HasOwnProperty, but we'd need to 3582 bool v8::Object::HasOwnProperty(Handle<String> key) { function in class:v8::v8::Object 3584 ON_BAILOUT(isolate, "v8::Object::HasOwnProperty()", 3587 Maybe<bool> maybe = i::JSReceiver::HasOwnProperty(Utils::OpenHandle(this),
|
H A D | objects-inl.h | 6658 Maybe<bool> JSReceiver::HasOwnProperty(Handle<JSReceiver> object, function in class:v8::internal::Code::FindAndReplacePattern::JSReceiver
|
H A D | objects.h | 1582 MUST_USE_RESULT static inline Maybe<bool> HasOwnProperty(Handle<JSReceiver>,
|
H A D | runtime.cc | 5648 Maybe<bool> maybe = JSReceiver::HasOwnProperty(object, key); 12959 Maybe<bool> maybe = JSReceiver::HasOwnProperty(
|
/external/v8/test/cctest/ |
H A D | test-heap.cc | 194 v8::Maybe<bool> maybe = JSReceiver::HasOwnProperty(global, object_string); 263 v8::Maybe<bool> maybe = JSReceiver::HasOwnProperty(global, name); 283 maybe = JSReceiver::HasOwnProperty(global, obj_name); 642 v8::Maybe<bool> maybe = JSReceiver::HasOwnProperty(obj, first); 648 maybe = JSReceiver::HasOwnProperty(obj, first); 654 maybe = JSReceiver::HasOwnProperty(obj, first); 661 maybe = JSReceiver::HasOwnProperty(obj, first); 664 maybe = JSReceiver::HasOwnProperty(obj, second); 670 maybe = JSReceiver::HasOwnProperty(obj, second); 674 maybe = JSReceiver::HasOwnProperty(ob [all...] |
H A D | test-mark-compact.cc | 170 v8::Maybe<bool> maybe = JSReceiver::HasOwnProperty(global, func_name); 190 v8::Maybe<bool> maybe = JSReceiver::HasOwnProperty(global, obj_name);
|
H A D | test-api.cc | 20195 TEST(HasOwnProperty) { 20214 CHECK(!object->HasOwnProperty(v8_str("foo"))); 20215 CHECK(object->HasOwnProperty(v8_str("bar"))); 20217 CHECK(!object->HasOwnProperty(v8_str("baz"))); 20218 CHECK(object->HasOwnProperty(v8_str("bla"))); 20224 CHECK(!instance->HasOwnProperty(v8_str("42"))); 20225 CHECK(instance->HasOwnProperty(v8_str("foo"))); 20226 CHECK(!instance->HasOwnProperty(v8_str("bar"))); 20232 CHECK(instance->HasOwnProperty(v8_str("42"))); 20233 CHECK(!instance->HasOwnProperty(v8_st [all...] |
/external/v8/include/ |
H A D | v8.h | 2436 bool HasOwnProperty(Handle<String> key);
|
Completed in 2253 milliseconds