Searched refs:oneChar (Results 1 - 13 of 13) sorted by relevance

/dalvik/libcore/luni/src/main/java/java/io/
H A DFilterWriter.java100 * Writes the specified character {@code oneChar} to the target writer. Only the
101 * two least significant bytes of the integer {@code oneChar} are written.
103 * @param oneChar
109 public void write(int oneChar) throws IOException { argument
111 out.write(oneChar);
H A DWriter.java128 * of the integer {@code oneChar} are written.
130 * @param oneChar
135 public void write(int oneChar) throws IOException { argument
138 oneCharArray[0] = (char) oneChar;
H A DStringWriter.java143 * least significant bytes of the integer {@code oneChar} are written.
145 * @param oneChar
149 public void write(int oneChar) { argument
150 buf.append((char) oneChar);
H A DCharArrayWriter.java192 * Writes the specified character {@code oneChar} to this writer.
194 * {@code oneChar} to the buffer.
196 * @param oneChar
200 public void write(int oneChar) { argument
203 buf[count++] = (char) oneChar;
H A DBufferedWriter.java261 * Writes the character {@code oneChar} to this writer. If the buffer
263 * lower two bytes of the integer {@code oneChar} are written.
265 * @param oneChar
271 public void write(int oneChar) throws IOException { argument
280 buf[pos++] = (char) oneChar;
H A DOutputStreamWriter.java261 * Writes the character {@code oneChar} to this writer. The lowest two bytes
262 * of the integer {@code oneChar} are immediately converted to bytes by the
266 * @param oneChar
272 public void write(int oneChar) throws IOException { argument
275 CharBuffer chars = CharBuffer.wrap(new char[] { (char) oneChar });
H A DPushbackReader.java341 * Pushes the specified character {@code oneChar} back to this reader. This
343 * {@code (char) oneChar}.
348 * @param oneChar
354 public void unread(int oneChar) throws IOException { argument
362 buf[--pos] = (char) oneChar;
H A DPipedReader.java321 * @param oneChar
328 synchronized void receive(char oneChar) throws IOException { argument
360 buffer[in++] = oneChar;
H A DPrintWriter.java687 * of the integer {@code oneChar} are written.
692 * @param oneChar
696 public void write(int oneChar) { argument
697 doWrite(new char[] { (char) oneChar }, 0, 1);
/dalvik/libcore/support/src/test/java/tests/support/
H A DSupport_StringWriter.java126 * Writes the specified character <code>oneChar</code> to this
130 * @param oneChar
135 public void write(int oneChar) { argument
137 buf.append((char) oneChar);
/dalvik/libcore/luni/src/test/java/tests/api/java/io/
H A DFilterWriterTest.java61 public void write(int oneChar) throws IOException { argument
/dalvik/libcore/nio/src/main/java/org/apache/harmony/nio/internal/
H A DIOUtil.java154 public static void writeOutputStreamWriter(int oneChar, OutputStream out, argument
162 CharBuffer chars = CharBuffer.wrap(new char[] { (char) oneChar });
/dalvik/libcore/nio/src/main/java/java/nio/channels/
H A DChannels.java521 public void write(int oneChar) throws IOException { argument
522 IOUtil.writeOutputStreamWriter(oneChar, outputStream, byteBuf,

Completed in 524 milliseconds