HomeSort by relevance Sort by last modified time
    Searched full:stdin (Results 76 - 100 of 1207) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/webkit/Tools/DumpRenderTree/chromium/
ImageDiff.cpp 54 // Causes the app to remain open, waiting for pairs of filenames on stdin.
56 static const char optionPollStdin[] = "--use-stdin";
84 // Creates the image from stdin with the given data length. On success, it
92 if (fread(source.get(), 1, byteLength, stdin) != byteLength)
193 " ImageDiff --use-stdin\n"
194 " Stays open reading pairs of filenames from stdin, comparing them,\n"
202 " Reads stream input from stdin, should be EXACTLY of the format\n"
244 while (fgets(buffer, sizeof(buffer), stdin)) {
375 // Watch stdin for filenames.
380 while (fgets(stdinBuffer, bufferSize, stdin)) {
    [all...]
  /external/bison/lib/
fopen-safer.c 28 /* Like fopen, but do not return stdin, stdout, or stderr. */
  /external/elfutils/tests/
addrscopes.c 163 line, read from stdin. */
167 (void) __fsetlocking (stdin, FSETLOCKING_BYCALLER);
171 while (!feof_unlocked (stdin))
173 if (getline (&buf, &len, stdin) < 0)
  /external/expat/examples/
elements.c 53 int len = (int)fread(buf, 1, sizeof(buf), stdin);
  /external/expat/xmlwf/
xmlfile.c 156 /* passing NULL for filename means read intput from stdin */
157 int fd = 0; /* 0 is the fileno for stdin */
178 tperror(filename != NULL ? filename : "STDIN");
184 reportError(parser, filename != NULL ? filename : "STDIN");
  /external/libvorbis/doc/vorbisfile/
seekexample.html 54 <p>This example takes its input on stdin which is in 'text' mode by default under Windows; this will corrupt the input data unless set to binary mode. This applies only to Windows.
60 #ifdef _WIN32 /* We need to set stdin to binary mode under Windows */
61 _setmode( _fileno( stdin ), _O_BINARY );
77 if(ov_open_callbacks(stdin,&ov,NULL,-1, OV_CALLBACKS_NOCLOSE)<0){
chainingexample.html 53 <p>This example takes its input on stdin which is in 'text' mode by default under Windows; this will corrupt the input data unless set to binary mode. This applies only to Windows.
59 #ifdef _WIN32 /* We need to set stdin to binary mode under Windows */
60 _setmode( _fileno( stdin ), _O_BINARY );
72 libvorbisfile not to close stdin later during cleanup.<p>
79 if(ov_open_callbacks(stdin,&ov,NULL,-1,OV_CALLBACKS_NOCLOSE)<0){
vorbisfile_example_c.html 45 _setmode( _fileno( stdin ), _O_BINARY );
49 if(ov_open_callbacks(stdin, &vf, NULL, 0, OV_CALLBACKS_NOCLOSE) < 0) {
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
toy.ml 15 let stream = Lexer.lex (Stream.of_channel stdin) in
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
toy.ml 17 let stream = Lexer.lex (Stream.of_channel stdin) in
  /external/llvm/test/CodeGen/PowerPC/
ppcf128-1-opt.ll 2 ; ModuleID = '<stdin>'
  /external/llvm/test/CodeGen/X86/
2009-05-11-tailmerge-crash.ll 3 ; ModuleID = '<stdin>'
2010-05-26-FP_TO_INT-crash.ll 2 ; ModuleID = '<stdin>'
2011-06-01-fildll.ll 2 ; ModuleID = '<stdin>'
  /external/llvm/test/Feature/
sparcld.ll 4 ; ModuleID = '<stdin>'
  /external/valgrind/main/nightly/conf/
cellbuzz-native.conf 23 rm -f STDIN.*
  /external/webkit/Tools/Scripts/webkitpy/common/system/
path.py 87 stdin=subprocess.PIPE,
97 self._child_process.stdin.close()
104 self._child_process.stdin.write("%s\r\n" % path)
105 self._child_process.stdin.flush()
  /frameworks/native/opengl/libs/tools/
glenumsgen 21 while (my $line = <STDIN>) {
  /external/libvorbis/examples/
seeking_example.c 23 #ifdef _WIN32 /* We need the following two to set stdin/stdout to binary */
86 #ifdef _WIN32 /* We need to set stdin/stdout to binary mode. Damn windows. */
87 _setmode( _fileno( stdin ), _O_BINARY );
91 /* open the file/pipe on stdin */
92 if(ov_open_callbacks(stdin,&ov,NULL,-1,OV_CALLBACKS_NOCLOSE)<0){
  /external/libpng/contrib/pngminus/
png2pnm.c 33 #define STDIN 0
62 FILE *fp_rd = stdin;
104 else if (fp_rd == stdin)
132 /* set stdin/stdout if required to binary */
133 if (fp_rd == stdin)
135 setmode (STDIN, O_BINARY);
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
mock_drt.py 122 def main(argv, fs, stdin, stdout, stderr):
127 drt = MockChromiumDRT(options, args, fs, stdin, stdout, stderr)
129 drt = MockDRT(options, args, fs, stdin, stdout, stderr)
177 def __init__(self, options, args, filesystem, stdin, stdout, stderr):
182 self._stdin = stdin
289 sys.exit(main(sys.argv[1:], fs, sys.stdin, sys.stdout, sys.stderr))
  /external/compiler-rt/lib/asan/scripts/
asan_symbolize.py 70 return subprocess.Popen(cmd, stdin=subprocess.PIPE,
82 print >> self.pipe.stdin, symbolizer_input
123 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
130 print >> self.pipe.stdin, offset
153 print >> self.pipe.stdin, '0x%x' % int(offset, 16)
160 stdin=subprocess.PIPE,
170 self.pipe.stdin.close()
334 for line in sys.stdin:
  /external/e2fsprogs/e2fsck/
argv_parse.c 146 while (!feof(stdin)) {
147 if (fgets(buf, sizeof(buf), stdin) == NULL)
  /external/jpeg/
wrjpgcom.c 478 * from stdin; in this case there MUST be an input JPEG file name.
490 /* default input file is stdin */
492 setmode(fileno(stdin), O_BINARY);
495 if ((infile = fdopen(fileno(stdin), READ_BINARY)) == NULL) {
496 fprintf(stderr, "%s: can't open stdin\n", progname);
500 infile = stdin;
536 /* Collect comment text from comment_file or stdin, if necessary */
545 src_file = (comment_file != NULL ? comment_file : stdin);
  /external/llvm/lib/Support/
DataStream.cpp 12 // bitcode. An example implementation of streaming from a file or stdin
52 // Very simple stream backed by a file. Mostly useful for stdin and debugging;

Completed in 587 milliseconds

1 2 34 5 6 7 8 91011>>