Lines Matching defs:source
2 // Redistribution and use in source and binary forms, with or without
6 // * Redistributions of source code must retain the above copyright
51 bool ExecuteString(v8::Isolate* isolate, v8::Local<v8::String> source,
176 v8::Local<v8::String> source;
177 if (!ReadFile(args.GetIsolate(), *file).ToLocal(&source)) {
183 args.GetReturnValue().Set(source);
200 v8::Local<v8::String> source;
201 if (!ReadFile(args.GetIsolate(), *file).ToLocal(&source)) {
207 if (!ExecuteString(args.GetIsolate(), source, args[i], false, false)) {
282 v8::Local<v8::String> source;
285 .ToLocal(&source)) {
288 bool success = ExecuteString(isolate, source, file_name, false, true);
296 v8::Local<v8::String> source;
297 if (!ReadFile(isolate, str).ToLocal(&source)) {
301 bool success = ExecuteString(isolate, source, file_name, false, true);
338 bool ExecuteString(v8::Isolate* isolate, v8::Local<v8::String> source,
346 if (!v8::Script::Compile(context, source, &origin).ToLocal(&script)) {
390 // Print line of source code.