Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/objects/
Dshared-function-info.cc408 Handle<String> script_source( in GetSourceCodeHarmony() local
413 script_source, start_pos, shared->EndPosition()); in GetSourceCodeHarmony()
445 String script_source = in operator <<() local
448 if (!script_source.LooksValid()) return os << "<Invalid Source>"; in operator <<()
460 script_source.PrintUC16(os, s.StartPosition(), s.EndPosition()); in operator <<()
463 script_source.PrintUC16(os, s.StartPosition(), in operator <<()
Djs-function.cc1214 Handle<String> script_source( in ToString() local
1216 return isolate->factory()->NewSubString(script_source, start_position, in ToString()
/third_party/node/src/
Dnode_builtins.cc295 ScriptCompiler::Source script_source(source, origin, cached_data); in LookupAndCompileInternal() local
304 &script_source, in LookupAndCompileInternal()
326 *result = (has_cache && !script_source.GetCachedData()->rejected) in LookupAndCompileInternal()
334 script_source.GetCachedData()->buffer_policy == in LookupAndCompileInternal()
338 script_source.GetCachedData()->rejected ? "is rejected" in LookupAndCompileInternal()
Dnode_snapshotable.cc1479 ScriptCompiler::Source script_source(source, origin); in CompileSerializeMain() local
1482 &script_source, in CompileSerializeMain()
/third_party/node/deps/v8/tools/v8windbg/src/
Djs-stack.cc110 frame_entry.script_source = sp_script_source; in PopulateFrameData()
176 curr_frame.script_source.Get(), nullptr)); in GetAt()
Djs-stack.h38 WRL::ComPtr<IModelObject> script_source; member
/third_party/node/deps/v8/src/web-snapshot/
Dweb-snapshot.cc1420 ScriptCompiler::Source script_source(source, origin); in DeserializeScript() local
1422 if (!ScriptCompiler::CompileUnboundScript(v8_isolate, &script_source) in DeserializeScript()
/third_party/node/deps/v8/tools/
Dgrokdump.py1639 script_source = self.shared.script.source
1640 if not script_source.Is(String): return source
1642 source = script_source.GetChars()[start:end]
/third_party/node/deps/v8/src/d8/
Dd8.cc642 ScriptCompiler::Source script_source(source, origin, cached_code); in CompileString() local
644 Compile<T>(context, &script_source, in CompileString()
1923 ScriptCompiler::Source script_source(source, origin); in RealmEval() local
1925 if (!ScriptCompiler::CompileUnboundScript(isolate, &script_source) in RealmEval()
/third_party/node/deps/v8/src/api/
Dapi.cc2830 ScriptCompiler::Source script_source(source, *origin); in Compile() local
2831 return ScriptCompiler::Compile(context, &script_source); in Compile()
2833 ScriptCompiler::Source script_source(source); in Compile() local
2834 return ScriptCompiler::Compile(context, &script_source); in Compile()