Searched refs:chr (Results 1 – 5 of 5) sorted by relevance
/packages/apps/Email/src/org/apache/commons/io/input/ |
D | ProxyReader.java | 62 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/ |
D | ProxyWriter.java | 60 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()
|
D | NullWriter.java | 54 public void write(char[] chr) { in write() argument 64 public void write(char[] chr, int st, int end) { in write() argument
|
D | LockableFileWriter.java | 290 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()
|
D | FileWriterWithEncoding.java | 274 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()
|