Home
last modified time | relevance | path

Searched refs:js_obj (Results 1 – 7 of 7) sorted by relevance

/external/v8/src/profiler/
Dheap-snapshot-generator.cc1073 int entry, JSObject* js_obj) { in ExtractJSObjectReferences() argument
1074 HeapObject* obj = js_obj; in ExtractJSObjectReferences()
1075 ExtractPropertyReferences(js_obj, entry); in ExtractJSObjectReferences()
1076 ExtractElementReferences(js_obj, entry); in ExtractJSObjectReferences()
1077 ExtractInternalReferences(js_obj, entry); in ExtractJSObjectReferences()
1078 PrototypeIterator iter(heap_->isolate(), js_obj); in ExtractJSObjectReferences()
1085 SetInternalReference(js_obj, entry, "bound_this", js_fun->bound_this(), in ExtractJSObjectReferences()
1087 SetInternalReference(js_obj, entry, "bound_function", in ExtractJSObjectReferences()
1093 SetNativeBindReference(js_obj, entry, reference_name, bindings->get(i)); in ExtractJSObjectReferences()
1096 JSFunction* js_fun = JSFunction::cast(js_obj); in ExtractJSObjectReferences()
[all …]
Dheap-snapshot-generator.h374 void ExtractJSObjectReferences(int entry, JSObject* js_obj);
394 void ExtractPropertyReferences(JSObject* js_obj, int entry);
395 void ExtractAccessorPairProperty(JSObject* js_obj, int entry, Name* key,
397 void ExtractElementReferences(JSObject* js_obj, int entry);
398 void ExtractInternalReferences(JSObject* js_obj, int entry);
/external/v8/src/runtime/
Druntime-object.cc159 Handle<JSObject> js_obj = Handle<JSObject>::cast(object); in RUNTIME_FUNCTION() local
168 key_is_array_index ? LookupIterator(isolate, js_obj, index, js_obj, c) in RUNTIME_FUNCTION()
169 : LookupIterator(js_obj, key, js_obj, c); in RUNTIME_FUNCTION()
176 Map* map = js_obj->map(); in RUNTIME_FUNCTION()
186 ? LookupIterator(isolate, js_obj, index, js_obj, c) in RUNTIME_FUNCTION()
187 : LookupIterator(js_obj, key, js_obj, c); in RUNTIME_FUNCTION()
/external/v8/src/
Djson-stringifier.cc521 Handle<JSObject> js_obj = Handle<JSObject>::cast(object); in SerializeJSObject() local
522 DCHECK(!js_obj->HasIndexedInterceptor()); in SerializeJSObject()
523 DCHECK(!js_obj->HasNamedInterceptor()); in SerializeJSObject()
524 Handle<Map> map(js_obj->map()); in SerializeJSObject()
536 if (details.location() == kField && *map == js_obj->map()) { in SerializeJSObject()
539 property = JSObject::FastPropertyAt(js_obj, details.representation(), in SerializeJSObject()
543 isolate_, property, Object::GetPropertyOrElement(js_obj, key), in SerializeJSObject()
Dapi.cc3461 i::Handle<i::JSObject> js_obj = i::Handle<i::JSObject>::cast(obj); in IsWebAssemblyCompiledModule() local
3462 return js_obj->GetIsolate()->native_context()->wasm_module_constructor() == in IsWebAssemblyCompiledModule()
3463 js_obj->map()->GetConstructor(); in IsWebAssemblyCompiledModule()
8961 i::Handle<i::JSObject> js_obj = i::Handle<i::JSObject>::cast(obj); in GetStackTrace() local
8962 i::Isolate* isolate = js_obj->GetIsolate(); in GetStackTrace()
8964 return Utils::StackTraceToLocal(isolate->GetDetailedStackTrace(js_obj)); in GetStackTrace()
/external/pdfium/xfa/fxfa/parser/
Dcxfa_list.h27 CXFA_List(CXFA_Document* doc, std::unique_ptr<CJX_Object> js_obj);
/external/v8/src/heap/
Dheap.cc3564 JSObject* js_obj = nullptr; in AllocateJSObjectFromMap() local
3566 if (!allocation.To(&js_obj)) return allocation; in AllocateJSObjectFromMap()
3569 InitializeJSObjectFromMap(js_obj, properties, map); in AllocateJSObjectFromMap()
3570 DCHECK(js_obj->HasFastElements() || js_obj->HasFixedTypedArrayElements() || in AllocateJSObjectFromMap()
3571 js_obj->HasFastStringWrapperElements() || in AllocateJSObjectFromMap()
3572 js_obj->HasFastArgumentsElements()); in AllocateJSObjectFromMap()
3573 return js_obj; in AllocateJSObjectFromMap()