Searched refs:chr (Results 1 - 6 of 6) sorted by relevance

/packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
H A DNullWriter.java52 * @param chr The characters to write
54 public void write(char[] chr) { argument
60 * @param chr The characters to write
64 public void write(char[] chr, int st, int end) { argument
H A DProxyWriter.java57 * @param chr the characters to write
60 public void write(char[] chr) throws IOException { argument
61 out.write(chr);
66 * @param chr the characters to write
71 public void write(char[] chr, int st, int end) throws IOException { argument
72 out.write(chr, st, end);
H A DFileWriterWithEncoding.java271 * @param chr the characters to write
274 public void write(char[] chr) throws IOException { argument
275 out.write(chr);
280 * @param chr the characters to write
285 public void write(char[] chr, int st, int end) throws IOException { argument
286 out.write(chr, st, end);
H A DLockableFileWriter.java287 * @param chr the characters to write
290 public void write(char[] chr) throws IOException { argument
291 out.write(chr);
296 * @param chr the characters to write
301 public void write(char[] chr, int st, int end) throws IOException { argument
302 out.write(chr, st, end);
/packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
H A DProxyReader.java58 * @param chr the buffer to read the characters into
62 public int read(char[] chr) throws IOException { argument
63 return in.read(chr);
68 * @param chr the buffer to read the characters into
74 public int read(char[] chr, int st, int end) throws IOException { argument
75 return in.read(chr, st, end);
/packages/apps/UnifiedEmail/src/com/android/emailcommon/utility/
H A DTextUtilities.java593 char chr = text.charAt(i);
595 if (!inTag && (chr == '<')) {
622 chr = text.charAt(i);
628 } else if (inTag && (chr == '>')) {
633 sb.append(chr);
639 char chrLowerCase = Character.toLowerCase(chr);
710 sb.append(chr);

Completed in 87 milliseconds