HomeSort by relevance Sort by last modified time
    Searched refs:stdout (Results 226 - 250 of 1803) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/utils/lit/lit/
ProgressBar.py 89 def __init__(self, term_stream=sys.stdout):
184 sys.stdout.write(self.header)
194 sys.stdout.write('%-2d' % (i*2))
198 sys.stdout.write('.')
200 sys.stdout.write(' ')
201 sys.stdout.flush()
206 sys.stdout.write('\n')
207 sys.stdout.flush()
248 sys.stdout.write(self.header)
267 sys.stdout.write
    [all...]
  /external/chromium_org/third_party/icu/source/tools/ctestfw/
uperf.cpp 271 //fprintf(stdout, "\n=== Handling test: %s: ===\n", name);
272 //fprintf(stdout, "\n%s:\n", name);
282 fprintf(stdout, "\n---ERROR: Test doesn't exist: %s!\n", name);
379 fprintf(stdout,"= %s calibrating %i seconds \n", name, (int)n);
413 fprintf(stdout,"= %s begin " ,name);
416 fprintf(stdout, "%i\n", (int)loops);
418 fprintf(stdout, "%i\n", (int)n);
421 fprintf(stdout, "\n");
436 fprintf(stdout, "= %s end: %f loops: %i operations: %li \n", name, t, (int)loops, ops);
438 fprintf(stdout, "= %s end: %f loops: %i operations: %li events: %li\n", name, t, (int)loops, ops, events)
    [all...]
  /external/clang/tools/clang-format/
git-clang-format 237 p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
238 stdout, stderr = p.communicate()
241 return stdout.strip()
247 changed_lines = extract_lines(diff_process.stdout)
248 diff_process.stdout.close()
264 p = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE)
366 stdout=subprocess.PIPE)
374 hash_object = subprocess.Popen(hash_object_cmd, stdin=clang_format.stdout,
375 stdout=subprocess.PIPE)
376 clang_format.stdout.close(
    [all...]
  /external/icu/icu4c/source/tools/ctestfw/
uperf.cpp 271 //fprintf(stdout, "\n=== Handling test: %s: ===\n", name);
272 //fprintf(stdout, "\n%s:\n", name);
282 fprintf(stdout, "\n---ERROR: Test doesn't exist: %s!\n", name);
379 fprintf(stdout,"= %s calibrating %i seconds \n", name, (int)n);
413 fprintf(stdout,"= %s begin " ,name);
416 fprintf(stdout, "%i\n", (int)loops);
418 fprintf(stdout, "%i\n", (int)n);
421 fprintf(stdout, "\n");
436 fprintf(stdout, "= %s end: %f loops: %i operations: %li \n", name, t, (int)loops, ops);
438 fprintf(stdout, "= %s end: %f loops: %i operations: %li events: %li\n", name, t, (int)loops, ops, events)
    [all...]
  /external/chromium_org/chrome/test/chromedriver/
util.py 143 sys.stdout.flush()
146 sys.stdout.flush()
176 sys.stdout.flush()
181 sys.stdout.flush()
186 sys.stdout.flush()
191 sys.stdout.flush()
  /external/chromium_org/third_party/libvpx/source/libvpx/tools/
lint-hunks.py 80 tl = Subprocess(TOPLEVEL_CMD, stdout=subprocess.PIPE)
96 p = Subprocess(diff_cmd, stdout=subprocess.PIPE)
97 stdout = p.communicate()[0]
98 for hunk in diff.ParseDiffHunks(StringIO.StringIO(stdout)):
113 show = Subprocess(show_cmd, stdout=subprocess.PIPE)
115 stdin=show.stdout, stderr=subprocess.PIPE)
  /external/chromium_org/third_party/skia/tools/
svn.py 35 stdout=subprocess.PIPE,
36 stderr=subprocess.STDOUT)
61 """Run a command (from self._directory) and return stdout as a single
69 stdout=subprocess.PIPE,
71 (stdout, stderr) = proc.communicate()
75 return stdout
90 Returns stdout as a single string.
100 Returns stdout as a single string.
149 stdout = self._RunCommand([SVN, 'status']).replace('\r', '')
151 files = status_regex.findall(stdout)
    [all...]
  /external/chromium_org/tools/gyp/test/ios/
gyptest-per-config-settings.py 21 proc = subprocess.Popen(['lipo', '-info', file], stdout=subprocess.PIPE)
32 '-v'], stdout=subprocess.PIPE)
36 proc = subprocess.Popen(['codesign', '-v', file], stdout=subprocess.PIPE)
46 temp.name, file], stdout=subprocess.PIPE)
68 job = subprocess.Popen(args, stdout=subprocess.PIPE)
89 stdout=subprocess.PIPE)
  /external/libvpx/libvpx/tools/
lint-hunks.py 80 tl = Subprocess(TOPLEVEL_CMD, stdout=subprocess.PIPE)
96 p = Subprocess(diff_cmd, stdout=subprocess.PIPE)
97 stdout = p.communicate()[0]
98 for hunk in diff.ParseDiffHunks(StringIO.StringIO(stdout)):
113 show = Subprocess(show_cmd, stdout=subprocess.PIPE)
115 stdin=show.stdout, stderr=subprocess.PIPE)
  /external/lldb/test/pexpect-2.4/examples/
chess2.py 36 sys.stdout.flush()
41 sys.stdout.write (k)
42 sys.stdout.flush()
62 sys.stdout.write (c)
63 sys.stdout.flush()
104 sys.stdout.flush ()
  /build/core/tasks/check_boot_jars/
check_boot_jars.py 47 stdout=subprocess.PIPE, shell=True)
48 stdout, _ = p.communicate()
51 items = stdout.split()
  /development/tools/yuv420sp2rgb/
cmdline.c 37 fprintf(stdout,
43 fprintf(stdout, "options:\n");
47 fprintf(stdout, "\t-%c/--%s%s: %s\n",
  /external/bluetooth/bluedroid/btif/co/
bta_ag_co.c 33 #define LOGI(format, ...) fprintf (stdout, LOG_TAG format"\n", ## __VA_ARGS__)
34 #define LOGD(format, ...) fprintf (stdout, LOG_TAG format"\n", ## __VA_ARGS__)
35 #define LOGV(format, ...) fprintf (stdout, LOG_TAG format"\n", ## __VA_ARGS__)
  /external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/
sdk_update.py 56 process = subprocess.Popen(cmd, stdout=subprocess.PIPE)
57 stdout, _ = process.communicate()
59 return stdout.find('Updating bundle sdk_tools to version') != -1
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
outputtee.py 72 self._original_stdout = sys.stdout
75 sys.stdout = Tee(self._original_stdout, *files)
78 sys.stdout = self._original_stdout
  /external/chromium_org/third_party/libvpx/source/libvpx/examples/
decode_with_drops.c 130 putc('.', stdout);
135 putc('X', stdout);
138 fflush(stdout);
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
main.c 62 "-o --output=output Specify the output file instead of stdout\n"
125 fputs("re2c " PACKAGE_VERSION "\n", stdout);
130 fprintf(stdout, "%02d%02d%02d\n", v1, v2, v3);
167 outputFileName = mystrdup("<stdout>");
168 output = stdout;
  /external/chromium_org/tools/android/checkstyle/
checkstyle.py 38 stdout=subprocess.PIPE, env=checkstyle_env)
39 stdout, _ = check.communicate()
49 # Remove non-error values from stdout
50 errors = stdout.splitlines()
  /external/e2fsprogs/lib/ss/
test_ss.c 52 fflush(stdout);
54 setbuf(stdout, NULL);
147 fputs(", ", stdout);
  /external/libvpx/libvpx/examples/
decode_with_drops.c 132 putc('.', stdout);
137 putc('X', stdout);
140 fflush(stdout);
  /build/tools/
adbs 42 sys.stdout.flush()
  /external/bison/lib/
closeout.c 48 /* Specify the reaction to an EPIPE error during the closing of stdout:
96 other than stdout and stderr before exiting, since the call to
109 if (close_stream (stdout) != 0
  /external/chromium_org/content/shell/renderer/test_runner/helper/
layout_test_helper_win.cc 46 fflush(stdout);
  /external/chromium_org/content/test/gpu/
run_unittests 25 gtest_progress_reporter.GTestProgressReporter(sys.stdout)]
  /external/chromium_org/testing/gtest/test/
gtest_throw_on_failure_ex_test.cc 47 fflush(stdout);

Completed in 616 milliseconds

1 2 3 4 5 6 7 8 91011>>