Searched defs:output (Results 1 - 25 of 548) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
H A Dll-star.rb12 @init { @output = StringIO.new() }
14 def output method in class:TestLLStarParser
15 @output.string
35 { @output.puts( $functionHeader.name + " is a declaration") }
37 { @output.puts( $functionHeader.name + " is a definition") }
137 parser.output.should == <<-'END'.fixed_indent( 0 )
/external/chromium/base/
H A Dsha1_unittest.cc22 std::string output = base::SHA1HashString(input); local
24 EXPECT_EQ(expected[i], output[i] & 0xFF);
38 std::string output = base::SHA1HashString(input); local
40 EXPECT_EQ(expected[i], output[i] & 0xFF);
53 std::string output = base::SHA1HashString(input); local
55 EXPECT_EQ(expected[i], output[i] & 0xFF);
61 unsigned char output[base::SHA1_LENGTH]; local
70 input.length(), output); local
72 EXPECT_EQ(expected[i], output[i]);
79 unsigned char output[bas local
88 input.length(), output); local
96 unsigned char output[base::SHA1_LENGTH]; local
105 input.length(), output); local
[all...]
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 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);
/external/libvpx/vp8/encoder/arm/
H A Ddct_arm.c16 void vp8_fast_fdct8x4_armv6(short *input, short *output, int pitch) argument
18 vp8_fast_fdct4x4_armv6(input, output, pitch);
19 vp8_fast_fdct4x4_armv6(input + 4, output + 16, pitch);
/external/valgrind/main/none/tests/s390x/
H A Dlam_stam.c5 char output[44]; variable
14 "larl 2,output\n\t"
18 write(1, output, sizeof output);
/external/chromium/crypto/
H A Dsha2.cc13 void SHA256HashString(const std::string& str, void* output, size_t len) { argument
16 ctx->Finish(output, len);
20 std::string output(SHA256_LENGTH, 0);
21 SHA256HashString(str, string_as_array(&output), output.size());
22 return output;
/external/llvm/utils/
H A DDSAclean.py18 output = open(sys.argv[2], 'w') variable
28 output.write(buffer)
32 output.close()
/external/ppp/pppd/plugins/radius/
H A Dmd5.c6 void rc_md5_calc (unsigned char *output, unsigned char *input, unsigned int inlen) argument
12 MD5_Final (output, &context);
/external/stlport/test/unit/
H A Dmodulus_test.cpp33 int output [4]; local
35 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, modulus<int>());
36 CPPUNIT_ASSERT(output[0]==2);
37 CPPUNIT_ASSERT(output[1]==0);
38 CPPUNIT_ASSERT(output[2]==10);
39 CPPUNIT_ASSERT(output[3]==2);
H A Dneq_test.cpp35 int output[3]; local
36 transform((int*)input, (int*)input + 3, (int*)output, negate<int>());
38 CPPUNIT_ASSERT(output[0]==-1);
39 CPPUNIT_ASSERT(output[1]==-2);
40 CPPUNIT_ASSERT(output[2]==-3);
47 int output [4]; local
48 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, not_equal_to<int>());
50 CPPUNIT_ASSERT(output[0]==0);
51 CPPUNIT_ASSERT(output[1]==1);
52 CPPUNIT_ASSERT(output[
[all...]
H A Dplusminus_test.cpp45 int output [4]; local
47 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, minus<int>());
48 CPPUNIT_ASSERT(output[0]==0);
49 CPPUNIT_ASSERT(output[1]==1);
50 CPPUNIT_ASSERT(output[2]==-1);
51 CPPUNIT_ASSERT(output[3]==5);
/external/chromium/net/test/
H A Dpython_utils_unittest.cc51 // Run a python command to print a string and make sure the output is what
58 std::string output; local
59 EXPECT_TRUE(base::GetAppOutput(cmd_line, &output));
60 TrimWhitespace(output, TRIM_TRAILING, &output);
61 EXPECT_EQ(input, output);
/external/icu4c/i18n/
H A Dstrrepl.h27 * A replacer that produces static text as its output. The text may
43 UnicodeString output; member in class:StringReplacer
65 * Object that translates stand-in characters in 'output' to
73 * Construct a StringReplacer that sets the emits the given output
88 * Construct a StringReplacer that sets the emits the given output
/external/qemu/distrib/sdl-1.2.15/src/audio/disk/
H A DSDL_diskaudio.h35 SDL_RWops *output; member in struct:SDL_PrivateAudioData
/external/chromium/chrome/browser/
H A Dbrowser_about_handler.h44 // to the tcmalloc output collected for each process.
54 // Records the output for a specified header string.
55 void SetOutput(const std::string& header, const std::string& output) { argument
56 outputs_[header] = output;
59 // Callback for output returned from renderer processes. Adds
60 // the output for a canonical renderer header string that
62 void RendererCallback(base::ProcessId pid, const std::string& output) { argument
63 SetOutput(StringPrintf("Renderer PID %d", static_cast<int>(pid)), output);
79 const std::string& output);
/external/chromium/chrome/browser/password_manager/
H A Dencryptor_win.cc35 DATA_BLOB output; local
37 0, &output);
42 ciphertext->assign(reinterpret_cast<std::string::value_type*>(output.pbData),
43 output.cbData);
45 LocalFree(output.pbData);
56 DATA_BLOB output; local
58 0, &output);
62 plaintext->assign(reinterpret_cast<char*>(output.pbData), output.cbData);
63 LocalFree(output
[all...]
/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/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/chromium/googleurl/src/
H A Durl_test_utils.h60 url_canon::RawCanonOutputW<1024> output; local
61 EXPECT_TRUE(url_canon::ConvertUTF8ToUTF16(src.data(), length, &output));
62 return string16(output.data(), output.length());
68 url_canon::StdStringCanonOutput output(&str);
71 &output));
72 output.Complete();
/external/jsilver/src/com/google/clearsilver/jsilver/
H A DDataLoader.java37 void loadData(final String dataFileName, Data output) throws JSilverBadSyntaxException, argument
/external/jsilver/src/com/google/clearsilver/jsilver/output/
H A DInstanceOutputBufferProvider.java17 package com.google.clearsilver.jsilver.output;
H A DOutputBufferProvider.java17 package com.google.clearsilver.jsilver.output;
20 * Simple Provider interface for the output buffer.
/external/oprofile/libregex/tests/
H A Djava_test.cpp26 void check_result(string const & input, string const & output, argument
29 if (result != output) {
31 << "expect:\n\"" << output << "\"\n"
/external/oprofile/libutil/
H A Dop_libiberty.c32 void * output = xcalloc(1, alloc_size); local
34 memcpy(output, input, copy_size);
36 return output;

Completed in 694 milliseconds

1234567891011>>