OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:onechar
(Results
1 - 17
of
17
) sorted by null
/libcore/luni/src/main/java/java/io/
FilterWriter.java
97
* Writes the specified character {@code
oneChar
} to the target writer. Only the
98
* two least significant bytes of the integer {@code
oneChar
} are written.
100
* @param
oneChar
106
public void write(int
oneChar
) throws IOException {
108
out.write(
oneChar
);
BufferedWriter.java
222
* Writes the character {@code
oneChar
} to this writer. If the buffer
224
* lower two bytes of the integer {@code
oneChar
} are written.
226
* @param
oneChar
232
public void write(int
oneChar
) throws IOException {
239
buf[pos++] = (char)
oneChar
;
StringWriter.java
128
* least significant bytes of the integer {@code
oneChar
} are written.
130
* @param
oneChar
134
public void write(int
oneChar
) {
135
buf.append((char)
oneChar
);
Writer.java
117
* of the integer {@code
oneChar
} are written.
119
* @param
oneChar
124
public void write(int
oneChar
) throws IOException {
127
oneCharArray[0] = (char)
oneChar
;
CharArrayWriter.java
176
* Writes the specified character {@code
oneChar
} to this writer.
178
* {@code
oneChar
} to the buffer.
180
* @param
oneChar
184
public void write(int
oneChar
) {
187
buf[count++] = (char)
oneChar
;
OutputStreamWriter.java
271
* Writes the character {@code
oneChar
} to this writer. The lowest two bytes
272
* of the integer {@code
oneChar
} are immediately converted to bytes by the
276
* @param
oneChar
282
public void write(int
oneChar
) throws IOException {
285
CharBuffer chars = CharBuffer.wrap(new char[] { (char)
oneChar
});
PushbackReader.java
307
* Pushes the specified character {@code
oneChar
} back to this reader. This
309
* {@code (char)
oneChar
}.
314
* @param
oneChar
320
public void unread(int
oneChar
) throws IOException {
326
buf[--pos] = (char)
oneChar
;
PipedReader.java
329
* @param
oneChar
336
synchronized void receive(char
oneChar
) throws IOException {
366
buffer[in++] =
oneChar
;
PrintWriter.java
606
* of the integer {@code
oneChar
} are written.
611
* @param
oneChar
615
public void write(int
oneChar
) {
616
doWrite(new char[] { (char)
oneChar
}, 0, 1);
/external/apache-harmony/support/src/test/java/tests/support/
Support_StringWriter.java
120
* Writes the specified character <code>
oneChar
</code> to this
124
* @param
oneChar
The character to write
127
public void write(int
oneChar
) {
129
buf.append((char)
oneChar
);
/libcore/support/src/test/java/tests/support/
Support_StringWriter.java
126
* Writes the specified character <code>
oneChar
</code> to this
130
* @param
oneChar
135
public void write(int
oneChar
) {
137
buf.append((char)
oneChar
);
/frameworks/base/core/java/com/android/internal/util/
FastPrintWriter.java
573
* of the integer {@code
oneChar
} are written.
578
* @param
oneChar
582
public void write(int
oneChar
) {
585
appendLocked((char)
oneChar
);
/libcore/luni/src/test/java/libcore/java/io/
OldFilterWriterTest.java
52
public void write(int
oneChar
) throws IOException {
/cts/tests/tests/view/src/android/view/cts/
KeyCharacterMapTest.java
287
private int getCharacterKeyCode(char
oneChar
) {
289
char[] chars = new char[] {Character.toLowerCase(
oneChar
)};
/external/chromium_org/third_party/icu/source/i18n/
regeximp.h
175
URX_LOOP_C = 51, // Continue a [set]* or
OneChar
* loop.
199
"
ONECHAR
", \
/external/icu/icu4c/source/i18n/
regeximp.h
162
URX_LOOP_C = 51, // Continue a [set]* or
OneChar
* loop.
186
"
ONECHAR
", \
/external/pcre/dist/
pcretest.c
5505
int
onechar
= 1;
local
[
all
...]
Completed in 1620 milliseconds