HomeSort by relevance Sort by last modified time
    Searched refs:output (Results 1 - 25 of 8267) 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/curl/.github/
ISSUE_TEMPLATE 7 [curl -V output perhaps?]
  /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/bison/src/
output.h 0 /* Output the generated parsing program for bison,
24 /* Output the parsing tables and the parser code to FTABLE. */
25 void output (void);
  /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...]
  /art/runtime/
indenter_test.cc 23 std::ostringstream output; local
24 Indenter indent_filter(output.rdbuf(), '\t', 2);
27 EXPECT_EQ(output.str(), "");
30 EXPECT_EQ(output.str(), "\t\thello");
33 EXPECT_EQ(output.str(), "\t\thello\n\t\thello again");
36 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/tcpdump/tests/
TESTonce 6 print "Usage: TESTonce name input output options\n";
12 $output=$ARGV[2];
18 $r = system "..\\windump -n -r $input $options 2>NUL | sed 's/\\r//' | tee NEW/$output | diff $output - >DIFF/$output.diff";
24 $r = system "../tcpdump 2>/dev/null -n -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 << 1;
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...]
  /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
  /frameworks/base/core/tests/coretests/src/com/android/internal/http/multipart/
MultipartTest.java 60 StringBuffer output = new StringBuffer(); local
62 output.append("--");
63 output.append(boundry);
64 output.append(CRLF);
66 output.append("Content-Disposition: form-data; name=\"stringpart\"");
67 output.append(CRLF);
68 output.append("Content-Type: text/plain; charset=US-ASCII");
69 output.append(CRLF);
70 output.append("Content-Transfer-Encoding: 8bit");
71 output.append(CRLF)
    [all...]
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/resources/
ResourcesTest.java 29 private MemoryMultiReportOutput output; field in class:ResourcesTest
37 output = new MemoryMultiReportOutput();
38 root = new ReportOutputFolder(output);
53 output.assertFile(".resources/branchfc.gif");
54 output.assertFile(".resources/branchnc.gif");
55 output.assertFile(".resources/branchpc.gif");
56 output.assertFile(".resources/bundle.gif");
57 output.assertFile(".resources/class.gif");
58 output.assertFile(".resources/down.gif");
59 output.assertFile(".resources/greenbar.gif")
    [all...]
  /libcore/tools/docs/crypto/
format_supported_algorithm_table.py 37 parser = argparse.ArgumentParser(description='Output algorithm support HTML tables')
45 output = []
48 output.append('<h2 id="SupportedAlgorithms">Supported Algorithms</h2>')
49 output.append('')
50 output.append('<ul>')
53 output.append(' <li><a href="#Supported{name}">'
55 output.append('</ul>')
106 output.append('<h3 id="Supported{name}">{name}</h3>'.format(**category))
107 output.append('<table>')
108 output.append(' <thead>'
    [all...]
  /external/libvpx/libvpx/test/
vpxenc.sh 120 local readonly output="${VPX_TEST_OUTPUT_DIR}/vp8.ivf"
125 --output="${output}"
127 if [ ! -e "${output}" ]; then
128 elog "Output file does not exist."
137 local readonly output="${VPX_TEST_OUTPUT_DIR}/vp8.webm"
141 --output="${output}"
143 if [ ! -e "${output}" ]; then
144 elog "Output file does not exist.
    [all...]
  /external/autotest/client/site_tests/platform_CryptohomeTPMReOwn/
platform_CryptohomeTPMReOwn.py 29 output = self.__run_cmd("/usr/sbin/tpm_clear --force")
32 output = self.__run_cmd("/usr/bin/tpm_init_temp_fix")
35 output = self.__run_cmd("/usr/sbin/cryptohome --action=remove " +
39 output = self.__run_cmd("/usr/sbin/cryptohome " +
41 if (output.find("TPM Ready: true") >= 0):
49 output = self.__run_cmd("/usr/sbin/cryptohome --action=mount" +
52 if (output.find("Mount succeeded") < 0):
56 output = self.__run_cmd("echo TEST_CONTENT > " +
58 output = self.__run_cmd("/usr/sbin/cryptohome --action=unmount")
59 output = self.__run_cmd("/usr/sbin/cryptohome "
    [all...]
  /external/webrtc/webrtc/common_audio/
fir_filter_unittest.cc 31 const float* output,
34 output,
42 float output[kInputLength]; local
45 filter->Filter(kInput, kInputLength, output);
47 VerifyOutput(kInput, output, kInputLength);
52 float output[kInputLength]; local
55 filter->Filter(kInput, kInputLength, output);
57 EXPECT_FLOAT_EQ(5.f, output[0]);
58 EXPECT_FLOAT_EQ(20.f, output[3]);
59 EXPECT_FLOAT_EQ(25.f, output[4])
65 float output[kInputLength]; local
78 float output[kInputLength]; local
91 float output[kInputLength]; local
108 float output[kInputLength]; local
164 float output[kConstantInputLength]; local
183 float output[kHighFrequencyInputLength]; local
194 float output[kCoefficientsLength]; local
    [all...]

Completed in 1466 milliseconds

1 2 3 4 5 6 7 8 91011>>