Home
last modified time | relevance | path

Searched refs:script_source (Results 1 – 5 of 5) sorted by relevance

/external/v8/src/
Dd8.cc460 ScriptCompiler::Source script_source(source_copy, ScriptOrigin(name_copy)); in CompileForCachedData() local
461 if (!ScriptCompiler::CompileUnboundScript(temp_isolate, &script_source, in CompileForCachedData()
463 script_source.GetCachedData()) { in CompileForCachedData()
464 int length = script_source.GetCachedData()->length; in CompileForCachedData()
466 memcpy(cache, script_source.GetCachedData()->data, length); in CompileForCachedData()
485 ScriptCompiler::Source script_source(source, origin); in CompileString() local
486 return ScriptCompiler::Compile(context, &script_source, compile_options); in CompileString()
971 ScriptCompiler::Source script_source( in RealmEval() local
974 if (!ScriptCompiler::CompileUnboundScript(isolate, &script_source) in RealmEval()
Dbootstrapper.cc3351 Handle<AccessorInfo> script_source = in ExportFromRuntime() local
3355 Handle<Name>(Name::cast(script_source->name())), script_source, in ExportFromRuntime()
Dobjects.cc12876 Handle<String> script_source( in ToString() local
12879 script_source, Handle<Smi>::cast(class_start_position)->value(), in ToString()
13365 Handle<String> script_source(String::cast(Script::cast(script())->source())); in GetSourceCodeHarmony() local
13368 return isolate->factory()->NewSubString(script_source, start_pos, in GetSourceCodeHarmony()
13450 String* script_source = in operator <<() local
13453 if (!script_source->LooksValid()) return os << "<Invalid Source>"; in operator <<()
13465 script_source->PrintUC16(os, s->start_position(), s->end_position()); in operator <<()
13468 script_source->PrintUC16(os, s->start_position(), in operator <<()
Dapi.cc2505 ScriptCompiler::Source script_source(source, *origin); in Compile() local
2506 return ScriptCompiler::Compile(context, &script_source); in Compile()
2508 ScriptCompiler::Source script_source(source); in Compile() local
2509 return ScriptCompiler::Compile(context, &script_source); in Compile()
/external/v8/tools/
Dgrokdump.py1483 script_source = self.shared.script.source
1484 if not script_source.Is(String): return source
1486 source = script_source.GetChars()[start:end]