HomeSort by relevance Sort by last modified time
    Searched refs:write (Results 1 - 25 of 1848) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/Email/src/org/apache/commons/io/output/
NullWriter.java 44 * @param idx The character to write
46 public void write(int idx) { method in class:NullWriter
52 * @param chr The characters to write
54 public void write(char[] chr) { method in class:NullWriter
60 * @param chr The characters to write
62 * @param end The number of characters to write
64 public void write(char[] chr, int st, int end) { method in class:NullWriter
70 * @param str The string to write
72 public void write(String str) { method in class:NullWriter
78 * @param str The string to write
82 public void write(String str, int st, int end) { method in class:NullWriter
    [all...]
ProxyWriter.java 28 * methods being called, such as write(char[]) to write(char[], int, int)
29 * and write(String) to write(String, int, int).
47 * Invokes the delegate's <code>write(int)</code> method.
48 * @param idx the character to write
51 public void write(int idx) throws IOException { method in class:ProxyWriter
52 out.write(idx);
56 * Invokes the delegate's <code>write(char[])</code> method.
57 * @param chr the characters to write
60 public void write(char[] chr) throws IOException { method in class:ProxyWriter
71 public void write(char[] chr, int st, int end) throws IOException { method in class:ProxyWriter
80 public void write(String str) throws IOException { method in class:ProxyWriter
91 public void write(String str, int st, int end) throws IOException { method in class:ProxyWriter
    [all...]
TeeOutputStream.java 31 /** the second OutputStream to write to */
45 * Write the bytes to both streams.
46 * @param b the bytes to write
49 public synchronized void write(byte[] b) throws IOException { method in class:TeeOutputStream
50 super.write(b);
51 this.branch.write(b);
55 * Write the specified bytes to both streams.
56 * @param b the bytes to write
58 * @param len The number of bytes to write
61 public synchronized void write(byte[] b, int off, int len) throws IOException { method in class:TeeOutputStream
71 public synchronized void write(int b) throws IOException { method in class:TeeOutputStream
    [all...]
ProxyOutputStream.java 45 * Invokes the delegate's <code>write(int)</code> method.
46 * @param idx the byte to write
49 public void write(int idx) throws IOException { method in class:ProxyOutputStream
50 out.write(idx);
54 * Invokes the delegate's <code>write(byte[])</code> method.
55 * @param bts the bytes to write
58 public void write(byte[] bts) throws IOException { method in class:ProxyOutputStream
59 out.write(bts);
63 * Invokes the delegate's <code>write(byte[])</code> method.
64 * @param bts the bytes to write
69 public void write(byte[] bts, int st, int end) throws IOException { method in class:ProxyOutputStream
    [all...]
NullOutputStream.java 40 * @param b The bytes to write
42 * @param len The number of bytes to write
44 public void write(byte[] b, int off, int len) { method in class:NullOutputStream
50 * @param b The byte to write
52 public void write(int b) { method in class:NullOutputStream
58 * @param b The bytes to write
61 public void write(byte[] b) throws IOException { method in class:NullOutputStream
CountingOutputStream.java 39 * @param out the OutputStream to write to
50 * @param b the bytes to write, not null
52 * @see java.io.OutputStream#write(byte[])
54 public void write(byte[] b) throws IOException { method in class:CountingOutputStream
56 super.write(b);
63 * @param b the bytes to write, not null
65 * @param len the maximum number of bytes to write
67 * @see java.io.OutputStream#write(byte[], int, int)
69 public void write(byte[] b, int off, int len) throws IOException { method in class:CountingOutputStream
71 super.write(b, off, len);
82 public void write(int b) throws IOException { method in class:CountingOutputStream
    [all...]
  /external/xmlwriter/src/org/jheer/
XMLWriter.java 46 * [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);
96 * Write <em>unescaped</em> text into the XML file, followed by
97 * a newline. To write escaped text, use the {@link #content(String)
    [all...]
  /bionic/libc/unistd/
perror.c 39 write( 2, prefix, strlen(prefix) );
40 write( 2, ": ", 2 );
42 write( 2, buff, strlen(buff) );
43 write( 2, "\n", 1 );
  /libcore/luni/src/main/java/org/apache/xml/serializer/
WriterChain.java 33 * 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(String chars, int start, int count) throws IOException method in interface:WriterChain
    [all...]
  /libcore/luni/src/main/java/java/io/
Writer.java 27 * needs to be subclassed, and at least the {@link #write(char[], int, int)},
93 * the non-null array containing characters to write.
97 public void write(char[] buf) throws IOException { method in class:Writer
101 write(buf, 0, buf.length); method
109 * the non-null character array to write.
111 * the index of the first character in {@code buf} to write.
113 * the maximum number of characters to write.
120 public abstract void write(char[] buf, int offset, int count) method in class:Writer
131 * the character to write to the target.
135 public void write(int oneChar) throws IOException method in class:Writer
151 public void write(String str) throws IOException { method in class:Writer
152 write(str, 0, str.length()); method
171 public void write(String str, int offset, int count) throws IOException { method in class:Writer
179 write(buf, 0, buf.length); method
    [all...]
ObjectOutput.java 50 * the buffer to write.
54 public void write(byte[] buffer) throws IOException; method in interface:ObjectOutput
62 * the buffer to write.
64 * the index of the first byte in {@code buffer} to write.
66 * the number of bytes from {@code buffer} to write to the target
71 public void write(byte[] buffer, int offset, int count) throws IOException; method in interface:ObjectOutput
79 * the byte to write.
83 public void write(int value) throws IOException; method in interface:ObjectOutput
89 * the object to write.
OutputStream.java 27 * needs to be subclassed, and at least the {@link #write(int)} method needs to
76 public void write(byte[] buffer) throws IOException { method in class:OutputStream
80 write(buffer, 0, buffer.length); method
92 * the number of bytes from {@code buffer} to write to this
101 public void write(byte[] buffer, int offset, int count) throws IOException { method in class:OutputStream
120 write(buffer[i]);
133 public abstract void write(int oneByte) throws IOException; method in class:OutputStream
FilterWriter.java 81 * the buffer to write.
83 * the index of the first character in {@code buffer} to write.
85 * the number of characters in {@code buffer} to write.
90 public void write(char[] buffer, int offset, int count) throws IOException { method in class:FilterWriter
95 out.write(buffer, offset, count);
104 * the char to write to the target writer.
109 public void write(int oneChar) throws IOException { method in class:FilterWriter
111 out.write(oneChar);
123 * the index of the first character in {@code str} to write.
125 * the number of chars in {@code str} to write
130 public void write(String str, int offset, int count) throws IOException { method in class:FilterWriter
    [all...]
  /development/tools/mkstubs/src/com/android/mkstubs/sourcer/
Output.java 23 * An {@link Output} objects is an helper to write to a character stream {@link Writer}.
26 * to help them write to the underlying stream.
37 * @param writer The writer to write to. Could be a file, a string, etc.
51 public void write(String format, Object... args) { method in class:Output
53 mWriter.write(String.format(format, args));
62 * @param c The character to write.
64 public void write(char c) { method in class:Output
65 write(Character.toString(c));
71 * @param sb The {@link StringBuilder#toString()} method is used to ge the string to write.
73 public void write(StringBuilder sb) method in class:Output
    [all...]
  /external/guava/src/com/google/common/io/
NullOutputStream.java 29 @Override public void write(int b) { method in class:NullOutputStream
33 @Override public void write(byte[] b, int off, int len) { method in class:NullOutputStream
  /bionic/libc/stdlib/
setjmperr.c 34 * write their own versions.
45 (void)write(STDERR_FILENO, ERRMSG, sizeof(ERRMSG) - 1);
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
DEROutputStream.java 30 write((byte)(size | 0x80)); method
34 write((byte)(length >> i)); method
39 write((byte)length); method
48 write(tag);
50 write(bytes);
58 write(flags | tagNo);
62 write(flags | 0x1f);
65 write(tagNo);
81 write(stack, pos, stack.length - pos); method
91 write(bytes)
101 public void write(byte[] buf) method in class:DEROutputStream
107 public void write(byte[] buf, int offSet, int len) method in class:DEROutputStream
    [all...]
  /packages/apps/Email/src/com/android/email/mail/transport/
EOLConvertingOutputStream.java 31 public void write(int oneByte) throws IOException { method in class:EOLConvertingOutputStream
34 super.write('\r');
37 super.write(oneByte);
44 super.write('\n');
  /libcore/luni/src/main/java/java/util/zip/
GZIPOutputStream.java 24 * The {@code GZIPOutputStream} class is used to write data to a stream in the
35 * Construct a new {@code GZIPOutputStream} to write data in GZIP format to
39 * the {@code OutputStream} to write data to.
48 * Construct a new {@code GZIPOutputStream} to write data in GZIP format to
53 * the {@code OutputStream} to write to.
62 out.write(Deflater.DEFLATED);
63 out.write(0); // flags
65 out.write(0); // extra flags
66 out.write(0); // operating system
84 * Write up to nbytes of data from the given buffer, starting at offset off
88 public void write(byte[] buffer, int off, int nbytes) throws IOException { method in class:GZIPOutputStream
    [all...]
  /external/apache-http/src/org/apache/http/impl/io/
IdentityOutputStream.java 82 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); method
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);
  /libcore/luni/src/main/java/org/apache/harmony/luni/net/
SocketOutputStream.java 30 * Constructs a SocketOutputStream for the <code>socket</code>. Write
47 public void write(byte[] buffer) throws IOException { method in class:SocketOutputStream
48 socket.write(buffer, 0, buffer.length);
52 public void write(byte[] buffer, int offset, int count) throws IOException { method in class:SocketOutputStream
57 socket.write(buffer, offset, count);
64 public void write(int oneByte) throws IOException { method in class:SocketOutputStream
68 socket.write(buffer, 0, 1);
  /device/htc/common/updater/
bootloader.c 105 MtdWriteContext *write = mtd_write_partition(part); local
106 if (write == NULL) {
110 if (mtd_write_data(write, data, size) != size) {
111 LOGE("Can't write %s\n(%s)\n", MISC_NAME, strerror(errno));
112 mtd_write_close(write);
115 if (mtd_write_close(write)) {
166 MtdWriteContext *write = mtd_write_partition(part); local
167 if (write == NULL) {
172 /* Write an invalid (zero) header first, to disable any previous
180 if (mtd_write_data(write, (char*) &header, header_size) != header_size)
    [all...]
  /bionic/libc/arch-arm/syscalls/
write.S 5 .type write, #function
6 .globl write
10 write: label
  /dalvik/dx/src/com/android/dx/util/
Output.java 45 * @param value the value to write; all but the low 8 bits are ignored
52 * @param value the value to write; all but the low 16 bits are ignored
59 * @param value the value to write
66 * @param value the value to write
75 * @param value value to write, treated as an unsigned value
85 * @param value value to write
93 * @param bytes {@code non-null;} the array to write
95 public void write(ByteArray bytes); method in interface:Output
100 * @param bytes {@code non-null;} the array to write
102 * byte to write
105 public void write(byte[] bytes, int offset, int length); method in interface:Output
113 public void write(byte[] bytes); method in interface:Output
    [all...]
  /external/apache-http/src/org/apache/http/io/
SessionOutputBuffer.java 49 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

Completed in 411 milliseconds

1 2 3 4 5 6 7 8 91011>>