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

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/scripts/
pi.py 22 output(d)
26 def output(d): function
29 # Flush so the output is seen immediately
  /external/antlr/runtime/Ruby/test/functional/parser/
ll-star.rb 12 @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/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.relative/
relative.pass.cpp 34 const fs::path output = fs::weakly_canonical(p); local
35 TEST_CHECK(output == std::string(fs::current_path()));
40 const fs::path output = fs::weakly_canonical(p); local
41 TEST_CHECK(output == std::string(fs::current_path()));
46 const fs::path output = fs::weakly_canonical(p); local
47 TEST_CHECK(output == std::string(StaticEnv::File));
52 const fs::path output = fs::weakly_canonical(p); local
53 TEST_CHECK(output == std::string(StaticEnv::Dir));
58 const fs::path output = fs::weakly_canonical(p); local
59 TEST_CHECK(output == std::string(StaticEnv::Dir))
64 const fs::path output = fs::weakly_canonical(p); local
72 const fs::path output = fs::weakly_canonical(p); local
78 const fs::path output = fs::weakly_canonical(p); local
84 const fs::path output = fs::weakly_canonical(p); local
90 const fs::path output = fs::weakly_canonical(p); local
96 const fs::path output = fs::weakly_canonical(p); local
102 const fs::path output = fs::weakly_canonical(p); local
108 const fs::path output = fs::weakly_canonical(p); local
114 const fs::path output = fs::weakly_canonical(p); local
    [all...]
  /external/python/cpython2/Demo/scripts/
pi.py 22 output(d)
26 def output(d): function
29 # Flush so the output is seen immediately
  /art/libartbase/base/
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");
  /build/blueprint/loadplugins/
loadplugins.go 28 output = flag.String("o", "", "output filename")
53 err = ioutil.WriteFile(*output, buf.Bytes(), 0666)
27 output = flag.String("o", "", "output filename") var
  /build/kati/testcase/
parse_benchcmp.go 39 func output(prog string, args ...string) string { func
78 status := output("git", "status", "-s")
84 curBranch := output("git", "symbolic-ref", "--short", "HEAD")
94 commit := output("git", "log", "--oneline", "-1")
102 commit = output("git", "log", "--oneline", "-1")
  /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");
  /external/dagger2/compiler/src/it/producers-functional-tests/src/main/java/producerstest/monitoring/
MonitoredComponent.java 23 ListenableFuture<String> output(); method in interface:MonitoredComponent
  /external/grpc-grpc/tools/run_tests/sanity/
check_qps_scenario_changes.py 25 output = subprocess.check_output(['git', 'status', '--porcelain']) variable
29 if qps_json_driver_bzl in output or json_run_localhost_bzl in output:
  /external/honggfuzz/examples/badcode/targets/
badcode1.c 4 int output(char * filename) function
34 return output(argv[1]);
  /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...]
sha1_unittest.cc 23 std::string output = base::SHA1HashString(input); local
25 EXPECT_EQ(expected[i], output[i] & 0xFF);
39 std::string output = base::SHA1HashString(input); local
41 EXPECT_EQ(expected[i], output[i] & 0xFF);
54 std::string output = base::SHA1HashString(input); local
56 EXPECT_EQ(expected[i], output[i] & 0xFF);
62 unsigned char output[base::kSHA1Length]; local
71 input.length(), output); local
73 EXPECT_EQ(expected[i], output[i]);
80 unsigned char output[base::kSHA1Length] local
89 input.length(), output); local
97 unsigned char output[base::kSHA1Length]; local
106 input.length(), output); local
    [all...]
  /external/llvm/utils/
DSAclean.py 18 output = open(sys.argv[2], 'w') variable
28 output.write(buffer)
32 output.close()
  /external/perfetto/tools/ftrace_proto_gen/
ftrace_proto_gen_unittest.cc 62 Proto output; local
65 GenerateProto(input, &output);
67 EXPECT_EQ(output.name, "TheSnakeCaseNameFtraceEvent");
  /external/swiftshader/src/OpenGL/common/
debug.cpp 36 static void output(const char *format, va_list vararg) function in namespace:es
41 static void output(const char *format, va_list vararg)
64 output(format, vararg);
  /external/swiftshader/third_party/LLVM/utils/
DSAclean.py 18 output = open(sys.argv[2], 'w') variable
28 output.write(buffer)
32 output.close()
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/
DSAclean.py 18 output = open(sys.argv[2], 'w') variable
28 output.write(buffer)
32 output.close()
  /external/tensorflow/tensorflow/core/kernels/
ops_testutil_test.cc 46 Tensor* output = GetOutput(0); local
47 EXPECT_EQ(output->dtype(), DT_RESOURCE);
  /external/tensorflow/tensorflow/python/kernel_tests/
ackermann_op.cc 24 .Output("ackermann: string")
26 Output a fact about the ackermann function.
34 // Output a scalar string.
38 auto output = output_tensor->scalar<string>(); variable
40 output() = "A(m, 0) == A(m-1, 1)";
  /external/webrtc/webrtc/base/
messagedigest_unittest.cc 27 // 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 buffer size
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/ImageMagick/Magick++/tests/
geometry.cpp 44 string output=geometry; local
45 if (output != input)
49 << " Output " << output << " is not the same as " << input
  /external/google-benchmark/test/
display_aggregates_only_test.cc 11 // We do not care about console output, the normal tests check that already.
20 const std::string output = GetFileReporterOutput(argc, argv); local
22 if (SubstrCnt(output, "\"name\": \"BM_SummaryRepeat/repeats:3") != 6 ||
23 SubstrCnt(output, "\"name\": \"BM_SummaryRepeat/repeats:3\"") != 3 ||
24 SubstrCnt(output, "\"name\": \"BM_SummaryRepeat/repeats:3_mean\"") != 1 ||
25 SubstrCnt(output, "\"name\": \"BM_SummaryRepeat/repeats:3_median\"") !=
27 SubstrCnt(output, "\"name\": \"BM_SummaryRepeat/repeats:3_stddev\"") !=
37 "output:\n";
38 std::cout << output; local
report_aggregates_only_test.cc 11 // We do not care about console output, the normal tests check that already.
20 const std::string output = GetFileReporterOutput(argc, argv); local
22 if (SubstrCnt(output, "\"name\": \"BM_SummaryRepeat/repeats:3") != 3 ||
23 SubstrCnt(output, "\"name\": \"BM_SummaryRepeat/repeats:3_mean\"") != 1 ||
24 SubstrCnt(output, "\"name\": \"BM_SummaryRepeat/repeats:3_median\"") !=
26 SubstrCnt(output, "\"name\": \"BM_SummaryRepeat/repeats:3_stddev\"") !=
33 "output:\n";
34 std::cout << output; local
  /external/libcxx/utils/google-benchmark/test/
display_aggregates_only_test.cc 11 // We do not care about console output, the normal tests check that already.
20 const std::string output = GetFileReporterOutput(argc, argv); local
22 if (SubstrCnt(output, "\"name\": \"BM_SummaryRepeat/repeats:3") != 6 ||
23 SubstrCnt(output, "\"name\": \"BM_SummaryRepeat/repeats:3\"") != 3 ||
24 SubstrCnt(output, "\"name\": \"BM_SummaryRepeat/repeats:3_mean\"") != 1 ||
25 SubstrCnt(output, "\"name\": \"BM_SummaryRepeat/repeats:3_median\"") !=
27 SubstrCnt(output, "\"name\": \"BM_SummaryRepeat/repeats:3_stddev\"") !=
37 "output:\n";
38 std::cout << output; local

Completed in 4193 milliseconds

1 2 3 4 5 6 7 8 91011>>