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

/external/v8/src/
H A Dprofile-generator.cc1888 JSObject* js_obj = JSObject::cast(obj); local
1889 ExtractClosureReferences(js_obj, entry);
1890 ExtractPropertyReferences(js_obj, entry);
1891 ExtractElementReferences(js_obj, entry);
1892 ExtractInternalReferences(js_obj, entry);
1894 obj, entry, heap_->Proto_symbol(), js_obj->GetPrototype());
1896 JSFunction* js_fun = JSFunction::cast(js_obj);
1933 TagObject(js_obj->properties(), "(object properties)");
1935 "properties", js_obj->properties(),
1937 TagObject(js_obj
2052 ExtractClosureReferences(JSObject* js_obj, HeapEntry* entry) argument
2097 ExtractPropertyReferences(JSObject* js_obj, HeapEntry* entry) argument
2171 ExtractElementReferences(JSObject* js_obj, HeapEntry* entry) argument
2198 ExtractInternalReferences(JSObject* js_obj, HeapEntry* entry) argument
[all...]
H A Dprofile-generator.h942 void ExtractClosureReferences(JSObject* js_obj, HeapEntry* entry);
943 void ExtractPropertyReferences(JSObject* js_obj, HeapEntry* entry);
944 void ExtractElementReferences(JSObject* js_obj, HeapEntry* entry);
945 void ExtractInternalReferences(JSObject* js_obj, HeapEntry* entry);
H A Dapi.cc2249 i::Handle<i::JSObject> js_obj(i::JSObject::cast(*obj));
2250 return CheckConstructor(isolate, js_obj, "$Error") ||
2251 CheckConstructor(isolate, js_obj, "$EvalError") ||
2252 CheckConstructor(isolate, js_obj, "$RangeError") ||
2253 CheckConstructor(isolate, js_obj, "$ReferenceError") ||
2254 CheckConstructor(isolate, js_obj, "$SyntaxError") ||
2255 CheckConstructor(isolate, js_obj, "$TypeError") ||
2256 CheckConstructor(isolate, js_obj, "$URIError");
/external/v8/test/cctest/
H A Dtest-heap-profiler.cc1133 v8::Local<v8::Object> js_obj = js_global->Get(v8_str("a")).As<v8::Object>(); local
1134 CHECK(js_obj == obj->GetHeapValue());
1138 js_obj->Get(v8_str("s_prop")).As<v8::String>();
1143 js_obj->Get(v8_str("n_prop")).As<v8::Number>();
H A Dtest-heap.cc257 JSObject* js_obj = JSObject::cast(obj); local
258 CHECK_EQ(Smi::FromInt(23), js_obj->GetProperty(*prop_name));

Completed in 235 milliseconds