Searched defs:output (Results 51 - 75 of 548) sorted by relevance

1234567891011>>

/external/libxml2/include/libxml/
H A DdebugXML.h29 xmlDebugDumpString (FILE *output,
32 xmlDebugDumpAttr (FILE *output,
36 xmlDebugDumpAttrList (FILE *output,
40 xmlDebugDumpOneNode (FILE *output,
44 xmlDebugDumpNode (FILE *output,
48 xmlDebugDumpNodeList (FILE *output,
52 xmlDebugDumpDocumentHead(FILE *output,
55 xmlDebugDumpDocument (FILE *output,
58 xmlDebugDumpDTD (FILE *output,
61 xmlDebugDumpEntities (FILE *output,
119 FILE *output; member in struct:_xmlShellCtxt
[all...]
/external/llvm/utils/
H A DDSAextract.py10 #on DSA dot output and not general dot files this is ok.
14 #DSA dot output files)
81 #open the output file
82 output = open(sys.argv[2], 'w') variable
97 #if they are print this to output
103 output.write(buffer)
107 output.write(buffer)
109 output.write(buffer)
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/
H A DDebug.java26 public final static void print8x8(int[] output) { argument
30 System.out.printf("%3d, ", output[i]);
37 public final static void print8x8(short[] output) { argument
41 System.out.printf("%3d, ", output[i]);
48 public final static void print8x8(ShortBuffer output) { argument
51 System.out.printf("%3d, ", output.get());
/external/openssh/openbsd-compat/
H A Dbase64.c78 The encoding process represents 24-bit groups of input bits as output
86 output string.
122 output will be an integral multiple of 4 characters
125 here, the final unit of encoded output will be two
128 here, the final unit of encoded output will be three
138 u_char output[4]; local
147 output[0] = input[0] >> 2;
148 output[1] = ((input[0] & 0x03) << 4) + (input[1] >> 4);
149 output[2] = ((input[1] & 0x0f) << 2) + (input[2] >> 6);
150 output[
[all...]
/external/openssl/crypto/des/
H A Dcbc3_enc.c62 void DES_3cbc_encrypt(DES_cblock *input, DES_cblock *output, long length, argument
73 (unsigned char*)output,length,&ks1,iv1,enc);
75 memcpy(niv1,output[off],sizeof(DES_cblock));
76 DES_cbc_encrypt((unsigned char*)output,
77 (unsigned char*)output,l8,&ks2,iv1,!enc);
78 DES_cbc_encrypt((unsigned char*)output,
79 (unsigned char*)output,l8,&ks1,iv2,enc);
81 memcpy(niv2,output[off],sizeof(DES_cblock));
88 (unsigned char*)output,l8,&ks1,iv2,enc);
89 DES_cbc_encrypt((unsigned char*)output,
[all...]
H A Dcbc_cksm.c61 DES_LONG DES_cbc_cksum(const unsigned char *in, DES_cblock *output, argument
68 unsigned char *out = &(*output)[0];
H A Decb3_enc.c61 void DES_ecb3_encrypt(const_DES_cblock *input, DES_cblock *output, argument
69 unsigned char *out = &(*output)[0];
/external/protobuf/src/google/protobuf/compiler/
H A Dcode_generator.cc55 vector<pair<string, string> >* output) {
69 output->push_back(value);
54 ParseGeneratorParameter(const string& text, vector<pair<string, string> >* output) argument
/external/stlport/test/unit/
H A Dptr2_test.cpp48 int output [4]; local
49 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, pointer_to_binary_function<int, int, int>(sum));
51 CPPUNIT_ASSERT(output[0]==8);
52 CPPUNIT_ASSERT(output[1]==7);
53 CPPUNIT_ASSERT(output[2]==8);
54 CPPUNIT_ASSERT(output[3]==13);
61 int output [4]; local
62 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, ptr_fun(sum));
64 CPPUNIT_ASSERT(output[0]==8);
65 CPPUNIT_ASSERT(output[
[all...]
H A Dunary_test.cpp78 double output[3]; local
79 transform((int*)input, (int*)input + 3, output, unary_compose<square_root, negate<int> >(square_root(), negate<int>()));
81 CPPUNIT_ASSERT(output[0]==1);
82 CPPUNIT_ASSERT(output[1]==2);
83 CPPUNIT_ASSERT(output[2]==4);
91 double output [3]; local
92 transform((int*)input, (int*)input + 3, output, compose1(square_root(), negate<int>()));
94 CPPUNIT_ASSERT(output[0]==1);
95 CPPUNIT_ASSERT(output[1]==2);
96 CPPUNIT_ASSERT(output[
[all...]
/external/webkit/Source/JavaScriptCore/wtf/
H A DMallocZoneSupport.h48 void* output; local
49 kern_return_t err = (*m_reader)(m_task, address, size, static_cast<void**>(&output));
51 output = 0;
52 return output;
64 T** output = (*this)(address); local
65 if (!output)
67 return *output;
/external/webkit/Source/WebCore/html/
H A DDOMTokenList.cpp69 Vector<UChar> output; // 3 local
70 output.reserveCapacity(inputLength);
76 output.append(input[position++]); // 6.1, 6.2
92 size_t j = output.size();
93 while (j > 0 && isHTMLSpace(output[j - 1]))
95 output.resize(j);
98 if (position < inputLength && !output.isEmpty())
99 output.append(' ');
101 output.append(s); // Step 9
104 output
[all...]
/external/webkit/Source/WebCore/webaudio/
H A DAudioChannelMerger.cpp60 AudioNodeOutput* output = this->output(0); local
61 ASSERT(output);
62 ASSERT_UNUSED(framesToProcess, framesToProcess == output->bus()->length());
72 // Set the correct number of channels on the output
73 output->setNumberOfChannels(numberOfOutputChannels);
75 // Now merge the channels back into one output.
85 AudioChannel* outputChannel = output->bus()->channel(outputChannelIndex);
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebpluginfactory.cpp224 \brief The ExtensionOption class provides an extended output argument to QWebPluginFactory's extension support.
233 argument is provided as input to the extension; the output results can be stored in \a output.
245 bool QWebPluginFactory::extension(Extension extension, const ExtensionOption *option, ExtensionReturn *output) argument
249 Q_UNUSED(output)
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/
H A DTestCase.java33 private ITestCaseOutput output; field in class:TestCase
49 return this.output;
52 public TestCase(ITestCaseInput input, ITestCaseOutput output) { argument
54 this.output = output;
59 return String.format("[%s]->[%s]", input.getScript(), output.getScript());
67 this.output = out;
/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/apache-xml/src/main/java/org/apache/xml/serializer/
H A DSerializer.java54 * // of the same output method (TEXT).
75 * dser.serialize(inputDoc); // serialize the DOM, sending output to owriter
78 * // of the same output method.
94 * Specifies an output stream to which the document should be
98 * The encoding specified in the output {@link Properties} is used, or
100 * output method.
104 * @param output The output stream
106 public void setOutputStream(OutputStream output); argument
109 * Get the output strea
[all...]
/external/chromium/base/
H A Dstring_number_conversions_unittest.cc63 std::string output; member in struct:base::__anon1598
72 EXPECT_EQ(cases[i].output, Uint64ToString(cases[i].input));
78 int output; member in struct:base::__anon1599
109 int output = 0; local
110 EXPECT_EQ(cases[i].success, StringToInt(cases[i].input, &output));
111 EXPECT_EQ(cases[i].output, output);
112 output = 0;
115 &output));
116 EXPECT_EQ(cases[i].output, outpu
143 int output; local
176 int64 output; member in struct:base::__anon1600
214 int64 output = 0; local
248 int64 output; local
278 int output; member in struct:base::__anon1601
313 int output = 0; local
331 int output; local
347 const char* output; member in struct:base::__anon1602
372 std::vector<uint8> output; local
387 double output; member in struct:base::__anon1603
421 double output; local
431 double output; local
[all...]
H A Dutf_string_conversions.cc22 // determine the source, and the given output STL string will be replaced by
27 DEST_STRING* output) {
34 WriteUnicodeCharacter(code_point, output);
36 WriteUnicodeCharacter(0xFFFD, output);
48 bool WideToUTF8(const wchar_t* src, size_t src_len, std::string* output) { argument
49 PrepareForUTF8Output(src, src_len, output);
50 return ConvertUnicode(src, src_len, output);
61 bool UTF8ToWide(const char* src, size_t src_len, std::wstring* output) { argument
62 PrepareForUTF16Or32Output(src, src_len, output);
63 return ConvertUnicode(src, src_len, output);
25 ConvertUnicode(const SRC_CHAR* src, size_t src_len, DEST_STRING* output) argument
77 WideToUTF16(const wchar_t* src, size_t src_len, string16* output) argument
86 UTF16ToWide(const char16* src, size_t src_len, std::wstring* output) argument
97 WideToUTF16(const wchar_t* src, size_t src_len, string16* output) argument
111 UTF16ToWide(const char16* src, size_t src_len, std::wstring* output) argument
131 UTF8ToUTF16(const char* src, size_t src_len, string16* output) argument
144 UTF16ToUTF8(const char16* src, size_t src_len, std::string* output) argument
160 UTF8ToUTF16(const char* src, size_t src_len, string16* output) argument
168 UTF16ToUTF8(const char16* src, size_t src_len, std::string* output) argument
[all...]
/external/chromium/chrome/browser/autofill/
H A Ddata_driven_test.cc51 std::string output; local
52 GenerateResults(input, &output);
60 EXPECT_EQ(output_file_contents, output);
62 ASSERT_TRUE(WriteFile(output_file, output));
82 .AppendASCII("output");
/external/chromium/crypto/
H A Dencryptor_mac.cc42 std::string* output) {
45 // CommonCryptor.h: "A general rule for the size of the output buffer which
46 // must be provided by the caller is that for block ciphers, the output
56 WriteInto(output, output_size+1),
60 output->resize(0);
64 output->resize(output_size);
40 Crypt(int op, const std::string& input, std::string* output) argument
H A Drsa_private_key_unittest.cc169 std::vector<uint8> output; local
170 ASSERT_TRUE(key->ExportPublicKey(&output));
173 memcmp(expected_public_key_info, &output.front(), output.size()) == 0);
/external/chromium/googleurl/src/
H A Durl_canon_mailtourl.cc45 CanonOutput* output,
57 new_parsed->scheme.begin = output->length();
58 output->Append("mailto:", 7);
65 new_parsed->path.begin = output->length();
74 success &= AppendUTF8EscapedChar(source.path, &i, end, output);
76 output->push_back(static_cast<char>(uch));
79 new_parsed->path.len = output->length() - new_parsed->path.begin;
87 output, &new_parsed->query);
97 CanonOutput* output,
100 URLComponentSource<char>(spec), parsed, output, new_parse
43 DoCanonicalizeMailtoURL(const URLComponentSource<CHAR>& source, const url_parse::Parsed& parsed, CanonOutput* output, url_parse::Parsed* new_parsed) argument
94 CanonicalizeMailtoURL(const char* spec, int spec_len, const url_parse::Parsed& parsed, CanonOutput* output, url_parse::Parsed* new_parsed) argument
103 CanonicalizeMailtoURL(const char16* spec, int spec_len, const url_parse::Parsed& parsed, CanonOutput* output, url_parse::Parsed* new_parsed) argument
112 ReplaceMailtoURL(const char* base, const url_parse::Parsed& base_parsed, const Replacements<char>& replacements, CanonOutput* output, url_parse::Parsed* new_parsed) argument
124 ReplaceMailtoURL(const char* base, const url_parse::Parsed& base_parsed, const Replacements<char16>& replacements, CanonOutput* output, url_parse::Parsed* new_parsed) argument
[all...]
H A Durl_canon_pathurl.cc44 CanonOutput* output,
48 output, &new_parsed->scheme);
61 new_parsed->path.begin = output->length();
66 success &= AppendUTF8EscapedChar(source.path, &i, end, output);
68 output->push_back(static_cast<char>(uch));
70 new_parsed->path.len = output->length() - new_parsed->path.begin;
88 CanonOutput* output,
91 URLComponentSource<char>(spec), parsed, output, new_parsed);
97 CanonOutput* output,
100 URLComponentSource<char16>(spec), parsed, output, new_parse
42 DoCanonicalizePathURL(const URLComponentSource<CHAR>& source, const url_parse::Parsed& parsed, CanonOutput* output, url_parse::Parsed* new_parsed) argument
85 CanonicalizePathURL(const char* spec, int spec_len, const url_parse::Parsed& parsed, CanonOutput* output, url_parse::Parsed* new_parsed) argument
94 CanonicalizePathURL(const char16* spec, int spec_len, const url_parse::Parsed& parsed, CanonOutput* output, url_parse::Parsed* new_parsed) argument
103 ReplacePathURL(const char* base, const url_parse::Parsed& base_parsed, const Replacements<char>& replacements, CanonOutput* output, url_parse::Parsed* new_parsed) argument
115 ReplacePathURL(const char* base, const url_parse::Parsed& base_parsed, const Replacements<char16>& replacements, CanonOutput* output, url_parse::Parsed* new_parsed) argument
[all...]
H A Durl_canon_query.cc79 // Appends the given string to the output, escaping characters that do not
85 CanonOutput* output) {
88 AppendEscapedChar(static_cast<unsigned char>(source[i]), output); local
90 output->push_back(static_cast<char>(source[i]));
99 CanonOutput* output) {
104 converter->ConvertFromUTF16(utf16.data(), utf16.length(), output);
113 CanonOutput* output) {
114 converter->ConvertFromUTF16(&spec[query.begin], query.len, output);
121 CanonOutput* output) {
124 AppendRaw8BitQueryString(&spec[query.begin], query.len, output);
84 AppendRaw8BitQueryString(const CHAR* source, int length, CanonOutput* output) argument
96 RunConverter(const char* spec, const url_parse::Component& query, CharsetConverter* converter, CanonOutput* output) argument
110 RunConverter(const char16* spec, const url_parse::Component& query, CharsetConverter* converter, CanonOutput* output) argument
118 DoConvertToQueryEncoding(const CHAR* spec, const url_parse::Component& query, CharsetConverter* converter, CanonOutput* output) argument
143 DoCanonicalizeQuery(const CHAR* spec, const url_parse::Component& query, CharsetConverter* converter, CanonOutput* output, url_parse::Component* out_query) argument
163 CanonicalizeQuery(const char* spec, const url_parse::Component& query, CharsetConverter* converter, CanonOutput* output, url_parse::Component* out_query) argument
172 CanonicalizeQuery(const char16* spec, const url_parse::Component& query, CharsetConverter* converter, CanonOutput* output, url_parse::Component* out_query) argument
181 ConvertUTF16ToQueryEncoding(const char16* input, const url_parse::Component& query, CharsetConverter* converter, CanonOutput* output) argument
[all...]

Completed in 488 milliseconds

1234567891011>>