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

1234567891011>>

/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8AudioNodeCustom.cpp48 unsigned output = 0; local
52 output = toInt32(args[1], ok);
64 bool success = audioNode->connect(destinationNode, output, input);
73 unsigned output = 0; local
76 output = toInt32(args[0], ok);
82 bool success = audioNode->disconnect(output);
/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/chromium/src/win/
H A DWebScreenInfoFactory.cpp42 WebRect output; local
43 output.x = input.left;
44 output.y = input.top;
45 output.width = input.right - input.left;
46 output.height = input.bottom - input.top;
47 return output;
/external/chromium/base/
H A Dstring_util_unittest.cc24 const wchar_t* output; member in struct:base::trim_case
42 const char* output; member in struct:base::trim_case_ascii
60 std::string* output) {
62 TruncateUTF8ToByteSize(input, byte_size, output);
63 return prev != output->length();
69 std::string output; local
72 EXPECT_FALSE(Truncated("", 0, &output));
73 EXPECT_EQ(output, "");
74 EXPECT_TRUE(Truncated("\xe1\x80\xbf", 0, &output));
75 EXPECT_EQ(output, "");
59 Truncated(const std::string& input, const size_t byte_size, std::string* output) argument
228 std::wstring output; // Allow contents to carry over to next testcase local
258 const wchar_t* output; member in struct:base::collapse_case
291 const char* output; member in struct:base::collapse_case_ascii
[all...]
H A Dsha1_unittest.cc22 std::string output = base::SHA1HashString(input); local
24 EXPECT_EQ(expected[i], output[i] & 0xFF);
38 std::string output = base::SHA1HashString(input); local
40 EXPECT_EQ(expected[i], output[i] & 0xFF);
53 std::string output = base::SHA1HashString(input); local
55 EXPECT_EQ(expected[i], output[i] & 0xFF);
61 unsigned char output[base::SHA1_LENGTH]; local
70 input.length(), output); local
72 EXPECT_EQ(expected[i], output[i]);
79 unsigned char output[bas local
88 input.length(), output); local
96 unsigned char output[base::SHA1_LENGTH]; local
105 input.length(), output); local
[all...]
H A Dutf_offset_string_conversions.cc21 // determine the source, and the given output STL string will be replaced by
26 std::wstring* output,
43 chars_written = WriteUnicodeCharacter(code_point, output);
45 chars_written = WriteUnicodeCharacter(0xFFFD, output);
72 std::wstring* output,
77 PrepareForUTF16Or32Output(src, src_len, output);
78 bool ret = ConvertUnicode(src, src_len, output, &offsets);
86 std::wstring* output,
88 PrepareForUTF16Or32Output(src, src_len, output);
89 return ConvertUnicode(src, src_len, output, offsets_for_adjustmen
24 ConvertUnicode(const SRC_CHAR* src, size_t src_len, std::wstring* output, std::vector<size_t>* offsets_for_adjustment) argument
70 UTF8ToWideAndAdjustOffset(const char* src, size_t src_len, std::wstring* output, size_t* offset_for_adjustment) argument
84 UTF8ToWideAndAdjustOffsets(const char* src, size_t src_len, std::wstring* output, std::vector<size_t>* offsets_for_adjustment) argument
119 UTF16ToWideAndAdjustOffset(const char16* src, size_t src_len, std::wstring* output, size_t* offset_for_adjustment) argument
129 UTF16ToWideAndAdjustOffsets(const char16* src, size_t src_len, std::wstring* output, std::vector<size_t>* offsets_for_adjustment) argument
162 UTF16ToWideAndAdjustOffset(const char16* src, size_t src_len, std::wstring* output, size_t* offset_for_adjustment) argument
179 UTF16ToWideAndAdjustOffsets(const char16* src, size_t src_len, std::wstring* output, std::vector<size_t>* offsets_for_adjustment) argument
[all...]
/external/chromium/googleurl/src/
H A Durl_canon_relative.cc177 // Copies all characters in the range [begin, end) of |spec| to the output,
186 CanonOutput* output) {
200 output->push_back(spec[i]);
203 // Copies a single component from the source to the output. This is used
209 CanonOutput* output,
217 output_component->begin = output->length();
220 output->push_back(source[i]);
221 output_component->len = output->length() - output_component->begin;
227 // to the output, if there is a drive letter and if that drive letter is not
242 CanonOutput* output) {
183 CopyToLastSlash(const char* spec, int begin, int end, CanonOutput* output) argument
207 CopyOneComponent(const char* source, const url_parse::Component& source_component, CanonOutput* output, url_parse::Component* output_component) argument
236 CopyBaseDriveSpecIfNecessary(const char* base_url, int base_path_begin, int base_path_end, const CHAR* relative_url, int path_start, int relative_url_len, CanonOutput* output) argument
274 DoResolveRelativePath(const char* base_url, const url_parse::Parsed& base_parsed, bool base_is_file, const CHAR* relative_url, const url_parse::Component& relative_component, CharsetConverter* query_converter, CanonOutput* output, url_parse::Parsed* out_parsed) argument
383 DoResolveRelativeHost(const char* base_url, const url_parse::Parsed& base_parsed, const CHAR* relative_url, const url_parse::Component& relative_component, CharsetConverter* query_converter, CanonOutput* output, url_parse::Parsed* out_parsed) argument
415 DoResolveAbsoluteFile(const CHAR* relative_url, const url_parse::Component& relative_component, CharsetConverter* query_converter, CanonOutput* output, url_parse::Parsed* out_parsed) argument
434 DoResolveRelativeURL(const char* base_url, const url_parse::Parsed& base_parsed, bool base_is_file, const CHAR* relative_url, const url_parse::Component& relative_component, CharsetConverter* query_converter, CanonOutput* output, url_parse::Parsed* out_parsed) argument
546 ResolveRelativeURL(const char* base_url, const url_parse::Parsed& base_parsed, bool base_is_file, const char* relative_url, const url_parse::Component& relative_component, CharsetConverter* query_converter, CanonOutput* output, url_parse::Parsed* out_parsed) argument
559 ResolveRelativeURL(const char* base_url, const url_parse::Parsed& base_parsed, bool base_is_file, const char16* relative_url, const url_parse::Component& relative_component, CharsetConverter* query_converter, CanonOutput* output, url_parse::Parsed* out_parsed) argument
[all...]
H A Durl_canon_icu.cc108 CanonOutput* output) {
113 int begin_offset = output->length();
114 int dest_capacity = output->capacity() - begin_offset;
115 output->set_length(output->length());
119 char* dest = &output->data()[begin_offset];
123 output->set_length(begin_offset + required_capacity);
129 output->Resize(begin_offset + dest_capacity);
134 // The output must be ASCII, but is represented as wide characters.
136 // On success, the output wil
142 IDNToASCII(const char16* src, int src_len, CanonOutputW* output) argument
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/
H A Dtree-rewrite.rb12 output=AST;
24 output=AST;
36 output=AST;
48 output=AST;
59 output=AST;
71 output=AST;
82 output=AST;
94 output=AST;
105 output=AST;
117 output
[all...]
/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/oprofile/libutil++/tests/
H A Dstring_manip_tests.cpp25 Output output; member in struct:input_output
31 Output const & output, Result const & result)
33 if (result != output) {
36 << "expect:\n\"" << output << "\"\n"
58 check_result("erase_to_last_of()", cur->input, cur->output,
85 check_result("split()", cur->input, cur->output.first, temp);
86 check_result("split()", cur->input, cur->output.second, result);
108 bool result = is_prefix(cur->input, cur->output.first);
109 if (result != cur->output.second) {
111 << cur->output
30 check_result(char const * fct_name, Input const & input, Output const & output, Result const & result) argument
[all...]
H A Dfile_manip_tests.cpp25 Output output; member in struct:input_output
31 Output const & output, Result const & result)
33 if (result != output) {
36 << "expect:\n\"" << output << "\"\n"
44 Input input2, Output const & output, Result const & result)
46 if (result != output) {
50 << "expect:\n\"" << output << "\"\n"
83 check_result("dirname", cur->input, cur->output, result);
111 check_result("basename", cur->input, cur->output, result);
133 check_result("is_directory", cur->input, cur->output, resul
30 check_result(char const * fct_name, Input const & input, Output const & output, Result const & result) argument
43 check_result(char const * fct_name, Input const & input1, Input input2, Output const & output, Result const & result) argument
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/
H A DJSilver.java37 import com.google.clearsilver.jsilver.output.InstanceOutputBufferProvider;
38 import com.google.clearsilver.jsilver.output.OutputBufferProvider;
39 import com.google.clearsilver.jsilver.output.ThreadLocalOutputBufferProvider;
73 * // Render template to System.out. Writer output = ...;
74 * jSilver.render("say-hello", data, output);
104 // Object used to return Appendable output buffers when needed.
125 // Setup the output buffer provider either with a threadlocal pool
239 * Renders a given template and provided data, writing to an arbitrary output.
243 * @param output Where template should be rendered to. This can be a Writer, PrintStream,
249 public void render(String templateName, Data data, Appendable output, argument
265 render(String templateName, Data data, Appendable output) argument
295 render(Template template, Data data, Appendable output, ResourceLoader resourceLoader) argument
314 render(Template template, Data data, Appendable output) argument
341 renderFromContent(String content, Data data, Appendable output) argument
425 loadData(String dataFileName, Data output) argument
[all...]
/external/chromium/chrome/browser/net/
H A Dquoted_printable_unittest.cc171 std::string output; local
172 chrome::browser::net::QuotedPrintableEncode(kNormalText[i], &output);
174 EXPECT_EQ(expected, output);
181 std::string output; local
183 kEncodedText[i], &output));
186 "\n Actual=\n" << output << "\n Expected=\n" <<
190 EXPECT_TRUE(CompareEOLInsensitive(expected, output));
200 std::string output; local
202 kBadEncodedText[i], &output));
204 EXPECT_EQ(expected, output);
[all...]
/external/javassist/src/main/javassist/bytecode/annotation/
H A DAnnotationsWriter.java32 * output = new ByteArrayOutputStream();
33 * writer = new AnnotationsWriter(output, pool);
43 * byte[] attribute_info = output.toByteArray();
60 private OutputStream output; field in class:AnnotationsWriter
64 * Constructs with the given output stream.
66 * @param os the output stream.
70 output = os;
82 * Closes the output stream.
86 output.close();
96 output
[all...]
/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/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/
H A DSavableSerializer.java51 ByteBuffer output; field in class:SavableSerializer.BufferOutputStream
53 public BufferOutputStream(ByteBuffer output){ argument
54 this.output = output;
59 output.put( (byte) b );
64 output.put(b);
69 output.put(b, off, len);
/external/webkit/Source/WebCore/inspector/
H A DInspectorValues.h72 virtual bool asBoolean(bool* output) const;
73 virtual bool asNumber(double* output) const;
74 virtual bool asNumber(long* output) const;
75 virtual bool asNumber(int* output) const;
76 virtual bool asNumber(unsigned long* output) const;
77 virtual bool asNumber(unsigned int* output) const;
78 virtual bool asString(String* output) const;
79 virtual bool asValue(RefPtr<InspectorValue>* output);
80 virtual bool asObject(RefPtr<InspectorObject>* output);
81 virtual bool asArray(RefPtr<InspectorArray>* output);
[all...]
/external/chromium/sdch/open-vcdiff/src/
H A Dvcdiff_main.cc123 // Opens the output file (the target or delta file) for writing.
127 // Opens the output file (the target file) for comparison against the decoded
128 // output when using "vcdiff test".
142 // Writes the contents of output to output_file_. If successful, returns
144 bool WriteOutput(const string& output);
146 // Reads a number of bytes from output_file_ equal to the size of output,
147 // and compares to make sure they match the contents of output. If the bytes
151 bool CompareOutput(const string& output);
163 // The filenames used for input and output. Will be empty if stdin
168 // stdio-style file handles for the input and output file
323 WriteOutput(const string& output) argument
338 CompareOutput(const string& output) argument
400 string output; local
455 string output; local
519 string output; local
[all...]
/external/protobuf/java/src/test/java/com/google/protobuf/
H A DCodedOutputStreamTest.java83 CodedOutputStream output = CodedOutputStream.newInstance(rawOutput);
84 output.writeRawVarint32((int) value);
85 output.flush();
95 CodedOutputStream output = CodedOutputStream.newInstance(rawOutput);
96 output.writeRawVarint64(value);
97 output.flush();
110 CodedOutputStream output =
112 output.writeRawVarint32((int) value);
113 output.flush();
119 CodedOutputStream output
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
H A DRSACoreEngine.java65 * Return the maximum size for an output block to this engine.
69 * @return maximum size for an output block.
124 byte[] output = result.toByteArray();
128 if (output[0] == 0 && output.length > getOutputBlockSize()) // have ended up with an extra zero byte, copy down.
130 byte[] tmp = new byte[output.length - 1];
132 System.arraycopy(output, 1, tmp, 0, tmp.length);
137 if (output.length < getOutputBlockSize()) // have ended up with less bytes than normal, lengthen
141 System.arraycopy(output, 0, tmp, tmp.length - output
[all...]
/external/clang/test/CodeGen/
H A Dasm.c68 unsigned output; local
70 : "=a" (output)
72 return output;
77 unsigned char output; local
79 : "=a" (output)
81 return output;
85 unsigned char output; local
87 : "=a" (output)
89 return output;
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_AvailTest.java39 String output = "true";
62 output = "Failed avail test1 - " + real + "!=" + expected;
78 // if(real != expected) output = "Failed avail test2 - " + real +
97 output = "Failed avail test3 - " + real + "!=" + expected;
101 output = "IOException during available() testing";
106 myout.write(output.getBytes());
/external/apache-http/src/org/apache/http/impl/conn/
H A DLoggingSessionOutputBuffer.java55 * Create an instance that wraps the specified session output buffer.
56 * @param out The session output buffer.
68 this.wire.output(b, off, len);
75 this.wire.output(b);
82 this.wire.output(b);
94 this.wire.output(s + "[EOL]");
101 this.wire.output(s + "[EOL]");
/external/chromium/chrome/browser/
H A Dbrowser_about_handler.h44 // to the tcmalloc output collected for each process.
54 // Records the output for a specified header string.
55 void SetOutput(const std::string& header, const std::string& output) { argument
56 outputs_[header] = output;
59 // Callback for output returned from renderer processes. Adds
60 // the output for a canonical renderer header string that
62 void RendererCallback(base::ProcessId pid, const std::string& output) { argument
63 SetOutput(StringPrintf("Renderer PID %d", static_cast<int>(pid)), output);
79 const std::string& output);

Completed in 3335 milliseconds

1234567891011>>