Home
last modified time | relevance | path

Searched refs:GetUnboundScript (Results 1 – 6 of 6) sorted by relevance

/external/v8/test/cctest/
Dtest-cpu-profiler.cc1639 script_b->GetUnboundScript()->GetId(), 1, 1); in TEST()
1642 script_b->GetUnboundScript()->GetId(), 3, 16); in TEST()
1645 script_a->GetUnboundScript()->GetId(), 2, 1); in TEST()
1648 script_a->GetUnboundScript()->GetId(), 3, 14); in TEST()
Dtest-profile-generator.cc665 CHECK_EQ(script_b->GetUnboundScript()->GetId(), current->GetScriptId()); in TEST()
669 CHECK_EQ(script_a->GetUnboundScript()->GetId(), current->GetScriptId()); in TEST()
Dtest-api.cc17600 CHECK_EQ(scriptIdInStack[i], script->GetUnboundScript()->GetId()); in TEST()
18577 CHECK_EQ(script->GetUnboundScript()->GetId(), foo->ScriptId()); in THREADED_TEST()
18578 CHECK_EQ(script->GetUnboundScript()->GetId(), bar->ScriptId()); in THREADED_TEST()
22861 Local<Value> script_name = script->GetUnboundScript()->GetScriptName(); in TEST()
22866 int line_number = script->GetUnboundScript()->GetLineNumber(0); in TEST()
22875 v8::String::Utf8Value url(script->GetUnboundScript()->GetSourceURL()); in SourceURLHelper()
22878 CHECK(script->GetUnboundScript()->GetSourceURL()->IsUndefined()); in SourceURLHelper()
22882 script->GetUnboundScript()->GetSourceMappingURL()); in SourceURLHelper()
22885 CHECK(script->GetUnboundScript()->GetSourceMappingURL()->IsUndefined()); in SourceURLHelper()
Dtest-debug.cc1655 int script_id = script->GetUnboundScript()->GetId(); in TEST()
/external/v8/include/
Dv8.h1007 Local<UnboundScript> GetUnboundScript();
1011 return GetUnboundScript()->GetId(); in GetId()
/external/v8/src/
Dapi.cc1696 Local<UnboundScript> Script::GetUnboundScript() { in GetUnboundScript() function in v8::Script