Searched defs:output (Results 1 - 25 of 1376) 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_org/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::kSHA1Length]; 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::kSHA1Length]; local
105 input.length(), output); local
[all...]
/external/chromium_org/chrome/browser/resources/
H A Dabout_nacl.js17 var output = $('naclInfoTemplate'); variable
18 jstProcess(input, output);
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/oauth_contacts/
H A Dcontacts.js6 var output = document.getElementById('output'); variable
22 output.appendChild(div);
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/arm/
H A Ddct_arm.c16 void vp8_short_fdct8x4_armv6(short *input, short *output, int pitch) argument
18 vp8_short_fdct4x4_armv6(input, output, pitch);
19 vp8_short_fdct4x4_armv6(input + 4, output + 16, pitch);
/external/chromium_org/third_party/webrtc/base/
H A Dmessagedigest_unittest.cc27 // Test the raw buffer versions of the APIs; also check output buffer size.
28 char output[16]; local
29 EXPECT_EQ(sizeof(output),
30 ComputeDigest(DIGEST_MD5, "abc", 3, output, sizeof(output)));
32 hex_encode(output, sizeof(output)));
34 ComputeDigest(DIGEST_MD5, "abc", 3, output, sizeof(output) - 1));
48 // Test the raw buffer versions of the APIs; also check output buffe
49 char output[20]; local
60 std::string output; local
94 char output[16]; local
134 char output[20]; local
146 std::string output; local
[all...]
/external/libvpx/libvpx/vp8/encoder/arm/
H A Ddct_arm.c16 void vp8_short_fdct8x4_armv6(short *input, short *output, int pitch) argument
18 vp8_short_fdct4x4_armv6(input, output, pitch);
19 vp8_short_fdct4x4_armv6(input + 4, output + 16, pitch);
/external/strace/test/
H A DAndroid.mk55 # document what string should be expected in the output and for them additional
56 # checks is made (*-expected output vars)).
65 childthread-expected-output := 'write(1, "OK\\n",'
66 clone-expected-output := 'write(1, "original\\n",'
67 fork-expected-output := 'write(1, "parent\\n",'
68 leaderkill-expected-output := 'write(1, "OK\\n",'
69 mmap_offset_decode-expected-output := ''
70 mtd-expected-output := ''
71 select-expected-output := ''
72 sfd-expected-output
[all...]
/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_org/chrome/renderer/safe_browsing/
H A Dmurmurhash3_util.cc11 uint32 output; local
12 MurmurHash3_x86_32(str.data(), str.size(), seed, &output);
13 return output;
/external/chromium_org/crypto/
H A Dsha2.cc13 void SHA256HashString(const base::StringPiece& str, void* output, size_t len) { argument
16 ctx->Finish(output, len);
20 std::string output(kSHA256Length, 0);
21 SHA256HashString(str, string_as_array(&output), output.size());
22 return output;
/external/chromium_org/third_party/mesa/
H A Dgenerate_git_sha1.py9 output = sys.argv[1] variable
10 parentdir = os.path.abspath(os.path.join(output, os.pardir))
34 with open(output, "w") as f:
/external/chromium_org/third_party/webrtc/test/testsupport/
H A Dperf_test_unittest.cc22 std::string output; local
23 AppendResult(output, "measurement", "modifier", "trace", 42, "units", false);
24 EXPECT_EQ(expected, output);
25 std::cout << output; local
28 AppendResult(output, "foo", "bar", "baz", 7, "widgets", true);
29 EXPECT_EQ(expected, output);
30 std::cout << output; local
/external/chromium_org/tools/gyp/test/configurations/x64/
H A Dgyptest-x86.py26 output = test.run_dumpbin( variable
28 if machine not in output:
/external/chromium_org/tools/gyp/test/rules-use-built-dependencies/src/
H A Dmain.cc12 const char output[] = "output"; local
13 fwrite(output, 1, sizeof(output) - 1, file);
/external/chromium_org/tools/gyp/test/win/
H A Dgyptest-link-force-symbol-reference.py22 output = test.run_dumpbin( variable
24 if '?x@@YAHXZ:' not in output or '?y@@YAHXZ:' not in output:
H A Dgyptest-link-opt-icf.py24 output = test.run_dumpbin( variable
26 if output.count('similar_function') != 6: # 3 definitions, 3 calls.
30 output = test.run_dumpbin( variable
32 if output.count('similar_function') != 6: # 3 definitions, 3 calls.
36 output = test.run_dumpbin( variable
38 if output.count('similar_function') != 4: # 1 definition, 3 calls.
H A Dgyptest-link-opt-ref.py23 output = test.run_dumpbin( variable
25 if 'unused_function' not in output:
29 output = test.run_dumpbin( variable
31 if 'unused_function' not in output:
35 output = test.run_dumpbin( variable
37 if 'unused_function' in 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);
/external/chromium_org/base/strings/
H A Dutf_string_conversion_utils.h33 // Reads a UTF-8 stream, placing the next code point into the given output
65 std::string* output);
69 BASE_EXPORT size_t WriteUnicodeCharacter(uint32 code_point, string16* output);
74 inline size_t WriteUnicodeCharacter(uint32 code_point, std::wstring* output) { argument
76 output->push_back(code_point);
83 // Guesses the length of the output in UTF-8 in bytes, clears that output
88 void PrepareForUTF8Output(const CHAR* src, size_t src_len, std::string* output);
90 // Prepares an output buffer (containing either UTF-16 or -32 data) given some
93 void PrepareForUTF16Or32Output(const char* src, size_t src_len, STRING* output);
[all...]
/external/chromium_org/chrome/browser/chromeos/system_logs/
H A Dcommand_line_log_source.cc81 std::string output; local
82 base::GetAppOutput(commands[i].second, &output);
83 (*response)[commands[i].first] = output;
/external/chromium_org/chrome/browser/extensions/api/idltest/
H A Didltest_api.cc14 base::ListValue* output = new base::ListValue(); local
17 output->Append(new base::FundamentalValue(input_buffer[i]));
19 return output;
40 BinaryValue* output = local
42 SetResult(output);
/external/chromium_org/chrome/browser/task_profiler/
H A Dauto_tracking.cc12 TaskProfilerDataSerializer output; local
13 output.WriteToFile(output_file_path_);

Completed in 3402 milliseconds

1234567891011>>