Searched refs:output (Results 126 - 150 of 3704) sorted by relevance

1234567891011>>

/external/chromium_org/tools/grit/grit/format/policy_templates/writers/
H A Dadml_writer_unittest.py71 output = self.writer.GetTemplateText()
78 self.AssertXMLEquals(output, expected_output)
96 output = self.GetXMLOfChildren(self.writer._string_table_elem)
101 self.AssertXMLEquals(output, expected_output)
103 output = self.GetXMLOfChildren(self.writer._presentation_table_elem)
105 self.AssertXMLEquals(output, expected_output)
117 output = self.GetXMLOfChildren(self.writer._string_table_elem)
122 self.AssertXMLEquals(output, expected_output)
124 output = self.GetXMLOfChildren(self.writer._presentation_table_elem)
126 self.AssertXMLEquals(output, expected_outpu
[all...]
H A Dplist_writer_unittest.py24 of this function can be used as an expected result to test the output
64 output = self.GetOutput(
72 self.assertEquals(output.strip(), expected_output.strip())
96 output = self.GetOutput(
119 self.assertEquals(output.strip(), expected_output.strip())
146 output = self.GetOutput(
170 self.assertEquals(output.strip(), expected_output.strip())
198 output = self.GetOutput(
221 self.assertEquals(output.strip(), expected_output.strip())
245 output
[all...]
H A Dreg_writer_unittest.py25 def CompareOutputs(self, output, expected_output):
26 '''Compares the output of the reg_writer with its expected output.
29 output: The output of the reg writer as returned by grit.
30 expected_output: The expected output.
36 output.strip(),
47 output = self.GetOutput(grd, 'fr', {'_chromium': '1', }, 'reg', 'en')
49 self.CompareOutputs(output, expected_output)
69 output
[all...]
/external/chromium_org/url/
H A Durl_canon_internal.h75 // Appends the given string to the output, escaping characters that do not
79 CanonOutput* output);
82 CanonOutput* output);
126 // Write a single character, escaped, to the output. This always escapes: it
132 CanonOutputT<OUTCHAR>* output) {
133 output->push_back('%');
134 output->push_back(kHexCharLookup[(ch >> 4) & 0xf]);
135 output->push_back(kHexCharLookup[ch & 0xf]);
155 // character that should be appended, with the given output method. Wrappers
161 inline void DoAppendUTF8(unsigned char_value, Output* output) { argument
131 AppendEscapedChar(UINCHAR ch, CanonOutputT<OUTCHAR>* output) argument
163 Appender(static_cast<unsigned char>(char_value), output); local
197 AppendCharToOutput(unsigned char ch, CanonOutput* output) argument
204 AppendUTF8Value(unsigned char_value, CanonOutput* output) argument
212 AppendUTF8EscapedValue(unsigned char_value, CanonOutput* output) argument
230 AppendUTF16Value(unsigned code_point, CanonOutputT<base::char16>* output) argument
261 AppendUTF8EscapedChar(const base::char16* str, int* begin, int length, CanonOutput* output) argument
273 AppendUTF8EscapedChar(const char* str, int* begin, int length, CanonOutput* output) argument
[all...]
/external/bison/lib/
H A Dsnprintf.c1 /* Formatted output to strings.
31 /* Print formatted output to string STR. Similar to sprintf, but
39 char *output; local
45 output = vasnprintf (str, &lenbuf, format, args);
49 if (!output)
52 if (output != str)
57 memcpy (str, output, pruned_len);
61 free (output);
H A Dvsnprintf.c1 /* Formatted output to strings.
33 /* Print formatted output to string STR. Similar to vsprintf, but
41 char *output; local
45 output = vasnprintf (str, &lenbuf, format, args);
48 if (!output)
51 if (output != str)
56 memcpy (str, output, pruned_len);
60 free (output);
/external/chromium_org/mojo/public/cpp/bindings/lib/
H A Dstring_serialization.cc18 internal::String_Data** output) {
24 *output = result;
26 *output = NULL;
30 void Deserialize_(internal::String_Data* input, String* output) { argument
33 result.Swap(output);
35 output->reset();
17 Serialize_(const String& input, internal::Buffer* buf, internal::String_Data** output) argument
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DBisonCSSParserTest.cpp21 StringBuilder output; local
25 output.append(queryText);
29 output.appendLiteral(", ");
31 ASSERT_STREQ(expected, output.toString().ascii().data());
38 const char* output; member in struct:blink::__anon11026
54 testMediaQuery(testCases[i].output, *static_cast<StyleRuleMedia*>(rule.get())->mediaQueries());
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Doutputcapture_unittest.py34 self.output = OutputCapture()
43 actual_stdout, actual_stderr, actual_logs = self.output.restore_output()
49 self.output.capture_output()
54 self.output.set_log_level(logging.ERROR)
55 self.output.capture_output()
57 self.output.set_log_level(logging.WARN)
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Ddescriptor_database.h70 // Find a file by file name. Fills in in *output and returns true if found.
71 // Otherwise, returns false, leaving the contents of *output undefined.
73 FileDescriptorProto* output) = 0;
76 // If found, fills in *output and returns true, otherwise returns false
77 // and leaves *output undefined.
79 FileDescriptorProto* output) = 0;
82 // with the given field number. If found, fills in *output and returns true,
83 // otherwise returns false and leaves *output undefined. containing_type
87 FileDescriptorProto* output) = 0;
90 // extendee_type, and appends them to output i
99 FindAllExtensionNumbers(const string& extendee_type, vector<int>* output) argument
[all...]
/external/chromium_org/tools/grit/grit/format/
H A Ddata_pack_unittest.py32 output = data_pack.WriteDataPackToString(input, data_pack.UTF8)
33 self.failUnless(output == expected)
53 output, _ = data_pack.RePackFromDataPackStrings(inputs, whitelist)
54 self.assertDictEqual(expected_with_whitelist, output,
55 'Incorrect resource output')
58 output, _ = data_pack.RePackFromDataPackStrings(inputs, None)
59 self.assertDictEqual(expected_without_whitelist, output,
60 'Incorrect resource output')
/external/chromium_org/ui/base/accelerators/
H A Dmenu_label_accelerator_util_linux_unittest.cc15 const char* output; member in struct:ui::__anon16612
27 EXPECT_EQ(cases[i].output, result);
34 const char* output; member in struct:ui::__anon16613
46 EXPECT_EQ(cases[i].output, result);
53 const char* output; member in struct:ui::__anon16614
71 EXPECT_EQ(cases[i].output, result);
/external/libcxx/test/input.output/iostream.format/output.streams/ostream.assign/
H A DAndroid.mk17 test_makefile := external/libcxx/test/input.output/iostream.format/output.streams/ostream.assign/Android.mk
19 test_name := input.output/iostream.format/output.streams/ostream.assign/member_swap
23 test_name := input.output/iostream.format/output.streams/ostream.assign/move_assign
/external/libcxx/test/input.output/iostream.format/output.streams/ostream.cons/
H A DAndroid.mk17 test_makefile := external/libcxx/test/input.output/iostream.format/output.streams/ostream.cons/Android.mk
19 test_name := input.output/iostream.format/output.streams/ostream.cons/move
23 test_name := input.output/iostream.format/output.streams/ostream.cons/streambuf
/external/libcxx/test/input.output/iostream.format/output.streams/ostream_sentry/
H A DAndroid.mk17 test_makefile := external/libcxx/test/input.output/iostream.format/output.streams/ostream_sentry/Android.mk
19 test_name := input.output/iostream.format/output.streams/ostream_sentry/construct
23 test_name := input.output/iostream.format/output.streams/ostream_sentry/destruct
/external/protobuf/src/google/protobuf/
H A Ddescriptor_database.h69 // Find a file by file name. Fills in in *output and returns true if found.
70 // Otherwise, returns false, leaving the contents of *output undefined.
72 FileDescriptorProto* output) = 0;
75 // If found, fills in *output and returns true, otherwise returns false
76 // and leaves *output undefined.
78 FileDescriptorProto* output) = 0;
81 // with the given field number. If found, fills in *output and returns true,
82 // otherwise returns false and leaves *output undefined. containing_type
86 FileDescriptorProto* output) = 0;
89 // extendee_type, and appends them to output i
98 FindAllExtensionNumbers(const string& extendee_type, vector<int>* output) argument
[all...]
/external/libcxx/test/input.output/stream.buffers/streambuf/streambuf.virtuals/streambuf.virt.get/
H A Dxsgetn.pass.cpp38 char output[sizeof(input)] = {0}; local
39 assert(t.sgetn(output, 10) == 7);
40 assert(strcmp(input, output) == 0);
/external/llvm/utils/
H A DDSAclean.py18 output = open(sys.argv[2], 'w') variable
28 output.write(buffer)
32 output.close()
/external/vixl/tools/
H A Dutil.py42 output = subprocess.check_output(args, stderr=subprocess.STDOUT)
43 return 0, output.rstrip('\n')
45 return e.returncode, e.output.rstrip('\n')
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_ProcessReadWriteTest.java30 FileOutputStream output = new FileOutputStream(FileDescriptor.out);
37 output.write(c);
40 output.write(c);
43 output.close();
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/gcm/
H A DGCMExponentiator.java6 void exponentiateX(long pow, byte[] output); argument
/external/chromium_org/base/
H A Drand_util_nacl.cc14 void GetRandomBytes(void* output, size_t num_bytes) { argument
15 char* output_ptr = static_cast<char*>(output);
37 void RandBytes(void* output, size_t output_length) { argument
38 GetRandomBytes(output, output_length);
/external/chromium_org/testing/gtest/test/
H A Dgtest_help_test.py62 [PROGRAM_PATH, LIST_TESTS_FLAG]).output
74 FLAG_PREFIX + r'output=.*' +
85 the exit code and the text output as a tuple.
95 return child.exit_code, child.output
111 exit_code, output = RunWithFlag(flag)
113 self.assert_(HELP_REGEX.search(output), output)
116 self.assert_(STREAM_RESULT_TO_FLAG in output, output)
118 self.assert_(STREAM_RESULT_TO_FLAG not in output, outpu
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/fonts/opentype/
H A DOpenTypeSanitizer.cpp61 ots::ExpandingMemoryStream output(m_buffer->size(), maxWebFontSize);
62 if (!ots::Process(&output, reinterpret_cast<const uint8_t*>(m_buffer->data()), m_buffer->size()))
65 const size_t transcodeLen = output.Tell();
66 return SharedBuffer::create(static_cast<unsigned char*>(output.get()), transcodeLen);
/external/chromium_org/third_party/npapi/npspy/extern/nspr/
H A Dplerror.h55 ** Print the messages to specified output file prepending 'msg' if not NULL.
57 PR_EXTERN(void) PL_FPrintError(PRFileDesc *output, const char *msg);

Completed in 732 milliseconds

1234567891011>>