Searched defs:toLower (Results 1 - 4 of 4) sorted by relevance

/libcore/ojluni/src/main/java/sun/misc/
H A DASCIICaseInsensitiveComparator.java48 c1 = (char)toLower(c1);
49 c2 = (char)toLower(c2);
77 h = 31*h + toLower(s.charAt(i));
92 static int toLower(int ch) { method in class:ASCIICaseInsensitiveComparator
/libcore/ojluni/src/main/java/sun/util/locale/
H A DLocaleUtils.java63 if (c1 != c2 && toLower(c1) != toLower(c2)) {
81 static char toLower(char c) { method in class:LocaleUtils
103 buf[i] = (i < idx) ? c : toLower(c);
153 buf[i] = toLower(c);
/libcore/ojluni/src/main/java/java/util/jar/
H A DManifest.java265 if (toLower(lbuf[0]) == 'n' && toLower(lbuf[1]) == 'a' &&
266 toLower(lbuf[2]) == 'm' && toLower(lbuf[3]) == 'e' &&
277 private int toLower(int c) { method in class:Manifest
/libcore/ojluni/src/main/java/java/net/
H A DURI.java1679 private static int toLower(char c) { method in class:URI
1712 if (toLower(s.charAt(i)) != toLower(t.charAt(i)))
1715 if (toLower(s.charAt(i)) != toLower(t.charAt(i)))
1732 if (toLower(s.charAt(i)) != toLower(t.charAt(i)))
1770 h = 31 * h + toLower(s.charAt(i));
1795 int c = toLower(s.charAt(i)) - toLower(
[all...]

Completed in 264 milliseconds