Searched defs:write (Results 226 - 250 of 586) sorted by relevance

1234567891011>>

/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/
H A DSoapEnvelope.java208 public void write(XmlSerializer writer) throws IOException { method in class:SoapEnvelope
233 headerOut[i].write(writer);
246 ((Node) bodyOut).write(writer);
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/kdom/
H A DElement.java299 public void write(XmlSerializer writer) method in class:Element
H A DNode.java296 write(xw);
310 public void write(XmlSerializer writer) throws IOException { method in class:Node
328 ((Element) child).write(writer);
/external/libunwind/src/x86/
H A DGinit.c141 access_mem (unw_addr_space_t as, unw_word_t addr, unw_word_t *val, int write, argument
144 if (write)
190 access_reg (unw_addr_space_t as, unw_regnum_t reg, unw_word_t *val, int write, argument
202 if (write)
221 int write, void *arg)
232 if (write)
220 access_fpreg(unw_addr_space_t as, unw_regnum_t reg, unw_fpreg_t *val, int write, void *arg) argument
/external/libunwind/src/x86_64/
H A DGinit.c158 access_mem (unw_addr_space_t as, unw_word_t addr, unw_word_t *val, int write, argument
161 if (unlikely (write))
209 access_reg (unw_addr_space_t as, unw_regnum_t reg, unw_word_t *val, int write, argument
221 if (write)
240 int write, void *arg)
251 if (write)
239 access_fpreg(unw_addr_space_t as, unw_regnum_t reg, unw_fpreg_t *val, int write, void *arg) argument
/external/lldb/test/pexpect-2.4/
H A DANSI.py158 fout.write (fsm.input_symbol + ',' + fsm.current_state + '\n')
252 self.write(l)
254 def write (self, s): member in class:ANSI
285 fout.write ('Nonprint: ' + str(ord(ch)) + '\n')
/external/lldb/tools/debugserver/source/
H A DDNBArch.h79 virtual uint32_t EnableHardwareWatchpoint (nub_addr_t addr, nub_size_t size, bool read, bool write, bool also_set_on_task) { return INVALID_NUB_HW_INDEX; } argument
/external/mesa3d/src/gallium/winsys/i915/drm/
H A Di915_drm_buffer.c154 boolean write)
152 i915_drm_buffer_map(struct i915_winsys *iws, struct i915_winsys_buffer *buffer, boolean write) argument
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DPipeline.java131 public void write(byte[] bytes, int start, int length) throws IOException { method in class:Pipeline
142 public void write(byte[] bytes) throws IOException { method in class:Pipeline
/external/okhttp/okio/src/main/java/okio/
H A DByteString.java182 public void write(OutputStream out) throws IOException { method in class:ByteString
183 out.write(data);
H A DRealBufferedSink.java40 @Override public void write(OkBuffer source, long byteCount) method in class:RealBufferedSink
43 buffer.write(source, byteCount);
47 @Override public BufferedSink write(ByteString byteString) throws IOException { method in class:RealBufferedSink
49 buffer.write(byteString);
59 @Override public BufferedSink write(byte[] source) throws IOException { method in class:RealBufferedSink
61 buffer.write(source);
65 @Override public BufferedSink write(byte[] source, int offset, int byteCount) throws IOException { method in class:RealBufferedSink
67 buffer.write(source, offset, byteCount);
116 if (byteCount > 0) sink.write(buffer, byteCount);
122 @Override public void write(in
[all...]
/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/qemu/distrib/sdl-1.2.15/include/
H A DSDL_rwops.h16 License along with this library; if not, write to the Free Software
24 * This file provides a general interface for SDL to read and write
40 /** This is the read/write operation structure -- very basic */
57 * Returns 'num', or -1 if the write failed.
59 int (SDLCALL *write)(struct SDL_RWops *context, const void *ptr, int size, int num); member in struct:SDL_RWops
120 /** @name Macros to easily read and write from an SDL_RWops structure */
125 #define SDL_RWwrite(ctx, ptr, size, n) (ctx)->write(ctx, ptr, size, n)
/external/skia/src/core/
H A DSkBuffer.h120 The WBuffer is given the buffer to write into, with either a specified size
147 void write(const void* buffer, size_t size) { function in class:SkWBuffer
/external/skia/tests/
H A DPackBitsTest.cpp116 size_t write = gRand.nextU() % size; local
117 if (skip + write > size) {
118 write = size - skip;
120 SkPackBits::Unpack8(src, skip, write, dst);
121 bool match = memcmp(src, src2 + skip, write) == 0;
/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...]
/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/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/chromium_org/third_party/WebKit/Source/devtools/front_end/bindings/
H A DTempFile.js126 write: function(strings, callback)
131 WebInspector.console.error("Failed to write into a temp file: " + e.message);
138 this._writer.write(blob);
243 write: function(strings)
287 this._tempFile.write(chunks, this._didWriteChunk.bind(this));
H A DFileUtils.js67 write: function(data, callback) { },
173 this._output.write(data);
251 write: function(data, callback)
/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);
H A DHandlerTest.java376 public void write(int arg0) throws IOException { method in class:HandlerTest.NullOutputStream

Completed in 639 milliseconds

1234567891011>>