HomeSort by relevance Sort by last modified time
    Searched refs:output (Results 101 - 125 of 8267) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/perf/
IPerfScenario.java 23 * @param output
25 public void run(IPerfOutput output) throws Exception;
  /external/libchrome/base/strings/
string_number_conversions.h 65 // setting |*output| to the result of the conversion. Returns true for
67 // - Overflow. |*output| will be set to the maximum value supported
69 // - Underflow. |*output| will be set to the minimum value supported
71 // - Trailing characters in the string after parsing the number. |*output|
73 // - Leading whitespace in the string before parsing the number. |*output| will
76 // |*output| will be set to 0.
77 // - Empty string. |*output| will be set to 0.
78 // WARNING: Will write to |output| even when returning false.
80 BASE_EXPORT bool StringToInt(const StringPiece& input, int* output);
81 BASE_EXPORT bool StringToInt(const StringPiece16& input, int* output);
    [all...]
  /external/libmojo/mojo/public/cpp/bindings/
string_traits_standard.h 16 static void SetToNull(String* output) { *output = nullptr; }
22 static bool Read(StringDataView input, String* output) {
24 result.Swap(output);
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
swap_bytes.h 31 uint16_t* output /* (o) the swapped sequence */
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
ASCCharsetTest.java 42 byte[] output = new byte[] { 97, 98,
45 internalTestEncode(input, output);
55 char[] output = "ab??".toCharArray(); local
56 internalTestDecode(input, output);
ISOCharsetTest.java 41 byte[] output = new byte[] { 97, 98,
44 internalTestEncode(input, output);
54 char[] output = "ab??".toCharArray(); local
55 internalTestDecode(input, output);
  /prebuilts/misc/common/robolectric/
wrapper.sh 4 # output and return value into a file and then process it to later on.
6 # This is meant to be used in a makefile, specifically to allow for the output
13 # my_target_output := $(OUT_DIR)/lint-output.txt
47 local output="${1-}"; shift || fatal "missing argument: output"
53 # Run the command specified by the rest of arguments ("$@") and save output
56 "$@" >"${output}" 2>&1 || echo "$?" >"${retval}"
64 tail -n 5 "$output" | sed -e "s/^/${module}: /"
66 # Print the entire output on failure.
67 cat "$output" | sed -e "s/^/${module}: /
    [all...]
  /external/protobuf/gtest/test/
gtest_output_test.py 32 """Tests the text output of Google C++ Testing Framework.
91 """Removes all file location info from a Google Test program's output.
94 test_output: the output of a Google Test program.
97 output with all file location info (in the form of
106 def RemoveStackTraceDetails(output):
107 """Removes all stack traces from a Google Test program's output."""
111 'Stack trace: (omitted)\n\n', output)
114 def RemoveStackTraces(output):
115 """Removes all traces of stack traces from a Google Test program's output."""
118 return re.sub(r'Stack trace:(.|\n)*?\n\n', '', output)
    [all...]
  /prebuilts/ndk/r11/sources/third_party/googletest/googletest/test/
gtest_output_test.py 32 """Tests the text output of Google C++ Testing Framework.
89 """Removes all file location info from a Google Test program's output.
92 test_output: the output of a Google Test program.
95 output with all file location info (in the form of
104 def RemoveStackTraceDetails(output):
105 """Removes all stack traces from a Google Test program's output."""
109 'Stack trace: (omitted)\n\n', output)
112 def RemoveStackTraces(output):
113 """Removes all traces of stack traces from a Google Test program's output."""
116 return re.sub(r'Stack trace:(.|\n)*?\n\n', '', output)
    [all...]
  /prebuilts/ndk/r13/sources/third_party/googletest/googletest/test/
gtest_output_test.py 32 """Tests the text output of Google C++ Testing Framework.
89 """Removes all file location info from a Google Test program's output.
92 test_output: the output of a Google Test program.
95 output with all file location info (in the form of
104 def RemoveStackTraceDetails(output):
105 """Removes all stack traces from a Google Test program's output."""
109 'Stack trace: (omitted)\n\n', output)
112 def RemoveStackTraces(output):
113 """Removes all traces of stack traces from a Google Test program's output."""
116 return re.sub(r'Stack trace:(.|\n)*?\n\n', '', output)
    [all...]
  /external/pdfium/samples/
image_diff_png.h 17 std::vector<unsigned char>* output,
26 std::vector<unsigned char>* output);
34 std::vector<unsigned char>* output);
  /external/webrtc/webrtc/test/fuzzers/
audio_decoder_ilbc_fuzzer.cc 19 int16_t output[kAllocatedOuputSizeSamples]; local
20 FuzzAudioDecoder(data, size, &dec, kSampleRateHz, sizeof(output), output);
audio_decoder_isac_fuzzer.cc 19 int16_t output[kAllocatedOuputSizeSamples]; local
20 FuzzAudioDecoder(data, size, &dec, sample_rate_hz, sizeof(output), output);
audio_decoder_isacfix_fuzzer.cc 19 int16_t output[kAllocatedOuputSizeSamples]; local
20 FuzzAudioDecoder(data, size, &dec, kSampleRateHz, sizeof(output), output);
audio_decoder_opus_fuzzer.cc 20 int16_t output[kAllocatedOuputSizeSamples]; local
21 FuzzAudioDecoder(data, size, &dec, kSampleRateHz, sizeof(output), output);
  /system/connectivity/wificond/tests/
shell_unittest.cpp 28 string output; local
29 int result = RunShellCommand("echo hello world", &output);
31 EXPECT_EQ("hello world\n", output);
  /test/vts/utils/python/coverage/
file_summary.py 19 """Summarizes structure and coverage information from GCC output.
39 output = 'Coverage Summary:\r\n'
41 output += str(self.functions[ident])
42 return output
  /external/libvpx/libvpx/test/
idct_test.cc 37 output = new (std::nothrow) Buffer<uint8_t>(4, 4, 3);
38 ASSERT_TRUE(output != NULL);
44 delete output;
51 Buffer<uint8_t> *output; member in class:__anon24368::IDCTTest
55 // When the input is '0' the output will be '0'.
58 output->Set(0);
61 predict->stride(), output->TopLeftPixel(),
62 output->stride()));
66 ASSERT_TRUE(output->CheckValues(0));
67 ASSERT_TRUE(output->CheckPadding())
    [all...]
  /external/lz4/tests/
fasttest.c 24 int test_compress(const char *input, int inSize, char *output, int outSize)
40 lz4Stream, input + inOffset, output + outOffset + 8, length, outSize-outOffset, 1);
42 memcpy(output + outOffset, &length, 4); /* input length */
43 memcpy(output + outOffset + 4, &outBytes, 4); /* output length */
49 memset(output + outOffset, 0, 4);
50 memset(output + outOffset + 4, 0, 4);
60 char *output = outBufferA; local
81 /* Put the last output in the dictionary */
85 lz4StreamDecode, compressed + offset, output, unBytes)
118 char output[LZ4_COMPRESSBOUND(4096)]; local
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
CopyUtils.java 82 * Method Input Output Dependency
134 * @param output the <code>OutputStream</code> to write to
137 public static void copy(byte[] input, OutputStream output)
139 output.write(input);
151 * @param output the <code>Writer</code> to write to
154 public static void copy(byte[] input, Writer output)
157 copy(in, output);
165 * @param output the <code>Writer</code> to write to
173 Writer output,
177 copy(in, output, encoding)
    [all...]
  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/
renderer.py 53 @ivar output: where rendering is written
54 @type output: cStringIO.StringIO object
89 self.output = cStringIO.StringIO()
100 self.output.write('\x00' * 12)
104 """Truncate the output buffer at offset I{where}, and remove any
112 self.output.seek(where)
113 self.output.truncate()
150 before = self.output.tell()
151 qname.to_wire(self.output, self.compress, self.origin)
152 self.output.write(struct.pack("!HH", rdtype, rdclass)
    [all...]
  /external/libchrome/base/
base64url.cc 27 std::string* output) {
28 Base64Encode(input, output);
30 ReplaceChars(*output, "+", "-", output);
31 ReplaceChars(*output, "/", "_", output);
35 // The padding included in |*output| will not be amended.
38 // The padding included in |*output| will be removed.
40 output->find_last_not_of(kPaddingChar);
42 output->resize(last_non_padding_pos + 1)
    [all...]
  /external/protobuf/src/google/protobuf/compiler/
zip_writer.cc 151 io::CodedOutputStream output(raw_output_);
152 output.WriteLittleEndian32(0x04034b50); // magic
153 WriteShort(&output, 10); // version needed to extract
154 WriteShort(&output, 0); // flags
155 WriteShort(&output, 0); // compression method: stored
156 WriteShort(&output, 0); // last modified time
157 WriteShort(&output, 0); // last modified date
158 output.WriteLittleEndian32(info.crc32); // crc-32
159 output.WriteLittleEndian32(info.size); // compressed size
160 output.WriteLittleEndian32(info.size); // uncompressed siz
    [all...]
  /external/compiler-rt/test/asan/android_commands/
android_compile.py 10 output = None variable
21 output = args.pop(0) variable
23 if output == None:
24 print "No output file name!"
32 push_to_device(output)
35 os.rename(output, output + '.real')
36 os.symlink(android_run, output)
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue141/
ConfigurableTimezoneTest.java 30 String output = yaml.dump(new Date()); local
31 assertTrue(output, output.endsWith("Z\n"));
39 String output = yaml.dump(date); local
40 // System.out.println(output);
41 assertTrue(output, output.trim().endsWith("+1:00"));
42 Date parsed = (Date) yaml.load(output);

Completed in 1799 milliseconds

1 2 3 45 6 7 8 91011>>