Searched refs:output (Results 201 - 225 of 3704) sorted by relevance

1234567891011>>

/external/bison/lib/
H A Dsprintf.c1 /* Formatted output to strings.
36 /* Print formatted output to string STR.
42 char *output; local
58 output = vasnprintf (str, &lenbuf, format, args);
62 if (!output)
65 if (output != str)
68 free (output);
H A Dvsprintf.c1 /* Formatted output to strings.
36 /* Print formatted output to string STR.
42 char *output; local
56 output = vasnprintf (str, &lenbuf, format, args);
59 if (!output)
62 if (output != str)
65 free (output);
/external/chromium_org/chrome/browser/extensions/api/idltest/
H A Didltest_api.cc14 base::ListValue* output = new base::ListValue(); local
17 output->Append(new base::FundamentalValue(input_buffer[i]));
19 return output;
40 BinaryValue* output = local
42 SetResult(output);
/external/chromium_org/gin/shell/
H A Dgin_shell_unittest.cc35 std::string output; local
36 ASSERT_TRUE(base::GetAppOutput(cmd, &output));
37 base::TrimWhitespaceASCII(output, base::TRIM_ALL, &output);
38 ASSERT_EQ("Hello World", output);
/external/chromium_org/native_client_sdk/src/build_tools/
H A Ddsc2gyp.py211 def WriteNaClTargets(output, target, tools):
221 output.write(NLIB_TARGET % target)
223 output.write(NEXE_TARGET % target)
246 output = StringIO.StringIO()
249 output.write(PREAMBLE % srcdir.replace("\\", '/'))
253 output.write(WIN32_CONFIGS)
260 output.write("""\
268 output.write(TOOLCHAIN_CONFIG % {'toolchain': ConfigName(tc)})
270 output.write(" }\n },\n")
272 output
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/tools/
H A Dwrap-commit-msg.py44 output = ""
53 output += wrap(text)
55 output += line
56 output += wrap(text)
64 fileobj.write(output)
/external/chromium_org/tools/deep_memory_profiler/
H A DPRESUBMIT.py17 output = []
23 output.extend(input_api.canned_checks.RunPylint(input_api, output_api))
27 output.extend(
34 output.extend(input_api.canned_checks.PanProjectChecks(input_api,
37 return output
/external/chromium_org/tools/find_runtime_symbols/
H A DPRESUBMIT.py17 output = []
23 output.extend(input_api.canned_checks.RunPylint(input_api, output_api))
27 output.extend(
34 output.extend(input_api.canned_checks.PanProjectChecks(input_api,
37 return output
/external/chromium_org/tools/grit/grit/
H A Dgrit_runner_unittest.py32 output = self.buf.getvalue()
33 self.failUnless(output.count('disconnected'))
34 self.failUnless(output.count("'test'") == 0) # tool name doesn't occur
35 self.failUnless(output.count('bla'))
36 self.failUnless(output.count('simple-input.xml'))
/external/chromium_org/tools/linux/
H A DPRESUBMIT.py17 output = []
23 output.extend(input_api.canned_checks.RunPylint(input_api, output_api))
27 output.extend(
34 output.extend(input_api.canned_checks.PanProjectChecks(input_api,
37 return output
/external/chromium_org/v8/test/mjsunit/tools/
H A Dprofviz.js54 function output(line) { function
70 var objects = psc.assembleOutput(output);
72 output("# start: " + range_start);
73 output("# end: " + range_end);
74 output("# objects: " + objects);
/external/libvpx/libvpx/tools/
H A Dwrap-commit-msg.py44 output = ""
53 output += wrap(text)
55 output += line
56 output += wrap(text)
64 fileobj.write(output)
/external/lldb/examples/customization/pwd-cd-and-system/
H A Dutils.py40 output, error = process.communicate()
42 if output and error:
43 print "stdout=>\n", output
45 elif output:
46 print output
/external/protobuf/src/google/protobuf/
H A Dtext_format.h60 // output stream.
61 static bool Print(const Message& message, io::ZeroCopyOutputStream* output);
67 io::ZeroCopyOutputStream* output);
70 static bool PrintToString(const Message& message, string* output);
74 string* output);
83 string* output);
93 bool Print(const Message& message, io::ZeroCopyOutputStream* output);
96 io::ZeroCopyOutputStream* output);
98 bool PrintToString(const Message& message, string* output);
101 string* output);
[all...]
H A Dwire_format_lite.h234 #define output io::CodedOutputStream* output macro
309 static inline void WriteTag(field_number, WireType type, output) INL;
312 static inline void WriteInt32NoTag (int32 value, output) INL;
313 static inline void WriteInt64NoTag (int64 value, output) INL;
314 static inline void WriteUInt32NoTag (uint32 value, output) INL;
315 static inline void WriteUInt64NoTag (uint64 value, output) INL;
316 static inline void WriteSInt32NoTag (int32 value, output) INL;
317 static inline void WriteSInt64NoTag (int64 value, output) INL;
318 static inline void WriteFixed32NoTag (uint32 value, output) IN
367 #undef output macro
368 #define output macro
439 #undef output macro
[all...]
/external/strace/test/
H A DAndroid.mk55 # document what string should be expected in the output and for them additional
56 # checks is made (*-expected output vars)).
65 childthread-expected-output := 'write(1, "OK\\n",'
66 clone-expected-output := 'write(1, "original\\n",'
67 fork-expected-output := 'write(1, "parent\\n",'
68 leaderkill-expected-output := 'write(1, "OK\\n",'
69 mmap_offset_decode-expected-output := ''
70 mtd-expected-output := ''
71 select-expected-output := ''
72 sfd-expected-output
[all...]
/external/chromium_org/base/strings/
H A Dutf_string_conversions.cc19 // determine the source, and the given output STL string will be replaced by
24 DEST_STRING* output) {
31 WriteUnicodeCharacter(code_point, output);
33 WriteUnicodeCharacter(0xFFFD, output);
45 bool WideToUTF8(const wchar_t* src, size_t src_len, std::string* output) { argument
46 PrepareForUTF8Output(src, src_len, output);
47 return ConvertUnicode(src, src_len, output);
58 bool UTF8ToWide(const char* src, size_t src_len, std::wstring* output) { argument
59 PrepareForUTF16Or32Output(src, src_len, output);
60 return ConvertUnicode(src, src_len, output);
22 ConvertUnicode(const SRC_CHAR* src, size_t src_len, DEST_STRING* output) argument
74 WideToUTF16(const wchar_t* src, size_t src_len, string16* output) argument
83 UTF16ToWide(const char16* src, size_t src_len, std::wstring* output) argument
94 WideToUTF16(const wchar_t* src, size_t src_len, string16* output) argument
108 UTF16ToWide(const char16* src, size_t src_len, std::wstring* output) argument
128 UTF8ToUTF16(const char* src, size_t src_len, string16* output) argument
141 UTF16ToUTF8(const char16* src, size_t src_len, std::string* output) argument
157 UTF8ToUTF16(const char* src, size_t src_len, string16* output) argument
165 UTF16ToUTF8(const char16* src, size_t src_len, std::string* output) argument
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Dwire_format_lite.h235 // Write the contents of an UnknownFieldSet to the output.
237 io::CodedOutputStream* output);
251 io::CodedOutputStream* output);
276 #define output io::CodedOutputStream* output macro
351 static inline void WriteTag(field_number, WireType type, output) INL;
354 static inline void WriteInt32NoTag (int32 value, output) INL;
355 static inline void WriteInt64NoTag (int64 value, output) INL;
356 static inline void WriteUInt32NoTag (uint32 value, output) INL;
357 static inline void WriteUInt64NoTag (uint64 value, output) IN
409 #undef output macro
410 #define output macro
481 #undef output macro
[all...]
/external/iputils/doc/
H A Ddocbook2man-spec.pl27 in DocBook, and will produce wrong output in some cases with supported
33 Produce cleanest, readable man output as possible (unlike some
58 use SGMLS::Output; # Use stack-based output.
83 print STDERR "Warning: output contains unresolved XRefs\n";
96 # Our own version of sgml() and output() to allow simple string output
112 $sub = 'sub { output "\n" unless $newline_last++; ';
114 sgml($_[0], eval('sub { output "\n" unless $newline_last++; }'));
116 sgml($_[0], eval("sub { output \"\\n\" unless \$newline_last++; output '
[all...]
/external/chromium_org/sandbox/win/sandbox_poc/pocdll/
H A Dprocesses_and_threads.cc15 FILE *output = handle2file.Translate(log, "w"); local
19 fprintf(output, "[BLOCKED] Cannot list all processes on the system. "
34 fprintf(output, "[BLOCKED] Found process %S:%ld but cannot open it. "
40 fprintf(output, "[GRANTED] Found process %S:%ld and open succeeded.\r\n",
50 fprintf(output, "[ERROR] Error %ld while looking at the processes on "
59 FILE *output = handle2file.Translate(log, "w"); local
63 fprintf(output, "[BLOCKED] Cannot list all threads on the system. "
83 fprintf(output, "[GRANTED] Found thread %ld:%ld and able to open it.\r\n",
94 fprintf(output, "[ERROR] Error %ld while looking at the processes on "
98 fprintf(output, "[INF
[all...]
/external/chromium_org/tools/json_comment_eater/
H A Djson_comment_eater.py32 def _ReadString(input, start, output):
33 output.append('"')
41 output.append(input[start:end_range + 1])
45 def _ReadComment(input, start, output):
50 output.append(eol_token)
59 output = []
64 output.append(input[pos:])
66 output.append(input[pos:token_index])
67 pos = token_actions[token](input, token_index + len(token), output)
68 return ''.join(output)
[all...]
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
H A Dt012lexerXML.g9 this.output = function(line) {
21 {this.output("ROOTELEMENT: "+$rootElementName.text)}
25 {this.output("SYSTEM: "+$sys1.text)}
28 {this.output("PUBLIC: "+$pub.text)}
29 {this.output("SYSTEM: "+$sys2.text)}
34 {this.output("INTERNAL DTD: "+$dtd.text)}
43 {this.output("PI: "+$target.text)}
49 {this.output("XML declaration")}
58 {this.output("PCDATA: \""+$t.text+"\"")}
60 {this.output("CDAT
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/
H A Dxorg_output.c80 output_create_resources(xf86OutputPtr output) argument
87 output_dpms(xf86OutputPtr output, int mode) argument
92 output_detect(xf86OutputPtr output) argument
94 modesettingPtr ms = modesettingPTR(output->scrn);
95 struct output_private *priv = output->driver_private;
122 output_get_modes(xf86OutputPtr output) argument
124 struct output_private *priv = output->driver_private;
152 ddc_mon = xf86InterpretEDID(output->scrn->scrnIndex,
158 xf86OutputSetEDID(output, ddc_mon);
195 output_mode_valid(xf86OutputPtr output, DisplayModePt argument
211 output_set_property(xf86OutputPtr output, Atom property, RRPropertyValuePtr value) argument
219 output_get_property(xf86OutputPtr output, Atom property) argument
226 output_destroy(xf86OutputPtr output) argument
256 xf86OutputPtr output; local
332 xorg_output_get_id(xf86OutputPtr output) argument
[all...]
/external/chromium_org/tools/grit/grit/format/policy_templates/writers/
H A Dadmx_writer_unittest.py59 output = self.writer.GetTemplateText()
83 self.AssertXMLEquals(output, expected_output)
96 output = self.GetXMLOfChildren(self._GetPoliciesElement(self.writer._doc))
98 self.AssertXMLEquals(output, expected_output)
100 output = self.GetXMLOfChildren(
112 self.AssertXMLEquals(output, expected_output)
130 output = self.GetXMLOfChildren(self._GetPoliciesElement(self.writer._doc))
132 self.AssertXMLEquals(output, expected_output)
134 output = self.GetXMLOfChildren(
145 self.AssertXMLEquals(output, expected_outpu
[all...]
/external/mesa3d/src/gallium/state_trackers/xorg/
H A Dxorg_output.c80 output_create_resources(xf86OutputPtr output) argument
87 output_dpms(xf86OutputPtr output, int mode) argument
92 output_detect(xf86OutputPtr output) argument
94 modesettingPtr ms = modesettingPTR(output->scrn);
95 struct output_private *priv = output->driver_private;
122 output_get_modes(xf86OutputPtr output) argument
124 struct output_private *priv = output->driver_private;
152 ddc_mon = xf86InterpretEDID(output->scrn->scrnIndex,
158 xf86OutputSetEDID(output, ddc_mon);
195 output_mode_valid(xf86OutputPtr output, DisplayModePt argument
211 output_set_property(xf86OutputPtr output, Atom property, RRPropertyValuePtr value) argument
219 output_get_property(xf86OutputPtr output, Atom property) argument
226 output_destroy(xf86OutputPtr output) argument
256 xf86OutputPtr output; local
332 xorg_output_get_id(xf86OutputPtr output) argument
[all...]

Completed in 733 milliseconds

1234567891011>>