HomeSort by relevance Sort by last modified time
    Searched full:write (Results 151 - 175 of 10256) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/astl/src/
ostream.cpp 54 // TODO: Should format according to flags (e.g write "true" or "false").
66 return write(buf, size);
73 return write(buf, size);
80 return write(buf, size);
87 return write(buf, size);
94 return write(buf, size);
101 return write(buf, size);
109 return write(buf, size);
116 return write(buf, size);
123 return write(buf, size)
138 ostream& ostream::write(const char_type *str, streamsize num) { function in class:std::ostream
    [all...]
  /external/kernel-headers/original/linux/
tiocl.h 28 /* these two don't return a value: they write it back in the type */
29 #define TIOCL_GETSHIFTSTATE 6 /* write shift state */
30 #define TIOCL_GETMOUSEREPORTING 7 /* write whether mouse event are reported */
  /external/libpng/contrib/gregbook/
makevms.com 21 $ write sys$output "zlib include not found. Exiting..."
27 $ write sys$output "libpng include not found. Exiting..."
56 $ open/write lopt lib.opt
57 $ write lopt "''pngpath'libpng.olb/lib"
58 $ write lopt "''zpath'libz.olb/lib"
60 $ open/write xopt x11.opt
61 $ write xopt "sys$library:decw$xlibshr.exe/share"
66 $ write sys$output "Compiling PNG book programs ..."
73 $ write sys$output "Building rpng-x..."
79 $ write sys$output "Building rpng2-x...
    [all...]
  /external/skia/include/xml/
SkBML_XMLParser.h 27 /** Read the byte XML stream and write the decompressed XML.
30 /** Read the byte XML stream and write the decompressed XML into a writable stream.
33 /** Read the byte XML stream and write the decompressed XML into an XML parser.
  /external/webkit/WebCore/manual-tests/
textfield-onblur.html 12 document.write('Test has passed.');
18 <p><b>BUG ID:</b> <a href="rdar://problem/4181058">4181058</a> 8C45: Safari repro crash with document.write (WebCore::Node::dispatchEvent)</p>
22 <li> Press the Tab key. This will remove focus from the text field, and should call document.write without crashing.
  /external/wpa_supplicant/
config_none.c 45 /* TODO: write global config parameters */
49 /* TODO: write networks */
53 /* TODO: write blobs */
  /external/wpa_supplicant_6/wpa_supplicant/
config_none.c 45 /* TODO: write global config parameters */
49 /* TODO: write networks */
53 /* TODO: write blobs */
  /frameworks/base/obex/javax/obex/
PrivateOutputStream.java 55 * Creates an empty <code>PrivateOutputStream</code> to write to.
75 * write is that one byte is written to the output stream. The byte to be
78 * @param b the byte to write
82 public synchronized void write(int b) throws IOException { method in class:PrivateOutputStream
85 mArray.write(b);
92 public void write(byte[] buffer) throws IOException { method in class:PrivateOutputStream
93 write(buffer, 0, buffer.length); method
97 public synchronized void write(byte[] buffer, int offset, int count) throws IOException { method in class:PrivateOutputStream
111 mArray.write(buffer, offset, count);
114 mArray.write(buffer, offset1, mMaxPacketSize)
    [all...]
  /frameworks/base/tests/CoreTests/android/core/
CharArrayWriterTest.java 35 a.write(str, 0, 26);
36 a.write('X');
42 b.write("alphabravodelta", 5, 5);
StringWriterTest.java 31 a.write(str, 0, 26);
32 a.write('X');
36 a.write("alphabravodelta", 5, 5);
  /external/icu4c/i18n/
vtzone.cpp 885 void write(const UnicodeString& str);
886 void write(UChar ch);
887 //void write(const UChar* str, int32_t length);
900 VTZWriter::write(const UnicodeString& str) { function in class:VTZWriter
905 VTZWriter::write(UChar ch) { function in class:VTZWriter
911 VTZWriter::write(const UChar* str, int32_t length) {
1120 VTimeZone::write(UnicodeString& result, UErrorCode& status) const { function in class:VTimeZone
1127 VTimeZone::write(UDate start, UnicodeString& result, UErrorCode& status) \/*const*\/ { function in class:VTimeZone
1686 VTimeZone::write(VTZWriter& writer, UErrorCode& status) const { function in class:VTimeZone
1733 VTimeZone::write(UDate start, VTZWriter& writer, UErrorCode& status) \/*const*\/ { function in class:VTimeZone
    [all...]
  /dalvik/libcore/luni/src/test/java/tests/api/java/io/
DataOutputStreamTest.java 108 os.write(testString.getBytes(), 0, testLength / 2);
116 fail("Exception during write test : " + e.getMessage());
121 * @tests java.io.DataOutputStream#write(byte[], int, int)
126 method = "write",
131 os.write(testString.getBytes(), 5, testLength - 7);
145 * @tests java.io.DataOutputStream#write(byte[], int, int)
150 method = "write",
158 os.write(nullByteArray, 0, 1);
165 os.write(byteArray, -1, 1);
172 os.write(byteArray, 0, -1)
    [all...]
  /external/webkit/WebKitTools/pywebsocket/mod_pywebsocket/
handshake.py 33 Note: request.connection.write/read are used in this module, even though
35 Unfortunately, we have no other options. For example, request.write/read are
171 self._request.connection.write(
173 self._request.connection.write('Upgrade: WebSocket\r\n')
174 self._request.connection.write('Connection: Upgrade\r\n')
175 self._request.connection.write('WebSocket-Origin: ')
176 self._request.connection.write(self._request.ws_origin)
177 self._request.connection.write('\r\n')
178 self._request.connection.write('WebSocket-Location: ')
179 self._request.connection.write(self._request.ws_location
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/
ToStream.java 51 * serializers (xml, html, text ...) that write output to a stream.
130 * The length of the line seperator, since the write is done
196 m_writer.write(CDATA_DELIMITER_CLOSE);
197 // write out a CDATA section closing "]]>"
310 writer.write("<!ELEMENT ");
311 writer.write(name);
312 writer.write(' ');
313 writer.write(model);
314 writer.write('>');
315 writer.write(m_lineSep, 0, m_lineSepLen)
3201 public void write(char[] arg0, int arg1, int arg2) throws IOException method in class:ToStream.WritertoStringBuffer
3218 public void write(int i) method in class:ToStream.WritertoStringBuffer
3223 public void write(String s) method in class:ToStream.WritertoStringBuffer
    [all...]
  /dalvik/vm/mterp/
gen-mterp.py 183 asm_fp.write("\n .global dvmAsmInstructionStart\n")
184 asm_fp.write(" .type dvmAsmInstructionStart, %function\n")
185 asm_fp.write("dvmAsmInstructionStart = " + label_prefix + "_OP_NOP\n")
186 asm_fp.write(" .text\n\n")
208 asm_fp.write(" .balign %d\n" % handler_size_bytes)
209 asm_fp.write(label_prefix + "_OP_NOP: /* dummy */\n");
211 asm_fp.write("\n .balign %d\n" % handler_size_bytes)
212 asm_fp.write(" .size dvmAsmInstructionStart, .-dvmAsmInstructionStart\n")
213 asm_fp.write(" .global dvmAsmInstructionEnd\n")
214 asm_fp.write("dvmAsmInstructionEnd:\n"
    [all...]
  /dalvik/libcore/archive/src/main/java/java/util/jar/
JarOutputStream.java 26 * The {@code JarOutputStream} is used to write data in the {@code JarFile}
39 * the {@code OutputStream} to write to
53 manifest.write(this);
62 * the {@code OutputStream} to write to.
75 * the {@code ZipEntry} to write to.
  /dalvik/libcore/archive/src/main/java/java/util/zip/
CheckedOutputStream.java 67 public void write(int val) throws IOException { method in class:CheckedOutputStream
68 out.write(val);
82 * number of bytes to write to the output stream.
87 public void write(byte[] buf, int off, int nbytes) throws IOException { method in class:CheckedOutputStream
88 out.write(buf, off, nbytes);
  /dalvik/libcore/luni/src/main/java/java/io/
BufferedWriter.java 59 * for which to buffer write operations. The buffer size is set to the
87 * for which to buffer write operations. The buffer size is set to {@code
167 out.write(buf, 0, pos);
187 * if an error occurs attempting to write to this writer.
190 write(lineSeparator, 0, lineSeparator.length()); method
200 * the array containing characters to write.
204 * the maximum number of characters to write.
213 public void write(char[] cbuf, int offset, int count) throws IOException { method in class:BufferedWriter
231 out.write(cbuf, offset, count);
243 out.write(this.buf, 0, this.buf.length)
271 public void write(int oneChar) throws IOException { method in class:BufferedWriter
305 public void write(String str, int offset, int count) throws IOException { method in class:BufferedWriter
    [all...]
FileOutputStream.java 29 * All write requests made by calling methods in this class are directly
32 * write requests are made, a FileOutputStream is often wrapped by a
65 * write request.
85 * write request.
115 * write request.
144 * write request.
164 * write request.
217 * The file channel is write-only and has an initial position within the
249 * write to this stream.
252 public void write(byte[] buffer) throws IOException method in class:FileOutputStream
253 write(buffer, 0, buffer.length); method
277 public void write(byte[] buffer, int offset, int count) throws IOException { method in class:FileOutputStream
311 public void write(int oneByte) throws IOException { method in class:FileOutputStream
    [all...]
PipedOutputStream.java 132 * Separate threads should be used to write to a {@code PipedOutputStream}
137 * the buffer to write.
139 * the index of the first byte in {@code buffer} to write.
141 * the number of bytes from {@code buffer} to write to this
148 * waiting for space to write data. This case is not currently
156 public void write(byte[] buffer, int offset, int count) throws IOException { method in class:PipedOutputStream
157 super.write(buffer, offset, count);
165 * Separate threads should be used to write to a {@code PipedOutputStream}
170 * the byte to write.
173 * waiting for space to write data. This case is not currentl
181 public void write(int oneByte) throws IOException { method in class:PipedOutputStream
    [all...]
  /external/guava/src/com/google/common/io/
AppendableWriter.java 50 @Override public void write(char cbuf[], int off, int len) method in class:AppendableWriter
77 @Override public void write(int c) throws IOException { method in class:AppendableWriter
82 @Override public void write(String str) throws IOException { method in class:AppendableWriter
87 @Override public void write(String str, int off, int len) throws IOException { method in class:AppendableWriter
114 throw new IOException("Cannot write to a closed writer.");
  /frameworks/base/awt/javax/imageio/event/
IIOWriteProgressListener.java 36 * Notifies this listener that an image write operation has been started.
46 * Notifies this listener about the degree of completion of the write call.
64 * Notifies this listener that a thumbnail write operation has been started.
76 * Notifies this listener about the degree of completion of the write call.
86 * Notifies this listener that a thumbnail write operation has been
  /frameworks/base/core/java/android/bluetooth/
BluetoothOutputStream.java 53 public void write(int oneByte) throws IOException { method in class:BluetoothOutputStream
56 mSocket.write(b, 0, 1);
68 * the number of bytes from {@code buffer} to write to this
78 public void write(byte[] b, int offset, int count) throws IOException { method in class:BluetoothOutputStream
85 mSocket.write(b, offset, count);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
MediaRecorderStressTest.java 162 output.write("Camera start preview stress:\n");
163 output.write("Total number of loops:" +
167 output.write("No of loop: ");
184 output.write(" ," + i);
190 output.write("\n\n");
202 output.write("H263 video record- reset after prepare Stress test\n");
203 output.write("Total number of loops:" +
206 output.write("No of loop: ");
237 output.write(", " + i);
243 output.write("\n\n")
    [all...]
  /dalvik/libcore/crypto/src/main/java/javax/crypto/
CipherOutputStream.java 26 * This class wraps an output stream and a cipher so that {@code write} methods
45 * the output stream to write data to.
61 * the output stream to write the data to.
71 * the byte to write.
76 public void write(int b) throws IOException { method in class:CipherOutputStream
81 out.write(result);
94 public void write(byte[] b) throws IOException { method in class:CipherOutputStream
95 write(b, 0, b.length); method
112 public void write(byte[] b, int off, int len) throws IOException { method in class:CipherOutputStream
118 out.write(result)
    [all...]

Completed in 403 milliseconds

1 2 3 4 5 67 8 91011>>