Home
last modified time | relevance | path

Searched refs:chr (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Email/src/org/apache/commons/io/input/
DProxyReader.java62 public int read(char[] chr) throws IOException { in read() argument
63 return in.read(chr); in read()
74 public int read(char[] chr, int st, int end) throws IOException { in read() argument
75 return in.read(chr, st, end); in read()
/packages/apps/Email/src/org/apache/commons/io/output/
DProxyWriter.java60 public void write(char[] chr) throws IOException { in write() argument
61 out.write(chr); in write()
71 public void write(char[] chr, int st, int end) throws IOException { in write() argument
72 out.write(chr, st, end); in write()
DNullWriter.java54 public void write(char[] chr) { in write() argument
64 public void write(char[] chr, int st, int end) { in write() argument
DLockableFileWriter.java290 public void write(char[] chr) throws IOException { in write() argument
291 out.write(chr); in write()
301 public void write(char[] chr, int st, int end) throws IOException { in write() argument
302 out.write(chr, st, end); in write()
DFileWriterWithEncoding.java274 public void write(char[] chr) throws IOException { in write() argument
275 out.write(chr); in write()
285 public void write(char[] chr, int st, int end) throws IOException { in write() argument
286 out.write(chr, st, end); in write()