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

/external/v8/src/profiler/
H A Dheap-snapshot-generator.cc1080 int entry, JSObject* js_obj) {
1081 HeapObject* obj = js_obj;
1082 ExtractPropertyReferences(js_obj, entry);
1083 ExtractElementReferences(js_obj, entry);
1084 ExtractInternalReferences(js_obj, entry);
1085 PrototypeIterator iter(heap_->isolate(), js_obj);
1092 SetNativeBindReference(js_obj, entry, "bound_this", js_fun->bound_this());
1093 SetNativeBindReference(js_obj, entry, "bound_function",
1098 SetNativeBindReference(js_obj, entry, reference_name, bindings->get(i));
1101 JSFunction* js_fun = JSFunction::cast(js_obj);
1079 ExtractJSObjectReferences( int entry, JSObject* js_obj) argument
1552 ExtractPropertyReferences(JSObject* js_obj, int entry) argument
1612 ExtractAccessorPairProperty(JSObject* js_obj, int entry, Name* key, Object* callback_obj, int field_offset) argument
1630 ExtractElementReferences(JSObject* js_obj, int entry) argument
1657 ExtractInternalReferences(JSObject* js_obj, int entry) argument
[all...]
H A Dheap-snapshot-generator.h372 void ExtractJSObjectReferences(int entry, JSObject* js_obj);
392 void ExtractPropertyReferences(JSObject* js_obj, int entry);
393 void ExtractAccessorPairProperty(JSObject* js_obj, int entry, Name* key,
395 void ExtractElementReferences(JSObject* js_obj, int entry);
396 void ExtractInternalReferences(JSObject* js_obj, int entry);
/external/v8/src/runtime/
H A Druntime-object.cc151 Handle<JSObject> js_obj = Handle<JSObject>::cast(object); local
160 key_is_array_index ? LookupIterator(isolate, js_obj, index, js_obj, c)
161 : LookupIterator(js_obj, key, js_obj, c);
168 Map* map = js_obj->map();
178 ? LookupIterator(isolate, js_obj, index, js_obj, c)
179 : LookupIterator(js_obj, key, js_obj,
[all...]
/external/v8/src/
H A Djson-stringifier.cc522 Handle<JSObject> js_obj = Handle<JSObject>::cast(object); local
523 DCHECK(!js_obj->HasIndexedInterceptor());
524 DCHECK(!js_obj->HasNamedInterceptor());
525 Handle<Map> map(js_obj->map());
537 if (details.type() == DATA && *map == js_obj->map()) {
539 property = JSObject::FastPropertyAt(js_obj, details.representation(),
543 isolate_, property, Object::GetPropertyOrElement(js_obj, key),
H A Dapi.cc8061 i::Handle<i::JSObject> js_obj = i::Handle<i::JSObject>::cast(obj);
8062 i::Isolate* isolate = js_obj->GetIsolate();
8064 return Utils::StackTraceToLocal(isolate->GetDetailedStackTrace(js_obj));
/external/v8/src/heap/
H A Dheap.cc3517 JSObject* js_obj = nullptr; local
3519 if (!allocation.To(&js_obj)) return allocation;
3522 InitializeJSObjectFromMap(js_obj, properties, map);
3523 DCHECK(js_obj->HasFastElements() || js_obj->HasFixedTypedArrayElements() ||
3524 js_obj->HasFastStringWrapperElements() ||
3525 js_obj->HasFastArgumentsElements());
3526 return js_obj;
/external/v8/test/cctest/
H A Dtest-heap-profiler.cc1786 v8::Local<v8::Object> js_obj = js_global->Get(env.local(), v8_str("a")) local
1789 CHECK(js_obj == heap_profiler->FindObjectById(obj->GetId()));
1792 v8::Local<v8::String> js_s_prop = js_obj->Get(env.local(), v8_str("s_prop"))
1798 v8::Local<v8::String> js_n_prop = js_obj->Get(env.local(), v8_str("n_prop"))

Completed in 315 milliseconds