Home
last modified time | relevance | path

Searched refs:stdout (Results 151 - 175 of 1885) sorted by relevance

12345678910>>...76

/third_party/node/deps/v8/tools/testrunner/objects/
H A Doutput.py37 def __init__(self, exit_code=0, timed_out=False, stdout=None, stderr=None,
41 self.stdout = stdout
47 """Returns copy of the output without stdout and stderr."""
49 other.stdout = None
/third_party/node/test/parallel/
H A Dtest-child-process-stdio.js30 assert.notStrictEqual(child.stdout, null);
37 assert.strictEqual(child.stdout, null);
48 // Test stdout buffering.
53 child.stdout.setEncoding('utf8');
54 child.stdout.on('data', function(s) {
/third_party/node/test/pummel/
H A Dtest-https-large-response.js36 process.stdout.write('build body...');
38 process.stdout.write('done\n');
56 process.stdout.write('.');
65 process.stdout.write('\n');
/third_party/node/benchmark/misc/
H A Dprint.js18 let stdout = '';
21 node.stdout.on('data', (data) => {
22 stdout += data;
31 console.error('------ stdout ------');
32 console.error(stdout);
/third_party/rust/crates/libc/ci/
H A Druntest-android.rs36 let stdout = String::from_utf8_lossy(&output.stdout); in main()
41 stdout, in main()
45 && !stdout.lines().any(|l| (l.starts_with("PASSED ") && l.contains(" tests")) || l.starts_with("test result: ok")) in main()
/third_party/vk-gl-cts/external/amber/src/tools/
H A Dupdate_build_version.py36 stdout=subprocess.PIPE,
38 (stdout, stderr) = p.communicate()
40 raise RuntimeError('Failed to run {} in {}\nstdout: {}\nstderr: {}'.format(cmd, directory, stdout, stderr))
41 return stdout
/third_party/skia/third_party/externals/sfntly/cpp/src/sample/subtly/
H A Dsubsetter_main.cc32 fprintf(stdout, "Usage: %s <input_font_file> <output_font_file>" in PrintUsage()
71 fprintf(stdout, "Cannot create subset.\n"); in main()
76 subtly::PrintComparison(stdout, font, new_font); in main()
78 fprintf(stdout, "Went from %d to %d: %lf%% of original\n", in main()
/third_party/skia/tools/
H A Dskp_parser.cpp70 fflush(stdout); in main()
71 (void)_setmode(_fileno(stdout), _O_BINARY); in main()
73 fwrite(skdata->data(), skdata->size(), 1, stdout); in main()
80 fwrite(data->data(), data->size(), 1, stdout); in main()
/third_party/skia/infra/bots/recipes/
H A Dcheck_generated_files.py42 stdout=api.m.raw_io.output()).stdout.decode('utf-8')
58 stdout=api.m.raw_io.output()).stdout.decode('utf-8')
/third_party/node/tools/gyp/
H A Dtest_gyp.py178 self.isatty = sys.stdout.isatty() and not self.verbose
207 cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, env=self.env
212 stdout = proc.stdout.read().decode("utf8")
223 if stdout and not stdout.endswith(("PASSED\n", "NO RESULT\n")):
225 print("\n".join(f" {line}" for line in stdout.splitlines()))
236 sys.stdout.flush()
240 sys.stdout.flush()
/third_party/node/deps/npm/node_modules/node-gyp/gyp/
H A Dtest_gyp.py178 self.isatty = sys.stdout.isatty() and not self.verbose
207 cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, env=self.env
212 stdout = proc.stdout.read().decode("utf8")
223 if stdout and not stdout.endswith(("PASSED\n", "NO RESULT\n")):
225 print("\n".join(f" {line}" for line in stdout.splitlines()))
236 sys.stdout.flush()
240 sys.stdout.flush()
/third_party/python/Lib/wsgiref/
H A Dhandlers.py446 def __init__(self,stdin,stdout,stderr,environ,
450 self.stdout = stdout
466 result = self.stdout.write(data)
470 warn("SimpleHandler.stdout.write() should not do partial writes",
476 result = self.stdout.write(data)
479 self.stdout.flush()
480 self._flush = self.stdout.flush
509 """CGI-based invocation via sys.stdin/stdout/stderr and os.environ
532 self, sys.stdin.buffer, sys.stdout
[all...]
/third_party/mesa3d/bin/
H A Dperf-annotate-jit.py158 sys.stdout.write('%s:\n' % self.symbol)
163 sys.stdout.write(6*' ')
165 sys.stdout.write('%6u' % (sample))
167 sys.stdout.write('%6u: %s\n' % (address, instr))
242 p = subprocess.Popen(['perf', 'script'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
243 parser = PerfParser(p.stdout, symbol)
/third_party/node/lib/internal/main/
H A Dwatch_mode.js60 process.stdout.write(`${blue}Completed running ${kCommandStr}${white}\n`);
62 process.stdout.write(`${red}Failed running ${kCommandStr}${white}\n`);
87 process.stdout.write(`${blue}Waiting for graceful termination...${white}\n`);
92 process.stdout.write(`${clear}${green}Gracefully restarted ${kCommandStr}${white}\n`);
105 if (!kPreserveOutput) process.stdout.write(clear);
106 process.stdout.write(`${green}Restarting ${kCommandStr}${white}\n`);
126 // Exiting gracefully to avoid stdout/stderr getting written after
/third_party/python/Lib/asyncio/
H A Dwindows_utils.py128 The stdin, stdout, stderr are None or instances of PipeHandle.
130 def __init__(self, args, stdin=None, stdout=None, stderr=None, **kwds):
140 if stdout == PIPE:
144 stdout_wfd = stdout
153 super().__init__(args, stdin=stdin_rfd, stdout=stdout_wfd,
164 self.stdout = PipeHandle(stdout_rh)
170 if stdout == PIPE:
/third_party/skia/third_party/externals/harfbuzz/test/subset/
H A Drun-tests.py30 return process.stdout.readline().decode ("utf-8").strip ()
34 command, stdout=subprocess.PIPE, stderr=subprocess.PIPE,
101 sys.stdout.write (line)
102 sys.stdout.flush ()
134 stdout=subprocess.PIPE,
135 stderr=sys.stdout)
/third_party/python/Lib/test/
H A Dtest_file_eintr.py48 def fail_with_process_info(self, why, stdout=b'', stderr=b'',
57 stdout, stderr: standard output and error from the process so
70 stdout += stdout_end
73 (why, stdout.decode(), stderr.decode()))
104 stdin=subprocess.PIPE, stdout=subprocess.PIPE,
139 stdout, stderr = self._process.communicate(input=b'\n')
143 stdout, stderr, communicate=False)
H A Dtest_uu.py26 Can be a used as a drop-in replacement for sys.stdin and sys.stdout.
182 self.stdout = sys.stdout
186 sys.stdout = self.stdout
190 sys.stdout = FakeIO()
192 self.assertEqual(sys.stdout.getvalue(),
197 sys.stdout = FakeIO()
199 stdout = sys.stdout
[all...]
H A Dtest_tracemalloc.py903 ok, stdout, stderr = assert_python_ok('-c', code)
904 stdout = stdout.rstrip()
905 self.assertEqual(stdout, b'False')
912 ok, stdout, stderr = assert_python_ok('-E', '-c', code, PYTHONTRACEMALLOC='1')
913 stdout = stdout.rstrip()
914 self.assertEqual(stdout, b'False')
919 ok, stdout, stderr = assert_python_ok('-c', code, PYTHONTRACEMALLOC='0')
920 stdout
[all...]
/third_party/skia/third_party/externals/angle2/scripts/
H A Dperf_test_runner.py135 process = subprocess.Popen(run, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
164 sys.stdout.write("%s: %.2f" % (args.metric, score))
168 sys.stdout.write(", mean: %.2f" % mean(scores))
169 sys.stdout.write(", variation: %.2f%%" %
174 sys.stdout.write(", truncated mean: %.2f" % truncated_mean(scores, truncation_n))
175 sys.stdout.write(", variation: %.2f%%" %
/third_party/ltp/testcases/kernel/sched/tool/
H A Dtrace_sched.c257 fprintf(stdout, in thread_func()
328 fprintf(stdout, in main()
400 fprintf(stdout, "Created thread[%d]\n", thrd_ndx); in main()
440 fprintf(stdout, in main()
451 fprintf(stdout, "For processor number = %d\n", proc_ndx); in main()
452 fprintf(stdout, "%s\n", "==========================="); in main()
455 fprintf(stdout, in main()
/third_party/node/lib/internal/
H A Dworker.js234 const stdout = new ReadableWorkerStdio(this[kPort], 'stdout');
235 if (!options.stdout) {
236 stdout[kIncrementsPortRef] = false;
237 pipeWithoutWarning(stdout, process.stdout);
245 this[kParentSideStdio] = { stdin, stdout, stderr };
351 const { stdout, stderr } = this[kParentSideStdio];
353 if (!stdout.readableEnded) {
354 debug(`[${threadId}] explicitly closes stdout fo
[all...]
/third_party/typescript/tests/verify_3rd_libs/
H A Dverify_3rd_libs.py152 result = subprocess.run(cmd, cwd=path, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
169 log = result.stdout.decode() + get_stderr(result)
183 log = result.stdout.decode() + get_stderr(result)
197 if not pass_info in result.stdout.decode():
199 log = result.stdout.decode() + get_stderr(result)
211 if not pass_info in result.stdout.decode():
213 log = result.stdout.decode() + get_stderr(result)
232 if not pass_info in result.stdout.decode():
234 if not check_info in result.stdout.decode():
236 log = result.stdout
[all...]
/third_party/glslang/
H A Dupdate_glslang_sources.py49 stdout=subprocess.PIPE)
50 (stdout, _) = p.communicate()
54 print(stdout)
55 return stdout
65 stdout=subprocess.PIPE)
/third_party/cups-filters/filter/
H A Dpcl-common.c230 fputs(optval, stdout); in pjl_write()
236 fputs(optval, stdout); in pjl_write()
254 fputs(value, stdout); in pjl_write()
258 fputs(title, stdout); in pjl_write()
262 fputs(user, stdout); in pjl_write()

Completed in 9 milliseconds

12345678910>>...76