Home
last modified time | relevance | path

Searched refs:FindObjectById (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/v8/include/
Dv8-profiler.h417 Handle<Value> FindObjectById(SnapshotObjectId id);
/external/chromium_org/v8/test/cctest/
Dtest-heap-profiler.cc1170 v8::Handle<v8::Value> obj = heap_profiler->FindObjectById(ids[i]); in TEST()
1178 v8::Handle<v8::Value> obj = heap_profiler->FindObjectById(ids[i]); in TEST()
1696 CHECK(heap_profiler->FindObjectById(global->GetId())->IsObject()); in TEST()
1699 CHECK(js_global == heap_profiler->FindObjectById(global->GetId())); in TEST()
1702 CHECK(heap_profiler->FindObjectById(obj->GetId())->IsObject()); in TEST()
1704 CHECK(js_obj == heap_profiler->FindObjectById(obj->GetId())); in TEST()
1709 CHECK(js_s_prop == heap_profiler->FindObjectById(s_prop->GetId())); in TEST()
1715 heap_profiler->FindObjectById(n_prop->GetId())->NumberValue()); in TEST()
1740 CHECK(heap_profiler->FindObjectById(prop->GetId())->IsObject()); in TEST()
1743 CHECK(heap_profiler->FindObjectById(prop->GetId()).IsEmpty()); in TEST()
[all …]
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
DScriptProfiler.cpp108 v8::Handle<v8::Value> value = profiler->FindObjectById(id); in objectByHeapObjectId()
/external/chromium_org/v8/src/
Dapi.cc7331 Handle<Value> HeapProfiler::FindObjectById(SnapshotObjectId id) { in FindObjectById() function in v8::HeapProfiler