Searched refs:output (Results 101 - 125 of 1350) sorted by relevance

1234567891011>>

/external/protobuf/src/google/protobuf/io/
H A Dzero_copy_stream_unittest.cc36 // create an output stream and write some data to it, then create a
42 // the output.
95 // Helper to write an array of data to an output stream.
96 bool WriteToOutput(ZeroCopyOutputStream* output, const void* data, int size);
99 // Write a string to the output stream.
100 void WriteString(ZeroCopyOutputStream* output, const string& str);
104 // Writes some text to the output stream in a particular order. Returns
107 int WriteStuff(ZeroCopyOutputStream* output);
113 int WriteStuffLarge(ZeroCopyOutputStream* output);
130 bool IoTest::WriteToOutput(ZeroCopyOutputStream* output, argument
193 WriteString(ZeroCopyOutputStream* output, const string& str) argument
204 WriteStuff(ZeroCopyOutputStream* output) argument
236 WriteStuffLarge(ZeroCopyOutputStream* output) argument
[all...]
/external/javassist/sample/preproc/
H A DCompiler.java54 protected BufferedWriter output; field in class:Compiler
76 output = new BufferedWriter(new FileWriter(outputname));
90 CommentSkipper reader = new CommentSkipper(input, output);
92 output.write(c);
104 output.write(c);
107 output.close();
113 output.write(c);
118 output.write(c);
133 output.write(word[i]);
151 output
303 private BufferedWriter output; field in class:CommentSkipper
[all...]
/external/antlr/antlr-3.4/runtime/Python/tests/
H A Dt018llstar.py22 output = parser.output.getvalue()
24 outputPath = os.path.splitext(__file__)[0] + '.output'
27 success = (output == testOutput)
30 r = d.compare(output.splitlines(1), testOutput.splitlines(1))
H A Dt020fuzzy.py25 output = lexer.output.getvalue()
27 outputPath = os.path.splitext(__file__)[0] + '.output'
30 success = (output == testOutput)
33 r = d.compare(output.splitlines(1), testOutput.splitlines(1))
/external/chromium/base/
H A Dbase64.cc11 bool Base64Encode(const std::string& input, std::string* output) { argument
22 output->swap(temp);
26 bool Base64Decode(const std::string& input, std::string* output) { argument
37 output->swap(temp);
H A Dtracked.cc30 std::string* output) const {
31 base::StringAppendF(output, "%s[%d] ",
36 WriteFunctionName(output);
37 output->push_back(' ');
41 void Location::WriteFunctionName(std::string* output) const {
47 output->append("<");
51 output->append(">");
55 output->push_back(*p);
H A Dutf_string_conversion_utils.h33 // Reads a UTF-8 stream, placing the next code point into the given output
63 size_t WriteUnicodeCharacter(uint32 code_point, std::string* output);
67 size_t WriteUnicodeCharacter(uint32 code_point, string16* output);
72 inline size_t WriteUnicodeCharacter(uint32 code_point, std::wstring* output) { argument
74 output->push_back(code_point);
81 // Guesses the length of the output in UTF-8 in bytes, clears that output
86 void PrepareForUTF8Output(const CHAR* src, size_t src_len, std::string* output);
88 // Prepares an output buffer (containing either UTF-16 or -32 data) given some
91 void PrepareForUTF16Or32Output(const char* src, size_t src_len, STRING* output);
[all...]
H A Dutf_string_conversions.h18 // do the best it can and put the result in the output buffer. The versions that
22 std::string* output);
24 BASE_API bool UTF8ToWide(const char* src, size_t src_len, std::wstring* output);
27 BASE_API bool WideToUTF16(const wchar_t* src, size_t src_len, string16* output);
30 std::wstring* output);
33 BASE_API bool UTF8ToUTF16(const char* src, size_t src_len, string16* output);
36 std::string* output);
/external/chromium/chrome/browser/ui/webui/
H A Dweb_ui_util.cc16 std::vector<unsigned char> output; local
17 gfx::PNGCodec::EncodeBGRASkBitmap(bitmap, false, &output);
19 str_url.insert(str_url.end(), output.begin(), output.end());
/external/chromium/crypto/
H A Dsha2.h22 // 'len' bytes of the hash in the output buffer 'output'. If 'len' > 32,
23 // only 32 bytes (the full hash) are stored in the 'output' buffer.
25 void* output, size_t len);
H A Dsecure_hash_default.cc28 virtual void Finish(void* output, size_t len) { argument
29 SHA256_End(&ctx_, static_cast<unsigned char*>(output), NULL,
/external/valgrind/main/nightly/conf/
H A Dcellbuzz-cross.conf17 rm -f regtest-output.txt
18 jobid=`echo "{ cd $PWD && perl tests/vg_regtest --all; } >& $PWD/regtest-output.txt" | qsub`
24 cat regtest-output.txt
H A Dcellbuzz-native.conf15 rm -f cmd-output.txt done
16 jobid=`echo "{ cd $PWD && eval \"$*\"; } >& $PWD/cmd-output.txt" | qsub -m n`
22 cat cmd-output.txt
/external/webkit/Source/WebCore/webaudio/
H A DAudioNode.idl33 [Custom] void connect(in AudioNode destination, in unsigned long output, in unsigned long input)
36 [Custom] void disconnect(in unsigned long output)
/external/libvpx/vp8/encoder/
H A Ddct.c14 void vp8_short_fdct4x4_c(short *input, short *output, int pitch) argument
19 short *op = output;
38 ip = output;
39 op = output;
58 void vp8_short_fdct8x4_c(short *input, short *output, int pitch) argument
60 vp8_short_fdct4x4_c(input, output, pitch);
61 vp8_short_fdct4x4_c(input + 4, output + 16, pitch);
64 void vp8_short_walsh4x4_c(short *input, short *output, int pitch) argument
70 short *op = output;
88 ip = output;
[all...]
/external/apache-harmony/nio_char/src/test/java/tests/api/java/nio/charset/
H A DAbstractCharsetTestCase.java139 protected void internalTestEncode(String input, byte[] output) { argument
143 while (bb.hasRemaining() && i < output.length) {
144 assertEquals(output[i], bb.get());
148 assertEquals(output.length, i);
159 protected void internalTestDecode(byte[] input, char[] output) { argument
163 while (chb.hasRemaining() && i < output.length) {
164 assertEquals(output[i], chb.get());
168 assertEquals(output.length, i);
/external/libvpx/vp8/decoder/
H A Ddequantize.c17 extern void vp8_short_idct4x4llm_c(short *input, short *output, int pitch) ;
18 extern void vp8_short_idct4x4llm_1_c(short *input, short *output, int pitch);
37 short output[16]; local
38 short *diff_ptr = output;
48 vp8_short_idct4x4llm_c(input, output, 4 << 1);
78 short output[16]; local
79 short *diff_ptr = output;
90 vp8_short_idct4x4llm_c(input, output, 4 << 1);
/external/llvm/test/MC/AsmParser/
H A Ddirective_loc.s2 # FIXME: Actually test the output.
/external/regex-re2/
H A Druntests11 echo FAIL';' output in $i.log
/external/srtp/crypto/include/
H A Dsha1.h61 * sha1(&ctx, msg, len, output) hashes the len octets starting at msg
63 * output
68 sha1(const uint8_t *message, int octets_in_msg, uint32_t output[5]);
76 * sha1_final(&ctx, output) performs the final processing of the SHA1
77 * context and writes the result to the 20 octets at output
88 sha1_final(sha1_ctx_t *ctx, uint32_t output[5]);
/external/webkit/Source/WebCore/
H A Dmake-export-file-generator50 File.open(output_file, "w") do |output|
53 output << renderer.result(binding)
57 STDERR.puts "Wrote output to #{output_file}"
/external/chromium/chrome/common/
H A Dbzip2_unittest.cc23 char output[256]; local
25 memset(output, 0, arraysize(output));
39 stream.next_out = output;
40 stream.avail_out = arraysize(output);
58 stream.next_in = output;
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/
H A DDebug.java26 public final static void print8x8(int[] output) { argument
30 System.out.printf("%3d, ", output[i]);
37 public final static void print8x8(short[] output) { argument
41 System.out.printf("%3d, ", output[i]);
48 public final static void print8x8(ShortBuffer output) { argument
51 System.out.printf("%3d, ", output.get());
/external/proguard/src/proguard/
H A DClassPathEntry.java30 * an input entry or an output entry. Optional filters can be specified for the
38 private boolean output; field in class:ClassPathEntry
52 this.output = isOutput;
86 return output;
90 public void setOutput(boolean output) argument
92 this.output = output;
/external/smali/util/src/main/java/org/jf/util/
H A DConsoleUtil.java57 String output = attemptCommand(new String[]{"sh", "-c", "stty size < /dev/tty"});
58 if (output == null) {
62 String[] vals = output.split(" ");
70 String output = attemptCommand(new String[]{"mode", "con"});
71 if (output == null) {
76 Matcher m = pattern.matcher(output);

Completed in 9722 milliseconds

1234567891011>>