/external/v8/test/cctest/ |
D | cctest.h | 364 v8::ScriptCompiler::Source script_source(source, origin); in CompileWithOrigin() 366 v8::Isolate::GetCurrent()->GetCurrentContext(), &script_source) in CompileWithOrigin() 422 v8::Local<v8::Context> context, v8::ScriptCompiler::Source* script_source, in CompileRun() argument 425 if (v8::ScriptCompiler::Compile(context, script_source, options) in CompileRun() 440 v8::ScriptCompiler::Source script_source(v8_str(source)); in ParserCacheCompileRun() 441 v8::ScriptCompiler::Compile(context, &script_source, in ParserCacheCompileRun() 447 script_source.GetCachedData() ? v8::ScriptCompiler::kConsumeParserCache in ParserCacheCompileRun() 450 return CompileRun(context, &script_source, options); in ParserCacheCompileRun() 464 v8::ScriptCompiler::Source script_source(v8_str(source), origin); in CompileRunWithOrigin() 465 return CompileRun(context, &script_source, in CompileRunWithOrigin() [all …]
|
D | test-compiler.cc | 556 v8::ScriptCompiler::Source script_source(v8_str( in TEST() local 561 v8::ScriptCompiler::CompileFunctionInContext(env.local(), &script_source, in TEST() 599 v8::ScriptCompiler::Source script_source(v8_str("result = x + y + z")); in TEST() local 601 v8::ScriptCompiler::CompileFunctionInContext(env.local(), &script_source, in TEST() 622 v8::ScriptCompiler::Source script_source(v8_str("result = x + b")); in TEST() local 625 v8::ScriptCompiler::CompileFunctionInContext(env.local(), &script_source, in TEST() 647 v8::ScriptCompiler::Source script_source( in TEST() local 651 v8::ScriptCompiler::CompileFunctionInContext(env.local(), &script_source, in TEST() 669 v8::ScriptCompiler::Source script_source(v8_str("result = 1")); in TEST() local 672 env.local(), &script_source, 1, &arg, 0, NULL) in TEST() [all …]
|
D | test-parsing.cc | 231 v8::ScriptCompiler::Source script_source( in TEST() local 236 v8::ScriptCompiler::Compile(isolate->GetCurrentContext(), &script_source, in TEST() 239 CHECK(script_source.GetCachedData()); in TEST() 244 v8::ScriptCompiler::Compile(isolate->GetCurrentContext(), &script_source, in TEST() 249 isolate, &script_source, v8::ScriptCompiler::kConsumeParserCache) in TEST()
|
D | test-heap-profiler.cc | 2894 const char* script_source = in TEST() local 2913 CompileRun(script_source); in TEST() 2940 CompileRun(script_source); in TEST()
|
D | test-api.cc | 16707 v8::ScriptCompiler::Source script_source( in IS_ARRAY_BUFFER_VIEW_TEST() local 16712 v8::ScriptCompiler::CompileUnboundScript(c1->GetIsolate(), &script_source) in IS_ARRAY_BUFFER_VIEW_TEST() 16755 v8::ScriptCompiler::Source script_source(src, v8::ScriptOrigin(origin)); in THREADED_TEST() local 16757 &script_source) in THREADED_TEST() 16892 v8::ScriptCompiler::Source script_source(overview_src, in TEST() local 16895 v8::ScriptCompiler::CompileUnboundScript(isolate, &script_source) in TEST() 23514 v8::ScriptCompiler::Source script_source(v8_str("var foo;"), origin); in TEST() local 23516 v8::ScriptCompiler::Compile(env.local(), &script_source).ToLocalChecked(); in TEST() 23532 v8::ScriptCompiler::Source script_source(v8_str("var foo;\n" in TEST() local 23537 v8::ScriptCompiler::Compile(env.local(), &script_source).ToLocalChecked(); in TEST()
|
D | test-debug.cc | 2126 v8::Local<v8::String> script_source = v8_str(env->GetIsolate(), in TEST() local 2137 CompileRunWithOrigin(script_source, "test.html"); in TEST()
|
/external/lldb/include/lldb/Breakpoint/ |
D | WatchpointOptions.h | 204 script_source(), in CommandData() 214 std::string script_source; member
|
D | BreakpointOptions.h | 302 script_source(), in CommandData() 312 std::string script_source; member
|
/external/v8/src/ |
D | d8.cc | 317 ScriptCompiler::Source script_source(source_copy, ScriptOrigin(name_copy)); in CompileForCachedData() local 318 if (!ScriptCompiler::CompileUnboundScript(temp_isolate, &script_source, in CompileForCachedData() 320 script_source.GetCachedData()) { in CompileForCachedData() 321 int length = script_source.GetCachedData()->length; in CompileForCachedData() 323 memcpy(cache, script_source.GetCachedData()->data, length); in CompileForCachedData() 344 ScriptCompiler::Source script_source(source, origin); in CompileString() local 346 ? ScriptCompiler::Compile(context, &script_source, in CompileString() 348 : ScriptCompiler::CompileModule(context, &script_source, in CompileString() 605 ScriptCompiler::Source script_source( in RealmEval() local 608 if (!ScriptCompiler::CompileUnboundScript(isolate, &script_source) in RealmEval()
|
D | bootstrapper.cc | 2514 Handle<AccessorInfo> script_source = in ExportFromRuntime() local 2518 Handle<Name>(Name::cast(script_source->name())), script_source, in ExportFromRuntime()
|
D | api.cc | 2244 ScriptCompiler::Source script_source(source, *origin); in Compile() local 2245 return ScriptCompiler::Compile(context, &script_source); in Compile() 2247 ScriptCompiler::Source script_source(source); in Compile() local 2248 return ScriptCompiler::Compile(context, &script_source); in Compile()
|
D | objects.cc | 12658 Handle<String> script_source( in ToString() local 12661 script_source, Handle<Smi>::cast(class_start_position)->value(), in ToString() 13164 String* script_source = in operator <<() local 13167 if (!script_source->LooksValid()) return os << "<Invalid Source>"; in operator <<() 13179 script_source->PrintUC16(os, s->start_position(), s->end_position()); in operator <<() 13182 script_source->PrintUC16(os, s->start_position(), in operator <<()
|
/external/lldb/source/Commands/ |
D | CommandObjectWatchpointCommand.cpp | 235 data_ap->script_source.assign (oneliner); in SetWatchpointCommandCallback() 309 … ((WatchpointOptions::CommandData *) wp_options_baton->m_data)->script_source.clear(); in GenerateWatchpointCommandCallback()
|
D | CommandObjectBreakpointCommand.cpp | 257 data_ap->script_source.assign (oneliner); in SetBreakpointCommandCallback() 331 … ((BreakpointOptions::CommandData *) bp_options_baton->m_data)->script_source.clear(); in GenerateBreakpointCommandCallback()
|
/external/lldb/source/Interpreter/ |
D | ScriptInterpreterPython.cpp | 1371 data_ap->script_source)) in GenerateBreakpointOptionsCommandCallback() 1488 data_ap->script_source)) in GenerateWatchpointOptionsCommandCallback() 1596 data_ap->script_source.assign (oneliner); in SetBreakpointCommandCallback() 1598 if (GenerateBreakpointCommandCallbackData (data_ap->user_source, data_ap->script_source)) in SetBreakpointCommandCallback() 1619 data_ap->script_source.assign (oneliner); in SetWatchpointCommandCallback() 1621 if (GenerateWatchpointCommandCallbackData (data_ap->user_source, data_ap->script_source)) in SetWatchpointCommandCallback() 2217 const char *python_function_name = bp_option_data->script_source.c_str(); in BreakpointCallbackFunction() 2272 const char *python_function_name = wp_option_data->script_source.c_str(); in WatchpointCallbackFunction()
|
/external/lldb/source/Host/macosx/ |
D | Host.mm | 630 const char *script_source = applescript_source.GetString().c_str(); 631 //puts (script_source); 632 …t = [[NSAppleScript alloc] initWithSource:[NSString stringWithCString:script_source encoding:NSUTF…
|
/external/v8/tools/ |
D | grokdump.py | 1482 script_source = self.shared.script.source 1483 if not script_source.Is(String): return source 1485 source = script_source.GetChars()[start:end]
|
/external/v8/test/cctest/heap/ |
D | test-heap.cc | 4392 v8::ScriptCompiler::Source script_source( in TEST() local 4396 v8::ScriptCompiler::CompileUnboundScript(v8_isolate, &script_source) in TEST()
|