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

1234567891011>>

/external/webkit/Source/JavaScriptCore/yarr/
H A DYarrJIT.h50 typedef int (*YarrJITCode)(const UChar* input, unsigned start, unsigned length, int* output) YARR_CALL;
66 int execute(const UChar* input, unsigned start, unsigned length, int* output) argument
68 return reinterpret_cast<YarrJITCode>(m_ref.m_code.executableAddress())(input, start, length, output);
81 int execute(YarrCodeBlock& jitObject, const UChar* input, unsigned start, unsigned length, int* output);
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DTranslatorHLSL.cpp21 outputHLSL.output();
/external/webkit/Source/WebCore/gyp/
H A Dstreamline-inspector-source.sh9 "$SRCROOT/../inspector/combine-javascript-resources.pl" --input-html "${SRCROOT}/../inspector/front-end/inspector.html" --generated-scripts-dir ${BUILT_PRODUCTS_DIR}/DerivedSources/WebCore --output-dir "${DERIVED_FILE_DIR}/WebCore" --output-script-name inspector.js
/external/apache-http/src/org/apache/http/impl/conn/
H A DWire.java87 public void output(InputStream outstream) method in class:Wire
103 public void output(byte[] b, int off, int len) method in class:Wire
119 public void output(byte[] b) method in class:Wire
135 public void output(int b) method in class:Wire
137 output(new byte[] {(byte) b});
145 public void output(final String s) method in class:Wire
150 output(s.getBytes());
/external/chromium/googleurl/src/
H A Durl_util.h136 // output and parsed structures will still be filled and will be consistent,
141 url_canon::CanonOutput* output,
146 url_canon::CanonOutput* output,
157 // Returns true if the output is valid, false if the input could not produce
165 url_canon::CanonOutput* output,
173 url_canon::CanonOutput* output,
177 // is written to output and out_parsed.
186 url_canon::CanonOutput* output,
194 url_canon::CanonOutput* output,
218 url_canon::CanonOutputW* output);
[all...]
H A Durl_canon.h41 // Canonicalizer output -------------------------------------------------------
43 // Base class for the canonicalizer output, this maintains a buffer and
92 // Called by the user of this class to get the output. The output will NOT
133 // Appends the given string to the output.
195 // Normally, all canonicalization output is in narrow characters. We support
219 // Converts the given input string from UTF-16 to whatever output format the
222 // character" characters in the output for invalid sequences, and do the
225 // If the input contains a character not representable in the output
232 CanonOutput* output)
[all...]
/external/opencv/cvaux/src/
H A Dextendededges.cpp65 CvSeq* output = 0; local
88 output = tail_seq = new_seq;
117 return output;
136 CvSeq* output = 0; local
192 output = tail = newseq;
212 output = tail = newseq;
217 return output;
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/
H A Drewrites.rb62 options {language=Ruby;output=AST;}
75 options {language=Ruby;output=AST;}
89 options {language=Ruby;output=AST;}
103 options {language=Ruby;output=AST;}
117 options {language=Ruby;output=AST;}
130 options {language=Ruby;output=AST;}
144 options {language=Ruby;output=AST;}
158 options {language=Ruby;output=AST;}
173 options {language=Ruby;output=AST;}
187 options {language=Ruby;output
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DDebugInfoEncoder.java64 private final ByteArrayAnnotatedOutput output; field in class:DebugInfoEncoder
79 * if non-null: the output to write annotations to. No normal
80 * output is written to this.
84 /** if non-null: another possible output for annotations */
90 /** true if output should be consumed during annotation */
119 output = new ByteArrayAnnotatedOutput();
173 * @param prefix {@code null-ok;} prefix to attach to each line of output
174 * @param debugPrint {@code null-ok;} if specified, an alternate output for
177 * @param consume whether to claim to have consumed output for
179 * @return {@code non-null;} encoded output
[all...]
/external/chromium/base/debug/
H A Ddebugger_win.cc45 bool StringReplace(const wchar_t* input, int value, wchar_t* output, argument
47 memset(output, 0, output_len*sizeof(wchar_t));
51 int current_output_len = lstrlen(output);
59 wsprintf(output+current_output_len, L"%d", value);
64 output[current_output_len] = input[i];
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-java/
H A DHelloLicenseServlet.java58 PrintWriter output = response.getWriter();
64 output.printf(
95 output.printf(
103 output.printf("Oops! <strong>%s</strong>", exception.getMessage());
107 output.printf(
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-java/workspace/HelloLicense/src/com/example/
H A DHelloLicenseServlet.java58 PrintWriter output = response.getWriter();
64 output.printf(
95 output.printf(
103 output.printf("Oops! <strong>%s</strong>", exception.getMessage());
107 output.printf(
/external/protobuf/src/google/protobuf/
H A Dtext_format.cc141 // information into the output pointer (a Message). Returns
144 bool Parse(Message* output) { argument
151 DO(ConsumeField(output));
155 bool ParseField(const FieldDescriptor* field, Message* output) { argument
158 suc = ConsumeFieldMessage(output, output->GetReflection(), field);
160 suc = ConsumeFieldValue(output, output->GetReflection(), field);
649 explicit TextGenerator(io::ZeroCopyOutputStream* output, argument
651 : output_(output),
774 Parse(io::ZeroCopyInputStream* input, Message* output) argument
782 ParseFromString(const string& input, Message* output) argument
788 Merge(io::ZeroCopyInputStream* input, Message* output) argument
795 MergeFromString(const string& input, Message* output) argument
801 MergeUsingImpl(io::ZeroCopyInputStream* input, Message* output, ParserImpl* parser_impl) argument
815 ParseFieldValueFromString( const string& input, const FieldDescriptor* field, Message* output) argument
825 Parse(io::ZeroCopyInputStream* input, Message* output) argument
830 Merge(io::ZeroCopyInputStream* input, Message* output) argument
835 ParseFromString(const string& input, Message* output) argument
840 MergeFromString(const string& input, Message* output) argument
855 PrintToString(const Message& message, string* output) argument
867 PrintUnknownFieldsToString( const UnknownFieldSet& unknown_fields, string* output) argument
877 Print(const Message& message, io::ZeroCopyOutputStream* output) argument
887 PrintUnknownFields( const UnknownFieldSet& unknown_fields, io::ZeroCopyOutputStream* output) argument
909 PrintFieldValueToString( const Message& message, const FieldDescriptor* field, int index, string* output) argument
1097 Print(const Message& message, io::ZeroCopyOutputStream* output) argument
1102 PrintUnknownFields( const UnknownFieldSet& unknown_fields, io::ZeroCopyOutputStream* output) argument
1108 PrintToString( const Message& message, string* output) argument
1113 PrintUnknownFieldsToString( const UnknownFieldSet& unknown_fields, string* output) argument
1118 PrintFieldValueToString( const Message& message, const FieldDescriptor* field, int index, string* output) argument
[all...]
/external/harfbuzz/contrib/
H A Dharfbuzz-unicode.c92 hb_utf16_script_run_next(unsigned *num_code_points, HB_ScriptItem *output, argument
97 output->pos = *iter;
104 output->script = init_script;
122 output->script = script;
135 if (output->script == HB_Script_Inherited)
136 output->script = HB_Script_Common;
138 output->length = *iter - output->pos;
145 hb_utf16_script_run_prev(unsigned *num_code_points, HB_ScriptItem *output, argument
157 output
[all...]
/external/protobuf/gtest/test/
H A Dgtest-options_test.cc70 GTEST_FLAG(output) = "";
75 GTEST_FLAG(output) = "xml:filename";
80 GTEST_FLAG(output) = "";
86 GTEST_FLAG(output) = "xml:filename.abc";
93 GTEST_FLAG(output) = "xml:path\\";
107 GTEST_FLAG(output) = "xml:path/";
110 // named lt-gtest-options_test. Therefore the output file may be
167 GTEST_FLAG(output) = "";
174 GTEST_FLAG(output) = "xml";
181 GTEST_FLAG(output)
[all...]
/external/chromium/chrome/browser/autocomplete/
H A Dhistory_provider.cc92 string16 output = UTF8ToUTF16(canonical_gurl_str); local
98 TrimHttpPrefix(&output);
100 // Make the number of trailing slashes on the output exactly match the input.
119 output.find_last_not_of(ASCIIToUTF16("/\\"));
122 output.length() : (output.length() - 1 - last_output_nonslash);
124 output.append(num_input_slashes - num_output_slashes, '/');
126 output.erase(output.length() - num_output_slashes + num_input_slashes);
128 return output;
[all...]
/external/chromium/net/tools/flip_server/
H A Dloadtime_measurement.h39 void ProcessRequest(const std::string& uri, std::string& output) { argument
43 read_file_to_string(pageload_html_file_.c_str(), &output);
49 output.append(buffer, strlen(buffer));
57 output.append(urls_[num]);
68 output.append("OK");
81 output.append("OK");
87 void read_file_to_string(const char* filename, std::string* output) { argument
88 output->clear();
95 output->append(buffer, static_cast<size_t>(read_status));
/external/webkit/Source/WebCore/webaudio/
H A DAudioNode.cpp96 void AudioNode::addOutput(PassOwnPtr<AudioNodeOutput> output) argument
98 m_outputs.append(output);
106 AudioNodeOutput* AudioNode::output(unsigned i) function in class:WebCore::AudioNode
116 // Sanity check input and output indices.
122 AudioNodeOutput* output = this->output(outputIndex);
124 // Disconnect output from any inputs it may be currently connected to.
125 output->disconnectAllInputs();
130 input->connect(output);
154 // This handles the "fanout" problem where an output i
[all...]
/external/chromium/base/
H A Dtracked_objects.cc55 void DeathData::Write(std::string* output) const {
59 base::StringAppendF(output, "(1)Life in %dms ", AverageMsDuration());
61 base::StringAppendF(output, "(%d)Lives %dms/life ",
160 void ThreadData::WriteHTML(const std::string& query, std::string* output) { argument
166 output->append("<html><head><title>About Tasks");
169 output->append(" - " + escaped_query);
170 output->append("</title></head><body><pre>");
192 WriteHTMLTotalAndSubtotals(match_array, comparator, output);
196 output->append("</pre>");
224 output
229 WriteHTMLTotalAndSubtotals( const DataCollector::Collection& match_array, const Comparator& comparator, std::string* output) argument
[all...]
/external/chromium/chrome/browser/net/
H A Durl_info.cc193 // This last section supports HTML output, such as seen in about:dns.
199 std::string output(text);
200 size_t length = output.length();
202 char next = output[i];
205 output[i] = '?';
207 return output;
266 std::string* output) {
269 output->append(description);
270 base::StringAppendF(output, "%" PRIuS " %s", host_infos.size(),
274 output
263 GetHtmlTable(const UrlInfoTable& host_infos, const char* description, bool brief, std::string* output) argument
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
H A Dll-star.rb12 @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/chromium/chrome/browser/password_manager/
H A Die7_password.cc115 DATA_BLOB output = {0}; local
128 CRYPTPROTECT_UI_FORBIDDEN, &output)) {
131 decrypted_data.resize(output.cbData);
132 memcpy(&decrypted_data.front(), output.pbData, output.cbData);
136 LocalFree(output.pbData);
/external/chromium/chrome/browser/sync/syncable/
H A Dmodel_type_unittest.cc71 ModelTypeBitSet input, output; local
76 EXPECT_TRUE(ModelTypeBitSetFromString(input_string, &output));
77 EXPECT_EQ(input, output);
80 EXPECT_FALSE(ModelTypeBitSetFromString(input_string, &output));
83 EXPECT_FALSE(ModelTypeBitSetFromString(input_string, &output));
88 EXPECT_FALSE(ModelTypeBitSetFromString(input_string, &output));
/external/chromium/crypto/
H A Drsa_private_key_openssl.cc25 // Helper to export |key| into |output| via the specified ExportFunction.
28 std::vector<uint8>* output) {
44 STLAssignToVector(output, reinterpret_cast<const uint8*>(data), len);
127 bool RSAPrivateKey::ExportPrivateKey(std::vector<uint8>* output) { argument
128 return ExportKey(key_, i2d_PKCS8PrivateKeyInfo_bio, output);
131 bool RSAPrivateKey::ExportPublicKey(std::vector<uint8>* output) { argument
132 return ExportKey(key_, i2d_PUBKEY_bio, output);
26 ExportKey(EVP_PKEY* key, ExportFunction export_fn, std::vector<uint8>* output) argument
/external/clang/lib/StaticAnalyzer/Checkers/
H A DAnalyzerStatsChecker.cpp92 llvm::raw_svector_ostream output(buf);
99 output << *ND;
102 output << "block(line:" << Loc.getLine() << ":col:" << Loc.getColumn();
107 std::string NameOfRootFunction = output.str();
109 output << " -> Total CFGBlocks: " << total << " | Unreachable CFGBlocks: "
116 output.str(), PathDiagnosticLocation(D, SM));

Completed in 392 milliseconds

1234567891011>>