HomeSort by relevance Sort by last modified time
    Searched defs:output (Results 1 - 25 of 4809) 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/antlr-3.4/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/python/cpython2/Demo/scripts/
pi.py 22 output(d)
26 def output(d): function
29 # Flush so the output is seen immediately
  /toolchain/binutils/binutils-2.27/libiberty/
xmemdup.c 37 PTR output = xmalloc (alloc_size); local
39 memset ((char *) output + copy_size, 0, alloc_size - copy_size);
40 return (PTR) memcpy (output, input, copy_size);
  /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");
  /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/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 49 Proto output; local
52 GenerateProto(input, &output);
54 EXPECT_EQ(output.name, "TheSnakeCaseNameFtraceEvent");
  /external/swiftshader/src/OpenGL/common/
debug.cpp 30 void output(const char *format, va_list vararg) function in namespace:es
35 static void output(const char *format, va_list vararg)
57 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/tensorflow/tensorflow/core/kernels/
ops_testutil_test.cc 46 Tensor* output = GetOutput(0); local
47 EXPECT_EQ(output->dtype(), DT_RESOURCE);
  /external/tensorflow/tensorflow/user_ops/
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/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/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...]
  /system/tpm/attestation/common/
print_common_proto.cc 89 std::string output = local
93 output += indent + " quote: ";
95 &output, "%s",
97 output += "\n";
100 output += indent + " quoted_data: ";
102 &output, "%s",
105 output += "\n";
108 output += indent + " quoted_pcr_value: ";
109 base::StringAppendF(&output, "%s",
113 output += "\n"
134 std::string output = local
186 std::string output = local
215 std::string output = local
    [all...]
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...]
  /system/tpm/tpm_manager/common/
print_tpm_manager_proto.cc 130 std::string output = local
134 output += indent + " index: ";
135 base::StringAppendF(&output, "%u (0x%08X)", value.index(), value.index());
136 output += "\n";
139 output += indent + " policy: ";
141 &output, "%s",
143 output += "\n";
146 output += indent + " world_read_allowed: ";
147 base::StringAppendF(&output, "%s",
149 output += "\n"
179 std::string output = local
236 std::string output = local
285 std::string output = local
306 std::string output = local
325 std::string output = local
346 std::string output = local
386 std::string output = local
407 std::string output = local
440 std::string output = local
468 std::string output = local
511 std::string output = local
532 std::string output = local
546 std::string output = local
576 std::string output = local
595 std::string output = local
650 std::string output = local
664 std::string output = local
730 std::string output = local
744 std::string output = local
766 std::string output = local
789 std::string output = local
    [all...]
  /tools/loganalysis/tests/src/com/android/loganalysis/item/
TopItemTest.java 36 JSONObject output = new JSONObject(item.toJson().toString()); local
38 assertTrue(output.has(TopItem.TEXT));
39 assertEquals("User 20%, System 20%, IOW 5%, IRQ 3%", output.get(TopItem.TEXT));
  /external/ImageMagick/Magick++/tests/
geometry.cpp 44 string output=geometry; local
45 if (output != input)
49 << " Output " << output << " is not the same as " << input

Completed in 531 milliseconds

1 2 3 4 5 6 7 8 91011>>