Lines Matching full:js_object
842 Handle<JSObject> js_object = Handle<JSObject>::cast(holder);
845 if (js_object->IsAccessCheckNeeded()) {
846 if (!isolate->MayIndexedAccess(js_object, index, v8::ACCESS_GET)) {
847 isolate->ReportFailedAccessCheck(js_object, v8::ACCESS_GET);
853 if (js_object->HasIndexedInterceptor()) {
854 return JSObject::GetElementWithInterceptor(js_object, receiver, index);
857 if (js_object->elements() != isolate->heap()->empty_fixed_array()) {
861 js_object->GetElementsAccessor()->Get(receiver, js_object, index),
6142 JSObject* js_object = JSObject::cast(this);
6145 if (js_object->HasNamedInterceptor() &&
6147 result->InterceptorResult(js_object);
6151 js_object->LookupOwnRealNamedProperty(name, result);
6154 Object* proto = js_object->GetPrototype();
6928 JSObject* js_object = JSObject::cast(*obj);
6929 SeededNumberDictionary* dictionary = js_object->element_dictionary();