Searched refs:output (Results 51 - 75 of 3704) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
H A Dswap_bytes.c28 uint16_t* output /* (o) the swapped sequence */
32 *output++ = (*input >> 8)|(*input << 8);
H A Dswap_bytes.h31 uint16_t* output /* (o) the swapped sequence */
/external/chromium_org/tools/profile_chrome/
H A Dtrace_packager_unittest.py27 with tempfile.NamedTemporaryFile() as output:
29 output.name,
32 with open(output.name) as output:
33 output = json.load(output)
34 self.assertEquals(output['traceEvents'], t1['traceEvents'])
35 self.assertEquals(output['stackFrames'], t2['stackFrames'])
/external/ppp/pppd/plugins/radius/
H A Dmd5.c6 void rc_md5_calc (unsigned char *output, unsigned char *input, unsigned int inlen) argument
12 MD5_Final (output, &context);
/external/protobuf/gtest/test/
H A Dgtest_output_test.py32 """Tests the text output of Google C++ Testing Framework.
90 """Removes all file location info from a Google Test program's output.
93 test_output: the output of a Google Test program.
96 output with all file location info (in the form of
105 def RemoveStackTraceDetails(output):
106 """Removes all stack traces from a Google Test program's output."""
110 'Stack trace: (omitted)\n\n', output)
113 def RemoveStackTraces(output):
114 """Removes all traces of stack traces from a Google Test program's output."""
117 return re.sub(r'Stack trace:(.|\n)*?\n\n', '', output)
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Didct_test.cc31 for (i = 0; i < 256; i++) output[i] = ((i & 0xF) < 4 && (i < 64)) ? 0 : -1;
38 unsigned char output[256]; member in class:__anon12991::IDCTTest
47 EXPECT_EQ(0, output[i]) << i;
49 EXPECT_EQ(255, output[i]);
55 ASM_REGISTER_STATE_CHECK(UUT(input, output, 16, output, 16));
59 EXPECT_EQ(0, output[i]) << "i==" << i;
61 EXPECT_EQ(255, output[i]) << "i==" << i;
68 ASM_REGISTER_STATE_CHECK(UUT(input, output, 16, output, 1
[all...]
/external/chromium_org/tools/grit/grit/format/
H A Dresource_map_unittest.py28 <output type="rc_header" filename="the_rc_header.h" />
29 <output type="resource_map_header"
54 output = util.StripBlankLinesAndComments(''.join(
66 extern const size_t kTheRcHeaderSize;''', output)
67 output = util.StripBlankLinesAndComments(''.join(
80 const size_t kTheRcHeaderSize = arraysize(kTheRcHeader);''', output)
81 output = util.StripBlankLinesAndComments(''.join(
95 const size_t kTheRcHeaderSize = arraysize(kTheRcHeader);''', output)
103 <output type="rc_header" filename="the_rc_header.h" />
104 <output typ
[all...]
/external/chromium_org/url/
H A Durl_canon_query.cc54 // Appends the given string to the output, escaping characters that do not
60 CanonOutput* output) {
63 AppendEscapedChar(static_cast<unsigned char>(source[i]), output); local
65 output->push_back(static_cast<char>(source[i]));
74 CanonOutput* output) {
79 converter->ConvertFromUTF16(utf16.data(), utf16.length(), output);
88 CanonOutput* output) {
89 converter->ConvertFromUTF16(&spec[query.begin], query.len, output);
96 CanonOutput* output) {
99 AppendRaw8BitQueryString(&spec[query.begin], query.len, output);
59 AppendRaw8BitQueryString(const CHAR* source, int length, CanonOutput* output) argument
71 RunConverter(const char* spec, const Component& query, CharsetConverter* converter, CanonOutput* output) argument
85 RunConverter(const base::char16* spec, const Component& query, CharsetConverter* converter, CanonOutput* output) argument
93 DoConvertToQueryEncoding(const CHAR* spec, const Component& query, CharsetConverter* converter, CanonOutput* output) argument
118 DoCanonicalizeQuery(const CHAR* spec, const Component& query, CharsetConverter* converter, CanonOutput* output, Component* out_query) argument
138 CanonicalizeQuery(const char* spec, const Component& query, CharsetConverter* converter, CanonOutput* output, Component* out_query) argument
147 CanonicalizeQuery(const base::char16* spec, const Component& query, CharsetConverter* converter, CanonOutput* output, Component* out_query) argument
156 ConvertUTF16ToQueryEncoding(const base::char16* input, const Component& query, CharsetConverter* converter, CanonOutput* output) argument
[all...]
/external/libvpx/libvpx/test/
H A Didct_test.cc31 for (i = 0; i < 256; i++) output[i] = ((i & 0xF) < 4 && (i < 64)) ? 0 : -1;
38 unsigned char output[256]; member in class:__anon24786::IDCTTest
47 EXPECT_EQ(0, output[i]) << i;
49 EXPECT_EQ(255, output[i]);
55 REGISTER_STATE_CHECK(UUT(input, output, 16, output, 16));
59 EXPECT_EQ(0, output[i]) << "i==" << i;
61 EXPECT_EQ(255, output[i]) << "i==" << i;
68 REGISTER_STATE_CHECK(UUT(input, output, 16, output, 1
[all...]
/external/chromium_org/base/strings/
H A Dstring_number_conversions.h54 // setting |*output| to the result of the conversion. Returns true for
56 // - Overflow. |*output| will be set to the maximum value supported
58 // - Underflow. |*output| will be set to the minimum value supported
60 // - Trailing characters in the string after parsing the number. |*output|
62 // - Leading whitespace in the string before parsing the number. |*output| will
65 // |*output| will be set to 0.
66 // - Empty string. |*output| will be set to 0.
67 BASE_EXPORT bool StringToInt(const StringPiece& input, int* output);
68 BASE_EXPORT bool StringToInt(const StringPiece16& input, int* output);
70 BASE_EXPORT bool StringToUint(const StringPiece& input, unsigned* output);
[all...]
/external/chromium_org/build/android/pylib/symbols/
H A DPRESUBMIT.py6 output = []
7 output.extend(input_api.canned_checks.RunPylint(input_api, output_api))
8 output.extend(input_api.canned_checks.RunUnitTestsInDirectory(
13 return output
/external/chromium_org/device/usb/tools/
H A Dusb_ids.py49 output = ""
56 output += "static const UsbProduct vendor_%.4x_products[] = {\n" % \
59 output += " {0x%.4x, \"%s\"},\n" % (product["id"],
61 output += "};\n"
63 return output
66 output = "const size_t UsbIds::vendor_size_ = %d;\n" % len(table.keys())
67 output += "const UsbVendor UsbIds::vendors_[] = {\n"
75 output += " {0x%.4x, \"%s\", %d, %s},\n" % (vendor["id"],
78 output += "};\n"
79 return output
[all...]
/external/chromium_org/native_client_sdk/src/doc/
H A DPRESUBMIT.py21 e.output)]
27 output = []
28 output.extend(_CheckSphinxBuild(input_api, output_api))
29 return output
/external/chromium_org/net/base/
H A Dnet_string_util.h19 // Converts |text| using |charset| to UTF-8, and writes it to |output|.
20 // On failure, returns false and |output| is cleared.
22 std::string* output);
25 // it to |output|. On failure, returns false and |output| is cleared.
27 std::string* output);
29 // Converts |text| using |charset| to UTF-16, and writes it to |output|.
30 // On failure, returns false and |output| is cleared.
32 base::string16* output);
34 // Converts |text| using |charset| to UTF-16, and writes it to |output|
[all...]
/external/chromium_org/tools/grit/grit/format/policy_templates/writers/
H A Dplist_strings_writer_unittest.py35 output = self.GetOutput(
44 self.assertEquals(output.strip(), expected_output.strip())
73 output = self.GetOutput(
84 self.assertEquals(output.strip(), expected_output.strip())
116 output = self.GetOutput(
128 self.assertEquals(output.strip(), expected_output.strip())
162 output = self.GetOutput(
174 self.assertEquals(output.strip(), expected_output.strip())
220 output = self.GetOutput(
233 self.assertEquals(output
[all...]
/external/libcxx/test/input.output/input.output.general/
H A DAndroid.mk17 test_makefile := external/libcxx/test/input.output/input.output.general/Android.mk
19 test_name := input.output/input.output.general/nothing_to_do
/external/libcxx/test/input.output/iostream.format/output.streams/
H A DAndroid.mk17 test_makefile := external/libcxx/test/input.output/iostream.format/output.streams/Android.mk
19 test_name := input.output/iostream.format/output.streams/version
/external/libcxx/test/input.output/iostream.format/output.streams/ostream/
H A DAndroid.mk17 test_makefile := external/libcxx/test/input.output/iostream.format/output.streams/ostream/Android.mk
19 test_name := input.output/iostream.format/output.streams/ostream/types
/external/strace/xlat/
H A Dgen.sh5 Usage: $0 <input> <output>
8 the generated headers to <output>.
14 local input="$1" output="$2" name="$3"
15 echo "generating ${output}"
70 ) >"${output}"
74 local output="$1"
77 echo "generating ${output}"
90 ) >"${output}"
94 local output="$1"
96 echo "generating ${output}"
[all...]
/external/chromium_org/testing/gtest/test/
H A Dgtest_output_test.py32 """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/gtest/test/
H A Dgtest_output_test.py32 """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/chromium_org/chrome/tools/build/
H A Dmake_version_cc.py30 output = open(cc_file, 'w')
31 output.write(contents)
32 output.close()
/external/chromium_org/testing/
H A DPRESUBMIT.py13 output = []
15 output.extend(input_api.canned_checks.RunPylint(
17 return output
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DCodeGen.cpp17 sh::GLenum type, ShShaderSpec spec, ShShaderOutput output)
19 switch (output) {
26 return new TranslatorHLSL(type, spec, output);
16 ConstructCompiler( sh::GLenum type, ShShaderSpec spec, ShShaderOutput output) argument
/external/chromium_org/third_party/mesa/
H A Dgenerate_git_sha1.py9 output = sys.argv[1] variable
10 parentdir = os.path.abspath(os.path.join(output, os.pardir))
34 with open(output, "w") as f:

Completed in 5122 milliseconds

1234567891011>>