Lines Matching defs:source
2 // Use of this source code is governed by a BSD-style license that can be
216 Local<String> source =
219 Local<Value> result = JSON::Parse(context, source).ToLocalChecked();
376 Local<String> source, Local<Value> name,
378 int source_length = source->Length();
380 source->Write(source_buffer, 0, source_length);
409 ScriptCompiler::Source script_source(source_copy, ScriptOrigin(name_copy));
429 Isolate* isolate, Local<String> source, Local<Value> name,
434 ScriptCompiler::Source script_source(source, origin);
439 CompileForCachedData(source, name, compile_options);
440 ScriptCompiler::Source cached_source(source, origin, data);
457 bool Shell::ExecuteString(Isolate* isolate, Local<String> source,
471 if (!Shell::CompileString(isolate, source, name, options.compile_options)
646 ScriptCompiler::Source source(source_text, origin);
648 if (!ScriptCompiler::CompileModule(isolate, &source).ToLocal(&module)) {
893 ScriptCompiler::Source script_source(
984 Local<String> source = ReadFile(args.GetIsolate(), *file);
985 if (source
989 args.GetReturnValue().Set(source);
1038 Local<String> source = ReadFile(args.GetIsolate(), *file);
1039 if (source.IsEmpty()) {
1044 args.GetIsolate(), source,
1226 // Print line of source code.
1363 Local<String> source =
1373 Script::Compile(context, source, &origin).ToLocalChecked();
1903 Local<String> source =
1907 if (!Shell::ExecuteString(isolate, source, file_name, false, true)) {
1932 Local<String> source = ReadFile(isolate, arg);
1933 if (source.IsEmpty()) {
1938 if (!Shell::ExecuteString(isolate, source, file_name, false, true)) {
2217 Local<String> source =
2220 if (Shell::ExecuteString(isolate, source, file_name, false, true)) {
2388 // Set up isolated source groups.