HomeSort by relevance Sort by last modified time
    Searched full:output (Results 101 - 125 of 14177) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/llvm/utils/
test_debuginfo.pl 12 # the debugger output is checked, using FileCheck, to validate
24 my $output_file = "$output_dir/$input_filename.gdb.output";
29 open(OUTPUT, ">$debugger_script_file");
36 print OUTPUT "$s";
39 print OUTPUT "\n";
40 print OUTPUT "quit\n";
42 close(OUTPUT);
51 # run debugger and capture output.
54 # validate output.
  /external/libvpx/libvpx/vp8/encoder/arm/
dct_arm.c 16 void vp8_short_fdct8x4_armv6(short *input, short *output, int pitch)
18 vp8_short_fdct4x4_armv6(input, output, pitch);
19 vp8_short_fdct4x4_armv6(input + 4, output + 16, pitch);
  /external/llvm/utils/lit/lit/
LitTestCase.py 24 tr, output = self._test.config.test_format.execute(
28 raise UnresolvedError(output)
30 self.fail(output)
  /external/oprofile/libutil/
op_libiberty.c 32 void * output = xcalloc(1, alloc_size); local
34 memcpy(output, input, copy_size);
36 return output;
  /external/qemu/
feature_to_c.sh 22 output=$1
25 if test -z "$output" || test -z "$1"; then
30 if test -e "$output"; then
31 echo "Output file \"$output\" already exists; refusing to overwrite."
62 }' < $input >> $output
65 echo >> $output
66 echo "extern const char *const xml_builtin[][2];" >> $output
67 echo "const char *const xml_builtin[][2] = {" >> $output
72 echo " { \"$basename\", $arrayname }," >> $output
    [all...]
  /external/blktrace/doc/
btt.1 35 [ \-o <\fIoutput name\fR> | \-\-output\-file=<\fIoutput name\fR> ]
72 producing a series of output from the analysis. It will also build .dat
110 This option will output absolute block numbers to three files prefixed
111 by the specified output name:
115 All read block numbers are output, first column is time (seconds), second is
120 All write block numbers are output, first column is time (seconds), second is
125 All block numbers (read and write) are output, first column is time (seconds),
179 The \-I option directs btt to output iostat\-like data to the specified
188 The \-l option allows one to output per\-IO D2C latencies
189 respectively. The supplied argument provides the basis for the output
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/compatibility/
ClearsilverRenderer.java 59 public void render(String templateName, Data data, Appendable output,
77 output.append(cs.render());
87 public void render(String templateName, Data data, Appendable output) throws IOException,
89 render(templateName, data, output, defaultResourceLoader);
94 Appendable output = new StringBuilder(8192); local
95 render(templateName, data, output);
96 return output.toString();
100 public void render(Template template, Data data, Appendable output, ResourceLoader resourceLoader)
107 public void render(Template template, Data data, Appendable output) throws IOException,
109 render(template, data, output, defaultResourceLoader)
114 Appendable output = new StringBuilder(8192); local
127 Appendable output = new StringBuilder(8192); local
    [all...]
  /external/protobuf/gtest/test/
gtest_help_test.py 64 FLAG_PREFIX + r'output=.*' +
74 the exit code and the text output as a tuple.
84 return child.exit_code, child.output
94 exit_code, output = RunWithFlag(flag)
96 self.assert_(HELP_REGEX.search(output), output)
98 self.assert_(CATCH_EXCEPTIONS_FLAG in output, output)
99 self.assert_(DEATH_TEST_STYLE_FLAG not in output, output)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemTextLiteral.java 79 * Set the characters that will be output to the result tree..
81 * @param v Array of characters that will be output to the result tree
89 * Get the characters that will be output to the result tree..
91 * @return Array of characters that will be output to the result tree
122 * Set the "disable-output-escaping" attribute.
123 * Normally, the xml output method escapes & and < (and
125 * This ensures that the output is well-formed XML. However,
126 * it is sometimes convenient to be able to produce output
128 * example, the output may include ill-formed sections
131 * XSLT provides a mechanism for disabling output escaping
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
MediaPlayerStressTest.java 70 //Test result output file
73 private void writeTestOutput(String filename, Writer output) throws Exception{
74 output.write("File Name: " + filename);
75 output.write(" Complete: " + CodecTest.onCompleteSuccess);
76 output.write(" Error: " + CodecTest.mPlaybackError);
77 output.write(" Unknown Info: " + CodecTest.mMediaInfoUnknownCount);
78 output.write(" Track Lagging: " + CodecTest.mMediaInfoVideoTrackLaggingCount);
79 output.write(" Bad Interleaving: " + CodecTest.mMediaInfoBadInterleavingCount);
80 output.write(" Not Seekable: " + CodecTest.mMediaInfoNotSeekableCount);
81 output.write(" Info Meta data update: " + CodecTest.mMediaInfoMetdataUpdateCount)
117 Writer output = new BufferedWriter(new FileWriter(playbackOutput, true)); local
    [all...]
  /frameworks/ex/common/tools/
make-iana-tld-pattern.py 42 output = ' ';
46 output += '+ "'
48 output += '"('
50 output += '+ "|'
53 output += '('
56 output += '?:'
61 output += '|'
65 output += '\\\\' # escape the '-' character.
66 output += letter
69 output += '|
    [all...]
  /external/linux-tools-perf/
Makefile 2 OUTPUT := $(O)/
10 ifneq ($(OUTPUT),)
11 # check that the output directory actually exists
12 OUTDIR := $(shell cd $(OUTPUT) && /bin/pwd)
13 $(if $(OUTDIR),, $(error output directory "$(OUTPUT)" does not exist))
34 $(OUTPUT)PERF-VERSION-FILE: .FORCE-PERF-VERSION-FILE
35 @$(SHELL_PATH) util/PERF-VERSION-GEN $(OUTPUT)
36 -include $(OUTPUT)PERF-VERSION-FILE
182 $(OUTPUT)python/perf.so: $(PYRF_OBJS
    [all...]
  /cts/tests/tests/mediastress/src/android/mediastress/cts/
MediaPlayerStressTest.java 76 private void writeTestOutput(String filename, Writer output) throws Exception{
77 output.write("File Name: " + filename);
78 output.write(" Complete: " + CodecTest.mOnCompleteSuccess);
79 output.write(" Error: " + CodecTest.mPlaybackError);
80 output.write(" Unknown Info: " + CodecTest.mMediaInfoUnknownCount);
81 output.write(" Track Lagging: " + CodecTest.mMediaInfoVideoTrackLaggingCount);
82 output.write(" Bad Interleaving: " + CodecTest.mMediaInfoBadInterleavingCount);
83 output.write(" Not Seekable: " + CodecTest.mMediaInfoNotSeekableCount);
84 output.write(" Info Meta data update: " + CodecTest.mMediaInfoMetdataUpdateCount);
85 output.write("\n")
127 Writer output = new BufferedWriter(new FileWriter(playbackOutput, true)); local
    [all...]
  /dalvik/dx/tests/118-find-usages/
info.txt 3 The expected output assumes this bug has not yet been fixed: http://b/336628
  /external/antlr/antlr-3.4/antlr-ant/main/antlr3-task/
simplecTreeParser.zip 
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t049treeparsera.g 4 output=AST;
t049treeparserb.g 4 output=AST;
t049treeparserf.g 4 output=AST;
t051treeRewriteASTa.g 4 output=AST;
t051treeRewriteASTaWalker.g 5 output=AST;
t051treeRewriteASTac.g 4 output=AST;
t051treeRewriteASTacWalker.g 5 output=AST;
t051treeRewriteASTb.g 4 output=AST;
t051treeRewriteASTbWalker.g 5 output=AST;
t051treeRewriteASTc.g 4 output=AST;

Completed in 9606 milliseconds

1 2 3 45 6 7 8 91011>>