Home
last modified time | relevance | path

Searched refs:js_file (Results 1 – 4 of 4) sorted by relevance

/third_party/skia/tools/run-wasm-gm-tests/
DMakefile5 node run-wasm-gm-tests --js_file ../../out/wasm_gm_tests_debug/wasm_gm_tests.js \
17 node run-wasm-gm-tests --js_file ../../out/wasm_gm_tests/wasm_gm_tests.js \
Drun-wasm-gm-tests.js113 if (!options.js_file) {
158 const testJS = fs.readFileSync(options.js_file, 'utf8');
/third_party/jerryscript/docs/
D12.EXT-REFERENCE-MODULE.md172 FILE *js_file = fopen (name_string, "r");
174 if (js_file)
177 file_size = fseek (js_file, 0, SEEK_END);
178 fseek (js_file, 0, SEEK_SET);
185 fread (js_file_contents, file_size, 1, js_file);
194 fclose (js_file);
/third_party/node/src/
Dspawn_sync.cc756 Local<Value> js_file = in ParseOptions() local
758 if (!CopyJsString(js_file, &file_buffer_).To(&r)) return Nothing<int>(); in ParseOptions()