HomeSort by relevance Sort by last modified time
    Searched refs:output (Results 1 - 25 of 11134) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/none/tests/s390x/
lam_stam.c 5 char output[44]; variable
14 "larl 2,output\n\t"
18 write(1, output, sizeof output);
  /external/google-breakpad/src/testing/test/
gmock_output_test.py 32 """Tests the text output of Google C++ Mocking Framework.
65 def RemoveReportHeaderAndFooter(output):
66 """Removes Google Test result report's header and footer from the output."""
68 output = re.sub(r'.*gtest_main.*\n', '', output)
69 output = re.sub(r'\[.*\d+ tests.*\n', '', output)
70 output = re.sub(r'\[.* test environment .*\n', '', output)
71 output = re.sub(r'\[=+\] \d+ tests .* ran.*', '', output
    [all...]
  /external/googletest/googlemock/test/
gmock_output_test.py 32 """Tests the text output of Google C++ Mocking Framework.
65 def RemoveReportHeaderAndFooter(output):
66 """Removes Google Test result report's header and footer from the output."""
68 output = re.sub(r'.*gtest_main.*\n', '', output)
69 output = re.sub(r'\[.*\d+ tests.*\n', '', output)
70 output = re.sub(r'\[.* test environment .*\n', '', output)
71 output = re.sub(r'\[=+\] \d+ tests .* ran.*', '', output
    [all...]
  /external/v8/testing/gmock/test/
gmock_output_test.py 32 """Tests the text output of Google C++ Mocking Framework.
65 def RemoveReportHeaderAndFooter(output):
66 """Removes Google Test result report's header and footer from the output."""
68 output = re.sub(r'.*gtest_main.*\n', '', output)
69 output = re.sub(r'\[.*\d+ tests.*\n', '', output)
70 output = re.sub(r'\[.* test environment .*\n', '', output)
71 output = re.sub(r'\[=+\] \d+ tests .* ran.*', '', output
    [all...]
  /external/libchrome/base/
base64url_unittest.cc 15 std::string output; local
17 &output);
20 EXPECT_EQ("aGVsbG8_d29ybGQ=", output);
23 Base64UrlEncode("??", Base64UrlEncodePolicy::INCLUDE_PADDING, &output);
24 EXPECT_EQ("Pz8=", output);
26 Base64UrlEncode("", Base64UrlEncodePolicy::INCLUDE_PADDING, &output);
27 EXPECT_EQ("", output);
31 std::string output; local
32 Base64UrlEncode("hello?world", Base64UrlEncodePolicy::OMIT_PADDING, &output);
35 EXPECT_EQ("aGVsbG8_d29ybGQ", output);
46 std::string output; local
66 std::string output; local
80 std::string output; local
92 std::string output; local
101 std::string output; local
    [all...]
  /external/webrtc/webrtc/test/testsupport/
perf_test_unittest.cc 22 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/curl/tests/unit/
unit1601.c 39 unsigned char output[16]; variable
40 unsigned char *testp = output;
41 Curl_md5it(output, (const unsigned char *)"1");
47 Curl_md5it(output, (const unsigned char *)"hello-you-fool");
unit1398.c 35 char output[24]; variable
40 rc = curl_msnprintf(output, 4, "%.*s", width, buf);
42 fail_unless(!strcmp(output, "bug"), "wrong output");
45 rc = curl_msnprintf(output, 4, "%.*s", width, str);
47 fail_unless(!strcmp(output, "bug"), "wrong output");
51 rc = curl_msnprintf(output, 4, "%.*s", width, buf);
53 fail_unless(!strcmp(output, "bu"), "wrong output");
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arc/
relocs-errors.d 1 #error-output: relocs-errors.err
textinsn-errors.d 1 #error-output: textinsn-errors.err
asm-errors-2.d 2 #error-output: asm-errors-2.err
  /art/runtime/
indenter_test.cc 24 std::ostringstream output; local
25 Indenter indent_filter(output.rdbuf(), '\t', 2);
28 EXPECT_EQ(output.str(), "");
31 EXPECT_EQ(output.str(), "\t\thello");
34 EXPECT_EQ(output.str(), "\t\thello\n\t\thello again");
37 EXPECT_EQ(output.str(), "\t\thello\n\t\thello again\n");
  /external/swiftshader/third_party/LLVM/utils/
parseNLT.pl 18 { $output .= "$1 "; $count++; }
22 if ($output and $count > 3)
23 { print "\n$day $mon $year $prefix/$output"; }
24 $output = "";
33 if ($output)
34 { print "\n$day $mon $year $prefix/$output"; $output = ""; }
  /system/tpm/attestation/common/
print_interface_proto.cc 71 std::string output = local
75 output += indent + " key_label: ";
76 base::StringAppendF(&output, "%s", value.key_label().c_str());
77 output += "\n";
80 output += indent + " key_type: ";
81 base::StringAppendF(&output, "%s", GetProtoDebugStringWithIndent(
84 output += "\n";
87 output += indent + " key_usage: ";
88 base::StringAppendF(&output, "%s", GetProtoDebugStringWithIndent(
91 output += "\n"
123 std::string output = local
154 std::string output = local
178 std::string output = local
246 std::string output = local
267 std::string output = local
305 std::string output = local
327 std::string output = local
387 std::string output = local
423 std::string output = local
453 std::string output = local
492 std::string output = local
537 std::string output = local
569 std::string output = local
598 std::string output = local
630 std::string output = local
659 std::string output = local
684 std::string output = local
    [all...]
  /external/strace/tests/
gen_pure_executables.sh 31 Usage: $0 [<input> [<output>]]
34 Deduce output file from <input> unless an <output> is specified.
41 output="$(dirname "$input")/pure_executables.am"
42 [ $# -eq 0 ] || { output="$1"; shift; }
45 exec > "$output"
  /external/strace/tests-m32/
gen_pure_executables.sh 31 Usage: $0 [<input> [<output>]]
34 Deduce output file from <input> unless an <output> is specified.
41 output="$(dirname "$input")/pure_executables.am"
42 [ $# -eq 0 ] || { output="$1"; shift; }
45 exec > "$output"
  /external/strace/tests-mx32/
gen_pure_executables.sh 31 Usage: $0 [<input> [<output>]]
34 Deduce output file from <input> unless an <output> is specified.
41 output="$(dirname "$input")/pure_executables.am"
42 [ $# -eq 0 ] || { output="$1"; shift; }
45 exec > "$output"
  /external/tcpdump/tests/
TESTonce 6 print "Usage: TESTonce name input output options\n";
12 $output=$ARGV[2];
18 $r = system "..\\windump -n -t -r $input $options 2>NUL | sed 's/\\r//' | tee NEW/$output | diff $output - >DIFF/$output.diff";
24 $r = system "../tcpdump 2>/dev/null -n -t -r $input $options >NEW/$output";
27 open(OUTPUT, ">>"."NEW/$output") || die "fail to open $output\n";
28 printf OUTPUT "EXIT CODE %08x\n", $r
    [all...]
  /external/libvpx/libvpx/vpx_dsp/
fwd_txfm.c 15 void vpx_fdct4x4_c(const int16_t *input, tran_low_t *output, int stride) {
70 out = output;
76 for (j = 0; j < 4; ++j) output[j + i * 4] = (output[j + i * 4] + 1) >> 2;
81 void vpx_fdct4x4_1_c(const int16_t *input, tran_low_t *output, int stride) {
87 output[0] = sum * 2;
94 tran_low_t *output = intermediate; local
136 output[0] = (tran_low_t)fdct_round_shift(t0);
137 output[2] = (tran_low_t)fdct_round_shift(t2);
138 output[4] = (tran_low_t)fdct_round_shift(t1)
710 tran_high_t output[32 * 32]; local
737 tran_high_t output[32 * 32]; local
    [all...]
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
ScriptTagModuleWriter.java 26 output.print("const LETag ");
27 output.print(data.getTagLabel(value));
28 output.print(kind);
29 output.print("Tag = ");
30 output.print(data.makeTag(value));
31 output.print("; /* '");
32 output.print(data.getTag(value));
33 output.print("' (");
34 output.print(data.getName(value));
35 output.println(") */")
    [all...]
  /external/perf_data_converter/src/quipper/
run_command_test.cc 15 std::vector<char> output; local
16 EXPECT_EQ(0, RunCommand({"/bin/sh", "-c", "echo 'Hello, world!'"}, &output));
17 string output_str(output.begin(), output.end());
22 std::vector<char> output; local
23 EXPECT_EQ(0, RunCommand({"sh", "-c", "echo 'Hello, world!'"}, &output));
24 string output_str(output.begin(), output.end());
29 std::vector<char> output; local
31 RunCommand({"dd", "if=/dev/zero", "bs=5", "count=4096"}, &output));
43 std::vector<char> output; local
50 std::vector<char> output; local
    [all...]
  /libcore/ojluni/src/main/java/sun/misc/
IOUtils.java 52 byte[] output = {};
57 if (pos >= output.length) { // Only expand when there's no room
58 bytesToRead = Math.min(length - pos, output.length + 1024);
59 if (output.length < pos + bytesToRead) {
60 output = Arrays.copyOf(output, pos + bytesToRead);
63 bytesToRead = output.length - pos;
65 int cc = is.read(output, pos, bytesToRead);
70 if (output.length != pos) {
71 output = Arrays.copyOf(output, pos)
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
DemuxOutputStream.java 17 package org.apache.commons.io.output;
37 * @param output the stream to bind
40 public OutputStream bindStream( OutputStream output )
43 m_streams.set( output );
56 OutputStream output = getStream(); local
57 if( null != output )
59 output.close();
72 OutputStream output = getStream(); local
73 if( null != output )
75 output.flush()
89 OutputStream output = getStream(); local
    [all...]
  /dalvik/dx/tests/133-source-debug-extension/
run 23 dx --dex --output=$test_dex $test_class
27 strings $i | sed -n -e "/SourceDebugExtension/ p" -e "/SMAP/,/23/ p" > $i.output
30 diff $test_class.output $test_dex.output
  /external/desugar/test/java/com/google/devtools/build/android/desugar/
testdata_desugared_jar_test.sh 18 # file. This makes sure that output is deterministic and the resulting Jar
34 # Running as part of blaze test: capture test output
35 output="$TEST_UNDECLARED_OUTPUTS_DIR"
38 output="${tmpdir}"
42 $JAVABASE/bin/jar tf "$1" >"${output}/actual_toc.txt"
44 diff <(sort "$2") <(sort "${output}/actual_toc.txt")

Completed in 1430 milliseconds

1 2 3 4 5 6 7 8 91011>>