Searched defs:write (Results 1 - 25 of 490) sorted by relevance

1234567891011>>

/external/v8/test/mjsunit/regress/
H A Dregress-1560.js49 function write(a, i) { a[i] = "bazinga!"; } function
59 for (var i = 0; i < 5; i++) write(mkArray(), 0);
60 %OptimizeFunctionOnNextCall(write);
61 write(mkCOWArray(), 0);
65 %DeoptimizeFunction(write);
67 test([mkArray, mkNumberDictionary], write);
68 test([mkArray, mkNumberDictionary, mkCOWArray], write);
/external/apache-http/src/org/apache/http/io/
H A DHttpMessageWriter.java50 void write(HttpMessage message) method in interface:HttpMessageWriter
H A DSessionOutputBuffer.java49 void write(byte[] b, int off, int len) throws IOException; method in interface:SessionOutputBuffer
51 void write(byte[] b) throws IOException; method in interface:SessionOutputBuffer
53 void write(int b) throws IOException; method in interface:SessionOutputBuffer
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
H A DPacketListener.java13 void write(String packet); method in interface:PacketListener
H A DSFTPOutputStream.java19 * Offset (in bytes) in the file to write
30 * The general contract for <code>write(b, off, len)</code> is that
36 * @see SFTPv3Client#write(SFTPv3FileHandle,long,byte[],int,int)
39 public void write(byte[] buffer, int offset, int len) throws IOException method in class:SFTPOutputStream
41 // We can just blindly write the whole buffer at once.
42 // if <code>len</code> &gt; 32768, then the write operation will
43 // be split into multiple writes in SFTPv3Client#write.
44 handle.getClient().write(handle, writeOffset, buffer, offset, len);
50 public void write(int b) throws IOException { method in class:SFTPOutputStream
53 handle.getClient().write(handl
[all...]
/external/webkit/Source/WebCore/bindings/cpp/
H A DWebDOMHTMLDocumentCustom.cpp15 * along with this library; see the file COPYING.LIB. If not, write to
34 document->write(segmentedString);
37 void WebDOMHTMLDocument::write(const WebDOMString& text) function in class:WebDOMHTMLDocument
/external/guava/guava/src/com/google/common/io/
H A DNullOutputStream.java32 @Override public void write(int b) { method in class:NullOutputStream
36 @Override public void write(byte[] b, int off, int len) { method in class:NullOutputStream
H A DCountingOutputStream.java50 @Override public void write(byte[] b, int off, int len) throws IOException { method in class:CountingOutputStream
51 out.write(b, off, len);
55 @Override public void write(int b) throws IOException { method in class:CountingOutputStream
56 out.write(b);
/external/jmonkeyengine/engine/src/core/com/jme3/export/
H A DSavable.java44 void write(JmeExporter ex) throws IOException; method in interface:Savable
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/
H A DConnector.java55 * or write will fail with an exception.
82 public void write( ByteBuffer data ); method in interface:Connector
/external/webkit/Tools/Scripts/webkitpy/common/
H A Darray_stream.py37 performs a similar function to StringIO, but (a) it is write-only, and
38 (b) it can be used to retrieve each individual write(); StringIO
45 def write(self, msg): member in class:ArrayStream
46 """Implement stream.write() by appending to the stream's contents."""
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
H A Dmetered_stream.py49 It can be used directly as a stream, by calling write(), but provides
53 preceding update() (write() also will overwrite update()). So, calling
60 instead the call is equivalent to write(), although the text is
79 stream: output stream to write to
86 def write(self, txt): member in class:MeteredStream
93 self._stream.write(txt)
131 """Actually write the message to the stream."""
140 self._stream.write("\b" * len(self._last_update) +
143 self._stream.write(str)
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DIOExtensions.cs75 public static void write<T>( this TextWriter writer, T value ) method in class:Antlr.Runtime.JavaExtensions.IOExtensions
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DIOExtensions.cs73 public static void write<T>( this TextWriter writer, T value ) method in class:Antlr.Runtime.JavaExtensions.IOExtensions
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_StringWriter.java103 * the non-null array containing characters to write.
107 * maximum number of characters to write
113 public void write(char[] buf, int offset, int count) { method in class:Support_StringWriter
131 * The character to write
135 public void write(int oneChar) { method in class:Support_StringWriter
146 * the non-null String containing the characters to write.
150 public void write(String str) { method in class:Support_StringWriter
162 * the non-null String containing the characters to write.
166 * the number of characters to retrieve and write.
172 public void write(Strin method in class:Support_StringWriter
[all...]
/external/apache-http/src/org/apache/http/impl/io/
H A DAbstractMessageWriter.java70 public void write( method in class:AbstractMessageWriter
H A DContentLengthOutputStream.java57 * write operations will be ignored.
72 * the stream. Subsequent write operations will be ignored.
104 public void write(byte[] b, int off, int len) throws IOException { method in class:ContentLengthOutputStream
106 throw new IOException("Attempted write to closed stream.");
113 this.out.write(b, off, len);
118 public void write(byte[] b) throws IOException { method in class:ContentLengthOutputStream
119 write(b, 0, b.length);
122 public void write(int b) throws IOException { method in class:ContentLengthOutputStream
124 throw new IOException("Attempted write to closed stream.");
127 this.out.write(
[all...]
H A DIdentityOutputStream.java82 public void write(byte[] b, int off, int len) throws IOException { method in class:IdentityOutputStream
84 throw new IOException("Attempted write to closed stream.");
86 this.out.write(b, off, len);
89 public void write(byte[] b) throws IOException { method in class:IdentityOutputStream
90 write(b, 0, b.length);
93 public void write(int b) throws IOException { method in class:IdentityOutputStream
95 throw new IOException("Attempted write to closed stream.");
97 this.out.write(b);
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DWriterChain.java33 * write(int val)
34 * write(char[] chars)
35 * write(char[] chars, int start, int count)
36 * write(String chars)
37 * write(String chars, int start, int count)
54 public void write(int val) throws IOException; method in interface:WriterChain
56 public void write(char[] chars) throws IOException; method in interface:WriterChain
58 public void write(char[] chars, int start, int count) throws IOException; method in interface:WriterChain
60 public void write(String chars) throws IOException; method in interface:WriterChain
62 public void write(Strin method in interface:WriterChain
[all...]
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/io/
H A DDigestOutputStream.java22 public void write(int b) method in class:DigestOutputStream
26 out.write(b);
29 public void write( method in class:DigestOutputStream
36 out.write(b, off, len);
H A DMacOutputStream.java22 public void write(int b) method in class:MacOutputStream
26 out.write(b);
29 public void write( method in class:MacOutputStream
36 out.write(b, off, len);
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DHTMLWriter.java38 public void write (final String s) method in class:HTMLWriter
46 m_out.write (s);
55 public void write (final char c) method in class:HTMLWriter
61 m_out.write (c);
76 m_out.write (IConstants.EOL);
/external/flac/include/FLAC/
H A Dcallback.h75 * or write a wrapper. The same is true for feof() since this is usually
103 /** Signature for the write callback.
107 * \param ptr The address of the write buffer.
171 FLAC__IOCallback_Write write; member in struct:__anon4859
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/
H A DChannelOutputStream.java28 public void write(int b) throws IOException method in class:ChannelOutputStream
34 write(buff, 0, 1);
57 public void write(byte[] b, int off, int len) throws IOException method in class:ChannelOutputStream
75 public void write(byte[] b) throws IOException method in class:ChannelOutputStream
77 write(b, 0, b.length);
/external/icu4c/tools/makeconv/
H A Dmakeconv.h55 (*write)(NewConverter *cnvData, const UConverterStaticData *staticData, member in struct:NewConverter

Completed in 532 milliseconds

1234567891011>>