Searched refs:js_obj (Results 1 - 6 of 6) sorted by relevance
/external/v8/src/profiler/ |
H A D | heap-snapshot-generator.cc | 1100 int entry, JSObject* js_obj) { 1101 HeapObject* obj = js_obj; 1102 ExtractPropertyReferences(js_obj, entry); 1103 ExtractElementReferences(js_obj, entry); 1104 ExtractInternalReferences(js_obj, entry); 1105 PrototypeIterator iter(heap_->isolate(), js_obj); 1116 SetNativeBindReference(js_obj, entry, "bound_this", js_fun->bound_this()); 1117 SetNativeBindReference(js_obj, entry, "bound_function", 1122 SetNativeBindReference(js_obj, entry, reference_name, bindings->get(i)); 1125 JSFunction* js_fun = JSFunction::cast(js_obj); 1099 ExtractJSObjectReferences( int entry, JSObject* js_obj) argument 1590 ExtractPropertyReferences(JSObject* js_obj, int entry) argument 1665 ExtractAccessorPairProperty(JSObject* js_obj, int entry, Name* key, Object* callback_obj, int field_offset) argument 1683 ExtractElementReferences(JSObject* js_obj, int entry) argument 1709 ExtractInternalReferences(JSObject* js_obj, int entry) argument [all...] |
H A D | heap-snapshot-generator.h | 372 void ExtractJSObjectReferences(int entry, JSObject* js_obj); 393 void ExtractPropertyReferences(JSObject* js_obj, int entry); 394 void ExtractAccessorPairProperty(JSObject* js_obj, int entry, Name* key, 396 void ExtractElementReferences(JSObject* js_obj, int entry); 397 void ExtractInternalReferences(JSObject* js_obj, int entry);
|
/external/v8/src/runtime/ |
H A D | runtime-object.cc | 634 Handle<JSObject> js_obj = Handle<JSObject>::cast(object); local 642 LookupIterator it(js_obj->GetIsolate(), js_obj, index, 646 maybe = JSObject::HasRealNamedProperty(js_obj, key); 653 Map* map = js_obj->map(); 659 return HasOwnPropertyImplementation(isolate, Handle<JSObject>(js_obj),
|
/external/v8/src/heap/ |
H A D | heap.cc | 3510 JSObject* js_obj = nullptr; local 3512 if (!allocation.To(&js_obj)) return allocation; 3515 InitializeJSObjectFromMap(js_obj, properties, map); 3516 DCHECK(js_obj->HasFastElements() || js_obj->HasFixedTypedArrayElements()); 3517 return js_obj;
|
/external/v8/test/cctest/ |
H A D | test-heap-profiler.cc | 1783 v8::Local<v8::Object> js_obj = js_global->Get(env.local(), v8_str("a")) local 1786 CHECK(js_obj == heap_profiler->FindObjectById(obj->GetId())); 1789 v8::Local<v8::String> js_s_prop = js_obj->Get(env.local(), v8_str("s_prop")) 1795 v8::Local<v8::String> js_n_prop = js_obj->Get(env.local(), v8_str("n_prop"))
|
/external/v8/src/ |
H A D | api.cc | 2839 i::Handle<i::JSObject> js_obj = i::Handle<i::JSObject>::cast(obj); 2840 i::Isolate* isolate = js_obj->GetIsolate(); 2841 i::Handle<i::Object> constructor(js_obj->map()->GetConstructor(), isolate); 7737 i::Handle<i::JSObject> js_obj = i::Handle<i::JSObject>::cast(obj); 7738 i::Isolate* isolate = js_obj->GetIsolate(); 7740 return Utils::StackTraceToLocal(isolate->GetDetailedStackTrace(js_obj));
|
Completed in 250 milliseconds