HomeSort by relevance Sort by last modified time
    Searched refs:stdout (Results 26 - 50 of 2227) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/tools/gyp/test/multiple-targets/
gyptest-all.py 30 test.run_built_executable('prog1', stdout=expect1, chdir='relocate/src')
31 test.run_built_executable('prog2', stdout=expect2, chdir='relocate/src')
gyptest-default.py 30 test.run_built_executable('prog1', stdout=expect1, chdir='relocate/src')
31 test.run_built_executable('prog2', stdout=expect2, chdir='relocate/src')
  /external/chromium_org/tools/gyp/test/same-source-file-name/
gyptest-all.py 31 test.run_built_executable('prog1', chdir='relocate/src', stdout=expect1)
32 test.run_built_executable('prog2', chdir='relocate/src', stdout=expect2)
gyptest-default.py 31 test.run_built_executable('prog1', chdir='relocate/src', stdout=expect1)
32 test.run_built_executable('prog2', chdir='relocate/src', stdout=expect2)
  /external/chromium_org/tools/gyp/test/sibling/
gyptest-all.py 31 stdout="Hello from prog1.c\n") variable
37 stdout="Hello from prog2.c\n") variable
gyptest-relocate.py 33 stdout="Hello from prog1.c\n") variable
39 stdout="Hello from prog2.c\n") variable
  /external/chromium_org/tools/gyp/test/subdirectory/
gyptest-SYMROOT-all.py 30 stdout="Hello from prog1.c\n", variable
33 stdout="Hello from prog2.c\n", variable
gyptest-top-all.py 32 stdout="Hello from prog1.c\n", variable
41 stdout="Hello from prog2.c\n") variable
gyptest-top-default.py 32 stdout="Hello from prog1.c\n", variable
41 stdout="Hello from prog2.c\n") variable
  /bionic/libc/stdio/
vprintf.c 39 return (vfprintf(stdout, fmt, ap));
  /external/chromium_org/tools/gyp/test/external-cross-compile/src/
program.cc 14 fwrite(data, 1, sizeof(data), stdout);
  /external/libexif/test/
test-mnote.c 35 fprintf (stdout, "Byte order: %s\n",
38 fprintf (stdout, "Parsing maker note...\n");
46 fprintf (stdout, "Increasing ref-count...\n");
49 fprintf (stdout, "Decreasing ref-count...\n");
52 fprintf (stdout, "Counting entries...\n");
54 fprintf (stdout, "Found %i entries.\n", c);
56 fprintf (stdout, "Dumping entry number %i...\n", i);
57 fprintf (stdout, " Name: '%s'\n",
59 fprintf (stdout, " Title: '%s'\n",
61 fprintf (stdout, " Description: '%s'\n"
    [all...]
  /external/chromium_org/tools/gyp/test/win/
gyptest-link-ltcg.py 28 test.must_not_contain_any_line(test.stdout(), [INLINE_MARKER])
32 test.must_contain_any_line(test.stdout(), ['Generating code'])
34 test.must_contain_any_line(test.stdout(), [INLINE_MARKER])
  /external/chromium_org/tools/
diagnose-me.py 25 proc = subprocess.Popen(['/usr/bin/ld', '-v'], stdout=subprocess.PIPE)
26 stdout = proc.communicate()[0]
27 if 'GNU gold' in stdout:
36 proc = subprocess.Popen(['which', '-a', 'ld'], stdout=subprocess.PIPE)
37 stdout = proc.communicate()[0]
38 instances = stdout.split()
72 proc = subprocess.Popen(['which', 'ninja'], stdout=subprocess.PIPE)
73 stdout = proc.communicate()[0]
74 if not 'depot_tools' in stdout:
76 + " " + stdout
    [all...]
  /external/chromium_org/tools/gyp/test/make/
gyptest-noload.py 26 stdout='Hello from shared.c.\n') variable
32 stdout='Hello from shared.c.\n') variable
36 stdout='Hello from shared.c.\n') variable
44 stdout='Hello from shared.c.\n') variable
55 stdout='Hello from shared.c.\n') variable
  /external/antlr/antlr-3.4/runtime/Python/tests/
t054main.py 38 stdout = StringIO()
65 stdout = StringIO()
70 stdout=stdout
73 self.failUnlessEqual(len(stdout.getvalue().splitlines()), 3)
90 stdout = StringIO()
96 stdout=stdout
99 self.failUnlessEqual(len(stdout.getvalue().splitlines()), 3)
116 stdout = StringIO(
    [all...]
  /hardware/ti/omap3/dspbridge/dspexec/
dspexec.c 115 fprintf(stdout, "Verbose mode: ON\n");
121 fprintf(stdout, "Not supported \n");
172 fprintf(stdout,"DSPProcessor_Start succeeded.\n");
178 fprintf(stdout,"Hit \"return\" to stop DSP and"
183 fprintf(stdout,"%s\n",traceBuf);
203 fprintf(stdout, "Hit any key to terminate cexec.\n");
215 fprintf(stdout, "Usage: cexec [options] <dsp program>\n");
216 fprintf(stdout, "\t[optional arguments]:\n");
217 fprintf(stdout, "\t-?: Display cexec usage\n");
218 fprintf(stdout, "\t-v: Verbose mode\n")
    [all...]
  /external/dropbear/libtomcrypt/demos/
test.c 20 printf("\nstore_test...."); fflush(stdout); x = store_test(); printf(x ? "failed" : "passed");if (x) exit(EXIT_FAILURE);
21 printf("\ncipher_test..."); fflush(stdout); x = cipher_hash_test(); printf(x ? "failed" : "passed");if (x) exit(EXIT_FAILURE);
22 printf("\nmodes_test...."); fflush(stdout); x = modes_test(); printf(x ? "failed" : "passed");if (x) exit(EXIT_FAILURE);
23 printf("\nder_test......"); fflush(stdout); x = der_tests(); printf(x ? "failed" : "passed");if (x) exit(EXIT_FAILURE);
24 printf("\nmac_test......"); fflush(stdout); x = mac_test(); printf(x ? "failed" : "passed");if (x) exit(EXIT_FAILURE);
25 printf("\npkcs_1_test..."); fflush(stdout); x = pkcs_1_test(); printf(x ? "failed" : "passed");if (x) exit(EXIT_FAILURE);
26 printf("\nrsa_test......"); fflush(stdout); x = rsa_test(); printf(x ? "failed" : "passed");if (x) exit(EXIT_FAILURE);
27 printf("\necc_test......"); fflush(stdout); x = ecc_tests(); printf(x ? "failed" : "passed");if (x) exit(EXIT_FAILURE);
28 printf("\ndsa_test......"); fflush(stdout); x = dsa_test(); printf(x ? "failed" : "passed");if (x) exit(EXIT_FAILURE);
29 printf("\nkatja_test...."); fflush(stdout); x = katja_test(); printf(x ? "failed" : "passed");if (x) exit(EXIT_FAILURE)
    [all...]
  /hardware/ti/omap3/dspbridge/libbridge/
perfutils.c 44 fprintf(stdout, "FAIL: gettimeofday is failed\n");
63 fprintf(stdout, "LOG: *********BEGIN STATISTICS************"
65 fprintf(stdout, "LOG: MODULE: %s \n", ModuleName);
67 fprintf(stdout, "LOG: BufferSize: 0x%x \n", BufferSize);
69 fprintf(stdout, "LOG: RESULT: %lu\n", totalTimeuSec);
70 fprintf(stdout, "LOG: **********END STATISTICS*************"
  /external/chromium_org/tools/gyp/test/generator-output/
gyptest-top-all.py 44 test.run_built_executable('prog1', chdir=chdir, stdout=expect % 'prog1.c')
48 test.run_built_executable('prog2', chdir=chdir, stdout=expect % 'prog2.c')
52 test.run_built_executable('prog3', chdir=chdir, stdout=expect % 'prog3.c')
  /external/chromium_org/tools/gyp/test/rules/
gyptest-all.py 34 test.run_built_executable('program', chdir=chdir, stdout=expect)
45 test.run_built_executable('program2', chdir=chdir, stdout=expect)
67 test.run_built_executable('program4', chdir=chdir, stdout=expect)
  /bionic/libc/upstream-freebsd/lib/libc/stdio/
puts.c 48 * Write the given string to stdout, appending a newline.
65 FLOCKFILE(stdout);
66 ORIENT(stdout, -1);
67 retval = __sfvwrite(stdout, &uio) ? EOF : '\n';
68 FUNLOCKFILE(stdout);
  /bootable/recovery/
common.h 28 #define LOGW(...) fprintf(stdout, "W:" __VA_ARGS__)
29 #define LOGI(...) fprintf(stdout, "I:" __VA_ARGS__)
32 #define LOGV(...) fprintf(stdout, "V:" __VA_ARGS__)
33 #define LOGD(...) fprintf(stdout, "D:" __VA_ARGS__)
  /external/chromium_org/build/android/gyp/
ant.py 23 stdout = build_utils.CheckOutput(['ant'] + argv[1:])
30 stdout = stdout.strip().split('\n')
31 for line in stdout:
  /external/chromium_org/tools/gyp/test/build-option/
gyptest-build.py 18 test.run_built_executable('hello', stdout="Hello, world!\n")

Completed in 2323 milliseconds

12 3 4 5 6 7 8 91011>>