Searched defs:write (Results 276 - 300 of 669) sorted by relevance

<<11121314151617181920>>

/external/okhttp/okio/okio/src/main/java/okio/
H A DSegmentedByteString.java156 @Override public void write(OutputStream out) throws IOException { method in class:SegmentedByteString
162 out.write(segments[s], segmentPos, nextSegmentOffset - segmentOffset);
167 @Override void write(Buffer buffer) { method in class:SegmentedByteString
/external/okhttp/okio/okio/src/test/java/okio/
H A DByteStringTest.java172 @Test public void write() throws Exception { method in class:ByteStringTest
174 ByteString.decodeHex("616263").write(out);
/external/opencv/cxcore/src/
H A Dcximage.cpp184 CV_FUNCNAME( "CvImage::write" );
205 void CvImage::write( CvFileStorage* fs, const char* imgname ) function in class:CvImage
337 CV_FUNCNAME( "CvMatrix::write" );
358 void CvMatrix::write( CvFileStorage* fs, const char* matname ) function in class:CvMatrix
/external/parameter-framework/asio/include/asio/impl/
H A Dwrite.hpp2 // impl/write.hpp
34 std::size_t write(SyncWriteStream& s, const ConstBufferSequence& buffers, function in namespace:asio
55 inline std::size_t write(SyncWriteStream& s, const ConstBufferSequence& buffers) function in namespace:asio
58 std::size_t bytes_transferred = write(s, buffers, transfer_all(), ec);
59 asio::detail::throw_error(ec, "write");
64 inline std::size_t write(SyncWriteStream& s, const ConstBufferSequence& buffers, function in namespace:asio
67 return write(s, buffers, transfer_all(), ec);
72 inline std::size_t write(SyncWriteStream& s, const ConstBufferSequence& buffers, function in namespace:asio
76 std::size_t bytes_transferred = write(s, buffers, completion_condition, ec);
77 asio::detail::throw_error(ec, "write");
[all...]
/external/parameter-framework/asio-1.10.6/include/asio/impl/
H A Dwrite.hpp2 // impl/write.hpp
34 std::size_t write(SyncWriteStream& s, const ConstBufferSequence& buffers, function in namespace:asio
55 inline std::size_t write(SyncWriteStream& s, const ConstBufferSequence& buffers) function in namespace:asio
58 std::size_t bytes_transferred = write(s, buffers, transfer_all(), ec);
59 asio::detail::throw_error(ec, "write");
64 inline std::size_t write(SyncWriteStream& s, const ConstBufferSequence& buffers, function in namespace:asio
67 return write(s, buffers, transfer_all(), ec);
72 inline std::size_t write(SyncWriteStream& s, const ConstBufferSequence& buffers, function in namespace:asio
76 std::size_t bytes_transferred = write(s, buffers, completion_condition, ec);
77 asio::detail::throw_error(ec, "write");
[all...]
/external/skia/include/core/
H A DSkWriteBuffer.h90 void write(const void* buffer, size_t bytes) { function in class:SkBinaryWriteBuffer
91 fWriter.write(buffer, bytes);
/external/skia/src/pdf/
H A DSkDeflate.cpp33 // called by both write() and finalize()
49 out->write(outBuffer, sizeof(outBuffer) - zStream->avail_out);
96 bool SkDeflateWStream::write(const void* void_buffer, size_t len) { function in class:SkDeflateWStream
/external/sl4a/InterpreterForAndroid/src/com/googlecode/android_scripting/
H A DZipExtractorTask.java61 public void write(byte[] buffer, int offset, int count) throws IOException { method in class:ZipExtractorTask.ProgressReportingOutputStream
62 super.write(buffer, offset, count);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
H A DDexDataWriter.java43 * The position within the file that we will write to next. This is only updated when the buffer is flushed to the
60 * @param output An OutputStream to write the data to.
61 * @param filePosition The position within the file that OutputStream will write to.
74 public void write(int b) throws IOException { method in class:DexDataWriter
76 super.write(b);
80 public void write(byte[] b) throws IOException { method in class:DexDataWriter
81 write(b, 0, b.length);
85 public void write(byte[] b, int off, int len) throws IOException { method in class:DexDataWriter
87 super.write(b, off, len);
96 out.write(valu
[all...]
H A DInstructionWriter.java106 public void write(@Nonnull Instruction10t instruction) { method in class:InstructionWriter
108 writer.write(getOpcodeValue(instruction.getOpcode()));
109 writer.write(instruction.getCodeOffset());
115 public void write(@Nonnull Instruction10x instruction) { method in class:InstructionWriter
117 writer.write(getOpcodeValue(instruction.getOpcode()));
118 writer.write(0);
124 public void write(@Nonnull Instruction11n instruction) { method in class:InstructionWriter
126 writer.write(getOpcodeValue(instruction.getOpcode()));
127 writer.write(packNibbles(instruction.getRegisterA(), instruction.getNarrowLiteral()));
133 public void write( method in class:InstructionWriter
142 public void write(@Nonnull Instruction12x instruction) { method in class:InstructionWriter
151 public void write(@Nonnull Instruction20bc instruction) { method in class:InstructionWriter
161 public void write(@Nonnull Instruction20t instruction) { method in class:InstructionWriter
171 public void write(@Nonnull Instruction21c instruction) { method in class:InstructionWriter
181 public void write(@Nonnull Instruction21ih instruction) { method in class:InstructionWriter
191 public void write(@Nonnull Instruction21lh instruction) { method in class:InstructionWriter
201 public void write(@Nonnull Instruction21s instruction) { method in class:InstructionWriter
211 public void write(@Nonnull Instruction21t instruction) { method in class:InstructionWriter
221 public void write(@Nonnull Instruction22b instruction) { method in class:InstructionWriter
232 public void write(@Nonnull Instruction22c instruction) { method in class:InstructionWriter
242 public void write(@Nonnull Instruction22s instruction) { method in class:InstructionWriter
252 public void write(@Nonnull Instruction22t instruction) { method in class:InstructionWriter
262 public void write(@Nonnull Instruction22x instruction) { method in class:InstructionWriter
272 public void write(@Nonnull Instruction23x instruction) { method in class:InstructionWriter
283 public void write(@Nonnull Instruction30t instruction) { method in class:InstructionWriter
293 public void write(@Nonnull Instruction31c instruction) { method in class:InstructionWriter
303 public void write(@Nonnull Instruction31i instruction) { method in class:InstructionWriter
313 public void write(@Nonnull Instruction31t instruction) { method in class:InstructionWriter
323 public void write(@Nonnull Instruction32x instruction) { method in class:InstructionWriter
334 public void write(@Nonnull Instruction35c instruction) { method in class:InstructionWriter
346 public void write(@Nonnull Instruction3rc instruction) { method in class:InstructionWriter
357 public void write(@Nonnull Instruction45cc instruction) { method in class:InstructionWriter
370 public void write(@Nonnull Instruction4rcc instruction) { method in class:InstructionWriter
382 public void write(@Nonnull Instruction51l instruction) { method in class:InstructionWriter
392 public void write(@Nonnull ArrayPayload instruction) { method in class:InstructionWriter
428 public void write(@Nonnull SparseSwitchPayload instruction) { method in class:InstructionWriter
452 public void write(@Nonnull PackedSwitchPayload instruction) { method in class:InstructionWriter
[all...]
/external/smali/util/src/main/java/org/jf/util/
H A DIndentingWriter.java47 writer.write(' ');
52 public void write(int chr) throws IOException { method in class:IndentingWriter
54 writer.write(newLine);
61 writer.write(chr);
73 writer.write(chars, start, len);
85 writer.write(str, start, len);
89 public void write(char[] chars) throws IOException { method in class:IndentingWriter
90 write(chars, 0, chars.length);
94 public void write(char[] chars, int start, int len) throws IOException { method in class:IndentingWriter
101 writer.write(newLin
113 public void write(String s) throws IOException { method in class:IndentingWriter
118 public void write(String str, int start, int len) throws IOException { method in class:IndentingWriter
[all...]
/external/swiftshader/third_party/LLVM/test/Scripts/
H A Dcoff-dump.py250 def write(input): function
265 sys.stdout.write(output)
318 write("%s|%s|\n" % (bytes, text))
379 write(format % value)
416 write("%s (" % description)
418 write(")")
439 write("\n%s" % map[selection])
441 write("\n%s <%d>" % (name, selection))
444 write("\n%s" % name)
455 write("{\
[all...]
/external/syslinux/com32/include/syslinux/
H A Dfirmware.h29 int (*write)(void); member in struct:adv_ops
/external/syslinux/com32/lib/sys/
H A Dfile.h69 ssize_t (*write)(struct file_info *, const void *, size_t); member in struct:output_dev
/external/vulkan-validation-layers/
H A Dgenerator.py19 def write( *args, **kwargs ): function
22 file.write( ' '.join([str(arg) for arg in args]) )
23 file.write( end )
92 # filename - basename of file to generate, or None to write to stdout.
154 # errFile, warnFile, diagFile - file handles to write errors,
155 # warnings, diagnostics to. May be None to not write.
167 # beginFeature(interface, emit) - write interface for a feature
170 # emit - actually write to the header only when True
221 # logMsg - write a message of different categories to different
232 write('ERRO
[all...]
H A Dlvl_genvk.py19 from generator import write namespace
38 write(msg, endTime - startTime, file=sys.stderr)
184 write('* Building', options.filename, file=sys.stderr)
192 write('* Generated', options.filename, file=sys.stderr)
195 write('No generator options for unknown target:',
253 write('* Dumping registry to regdump.txt', file=sys.stderr)
H A Dreg.py160 from generator import write, GeneratorOptions, OutputGenerator namespace
172 # gen - OutputGenerator object used to write headers / messages
174 # fetures to write and how to format them
392 write('***************************************', file=filehandle)
393 write(' ** Dumping Registry contents **', file=filehandle)
394 write('***************************************', file=filehandle)
395 write('// Types', file=filehandle)
398 write(' Type', name, '->', etree.tostring(tobj.elem)[0:maxlen], file=filehandle)
399 write('// Groups', file=filehandle)
402 write(' Grou
[all...]
/external/webrtc/webrtc/common_audio/
H A Dring_buffer_unittest.cc70 const bool write = rand() % 2 == 0 ? true : false; local
72 if (write) {
/external/xmlwriter/src/org/jheer/
H A DXMLWriter.java46 * [Print]FileWriter to write the XML to. Call the {@link #begin()} or
67 * @param out the FileWriter to write the XML to
76 * @param out the FileWriter to write the XML to
87 * Write <em>unescaped</em> text into the XML file. To write
89 * @param s the text to write. This String will not be escaped.
91 public void write(String s) throws IOException { method in class:XMLWriter
92 m_out.write(s);
97 * a newline. To write escaped text, use the {@link #content(String)}
99 * @param s the text to write. This String will not be escaped.
102 m_out.write(
[all...]
/external/zlib/src/contrib/inflate86/
H A Dinffas86.c37 Decode literal, length, and distance codes and write out the resulting
92 /* 96 52 */ unsigned write; /* window write index */ member in struct:inffast_ar
116 ar.write = state->wnext;
366 " jne .L_wrap_around_window\n" /* if (write != 0) */
384 " movl 96(%%rsp), %%eax\n" /* eax = write */
386 " jbe .L_contiguous_in_window\n" /* if (write >= nbytes) */
390 " addq %%rax, %%rsi\n" /* from += write */
392 " subl %%eax, %%ecx\n" /* nbytes -= write */
401 " movl 96(%%rsp), %%ecx\n" /* nbytes = write */
[all...]
/external/guice/extensions/persist/lib/
H A Dcommons-io.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt META-INF/NOTICE ...
/external/guice/extensions/struts2/lib/
H A Dcommons-io-1.3.2.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/io/ ...
/external/antlr/antlr-3.4/runtime/Python/
H A Dxmlrunner.py60 stream.write(' <testcase classname="%(class)s" name="%(method)s" time="%(time).4f">' % \
70 stream.write('</testcase>\n')
75 stream.write('\n')
76 stream.write(' <%s type="%s">%s\n' \
80 stream.write(escape(tb_stream.getvalue()))
81 stream.write(' </%s>\n' % tagname)
82 stream.write(' ')
133 stream.write('<testsuite errors="%(e)d" failures="%(f)d" ' % \
135 stream.write('name="%(n)s" tests="%(t)d" time="%(time).3f">\n' % \
143 stream.write(' <syste
340 def write(self, buffer): member in class:XMLTestRunnerTest.NullStream
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
H A Dsocket.rb53 write( 'ANTLR %s', PROTOCOL_VERSION )
54 write( 'grammar %p', @grammar_file_name )
70 def write( message, *interpolation_arguments ) method in class:ANTLR3.Debug.EventSocketProxy
84 write( event, *interpolation_arguments )
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
H A DConsoleHandlerTest.java488 * @see java.io.OutputStream#write(int)
490 public void write(int oneByte) { method in class:ConsoleHandlerTest.MockOutputStream
492 super.write(oneByte);

Completed in 795 milliseconds

<<11121314151617181920>>