HomeSort by relevance Sort by last modified time
    Searched refs:stdout (Results 551 - 575 of 2121) sorted by null

<<21222324252627282930>>

  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
toplevel.ml 33 print_string "ready> "; flush stdout;
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
toplevel.ml 38 print_string "ready> "; flush stdout;
  /external/qemu/distrib/sdl-1.2.15/src/video/ps3/
SDL_ps3video.h 59 fprintf( stdout, fmt, ##args ); \
60 fflush( stdout ); \
  /external/qemu/distrib/sdl-1.2.15/src/video/ps3/spulibs/
fb_writer.c 40 fprintf( stdout, fmt, ##args ); \
41 fflush( stdout );
  /external/skia/tools/
verify_images_for_gm_results.py 76 proc = subprocess.Popen(['svn', 'ls', url], stdout=subprocess.PIPE,
77 stderr=subprocess.STDOUT)
131 proc = subprocess.Popen(['gsutil', 'ls', url], stdout=subprocess.PIPE,
132 stderr=subprocess.STDOUT)
  /external/stlport/stlport/stl/
_cstdio.h 39 # undef stdout macro
42 # define stdout (&_STLP_VENDOR_CSTD::__files[1]) macro
  /external/valgrind/main/memcheck/tests/
addressable.c 112 setvbuf(stdout, NULL, _IOLBF, 0);
132 fflush(stdout);
  /external/zlib/src/contrib/puff/
pufftest.c 15 -w is used to write the decompressed data to stdout. -f is for coverage
146 /* if requested, inflate again and write decompressd data to stdout */
157 SET_BINARY_MODE(stdout);
158 fwrite(dest, 1, destlen, stdout);
  /frameworks/compile/libbcc/tools/build/
gen-build-info.py 37 stdout=subprocess.PIPE,
47 stdout=subprocess.PIPE,
  /hardware/akm/AK8975_FS/akmdfs/
AKFS_Common.h 107 ? (fprintf(stdout, (format), ##__VA_ARGS__)) \
117 ? (fprintf(stdout, (format), ##__VA_ARGS__)) \
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
iostream.cpp 39 ostream* cout_ptr = ::new(cout) ostream(::new(__cout) __stdoutbuf<char>(stdout, state_types+1));
47 wostream* wcout_ptr = ::new(wcout) wostream(::new(__wcout) __stdoutbuf<wchar_t>(stdout, state_types+4));
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_cstdio.h 39 # undef stdout macro
42 # define stdout (&_STLP_VENDOR_CSTD::__files[1]) macro
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_cstdio.h 39 # undef stdout macro
42 # define stdout (&_STLP_VENDOR_CSTD::__files[1]) macro
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_cstdio.h 39 # undef stdout macro
42 # define stdout (&_STLP_VENDOR_CSTD::__files[1]) macro
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_cstdio.h 39 # undef stdout macro
42 # define stdout (&_STLP_VENDOR_CSTD::__files[1]) macro
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_cstdio.h 39 # undef stdout macro
42 # define stdout (&_STLP_VENDOR_CSTD::__files[1]) macro
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_cstdio.h 39 # undef stdout macro
42 # define stdout (&_STLP_VENDOR_CSTD::__files[1]) macro
  /external/chromium/third_party/libevent/test/
regress.c 274 fprintf(stdout, "%s", name);
305 fprintf(stdout, "OK\n");
307 fprintf(stdout, "FAILED\n");
324 fprintf(stdout, "Testing register fds: ");
362 fprintf(stdout, "OK\n");
587 fprintf(stdout, "FAILED (sigchld)\n");
1034 fprintf(stdout, "Testing evbuffer_find 1: ");
1040 fprintf(stdout, "OK\n");
1042 fprintf(stdout, "FAILED\n");
1050 fprintf(stdout, "Testing evbuffer_find 2: ")
    [all...]
  /external/chromium_org/third_party/libevent/test/
regress.c 274 fprintf(stdout, "%s", name);
305 fprintf(stdout, "OK\n");
307 fprintf(stdout, "FAILED\n");
324 fprintf(stdout, "Testing register fds: ");
362 fprintf(stdout, "OK\n");
587 fprintf(stdout, "FAILED (sigchld)\n");
1034 fprintf(stdout, "Testing evbuffer_find 1: ");
1040 fprintf(stdout, "OK\n");
1042 fprintf(stdout, "FAILED\n");
1050 fprintf(stdout, "Testing evbuffer_find 2: ")
    [all...]
  /external/elfutils/src/
strings.c 146 __fsetlocking (stdout, FSETLOCKING_BYCALLER);
362 fputs_unlocked (fname, stdout);
363 fputs_unlocked (": ", stdout);
371 fputs_unlocked (*unprinted, stdout);
380 fwrite_unlocked (start, 1, buf - start, stdout);
381 putc_unlocked ('\n', stdout);
427 fputs_unlocked (fname, stdout);
428 fputs_unlocked (": ", stdout);
436 fputs_unlocked (*unprinted, stdout);
440 fwrite_unlocked (start, 1, buf - start, stdout);
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
gUnitExecutor.java 178 // Run parser, and get the return value or stdout or stderr if there is
233 PrintStream ps = null; // for redirecting stdout later
270 String stdout = null; local
272 stdout = out.toString();
274 return new gUnitTestResult(true, stdout, true);
310 PrintStream ps = null; // for redirecting stdout later
390 String stdout = null; local
391 // TODO: need to deal with the case which has both ST return value and stdout
393 stdout = out.toString();
396 return new gUnitTestResult(true, stdout, astString)
559 String stdout = null; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_file2k.py 648 stdin=subprocess.PIPE, stdout=subprocess.PIPE,
685 stdout, stderr = reader_process.communicate(input='\n')
688 method_name, reader_process.returncode, stdout, stderr))
753 # Issue 3242: sys.stdout can be replaced (and freed) during a
755 save_stdout = sys.stdout
760 sys.stdout = save_stdout
763 sys.stdout = File()
766 sys.stdout = save_stdout
770 # sys.stdout was deleted.
771 save_stdout = sys.stdout
    [all...]
regrtest.py 26 -v/--verbose -- run tests in verbose mode with output to stdout
258 test_support.record_original_stdout(sys.stdout)
512 stdout=PIPE, stderr=PIPE,
515 stdout, stderr = popen.communicate()
519 stdout, _, result = stdout.strip().rpartition("\n")
525 stdout = test+'\n'+stdout
526 output.put((test, stdout.rstrip(), stderr.rstrip(), result))
536 test, stdout, stderr, result = output.get(
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_file2k.py 648 stdin=subprocess.PIPE, stdout=subprocess.PIPE,
685 stdout, stderr = reader_process.communicate(input='\n')
688 method_name, reader_process.returncode, stdout, stderr))
753 # Issue 3242: sys.stdout can be replaced (and freed) during a
755 save_stdout = sys.stdout
760 sys.stdout = save_stdout
763 sys.stdout = File()
766 sys.stdout = save_stdout
770 # sys.stdout was deleted.
771 save_stdout = sys.stdout
    [all...]
  /external/chromium_org/third_party/icu/source/tools/pkgdata/
pkgdata.cpp 302 fprintf(stdout, "Warning: You are using the -O option which is not needed for MSVC build on Windows.\n");
550 fprintf(stdout, "# Install: Files mode, copying files to %s..\n", targetDir);
570 fprintf(stdout, "# Writing package file %s ..\n", datFileNamePath);
595 fprintf(stdout, "# Moving package file to %s ..\n", targetFileNamePath);
641 fprintf(stdout, "# Installing already-built library into %s\n", o->install);
651 fprintf(stdout, "# Not installing up-to-date library %s into %s\n", checkLibFile, o->install);
654 fprintf(stdout, "# Not installing missing %s into %s\n", checkLibFile, o->install);
665 fprintf(stdout, "# Generating assembly code %s of type %s ..\n", gencFilePath, genccodeAssembly);
681 fprintf(stdout, "# Installing static library into %s\n", o->install);
693 fprintf(stdout, "# Writing object code to %s ..\n", gencFilePath)
    [all...]

Completed in 463 milliseconds

<<21222324252627282930>>