Searched refs:isLower (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/misc/
H A DASCIICaseInsensitiveComparator.java84 static boolean isLower(int ch) { method in class:ASCIICaseInsensitiveComparator
97 return isLower(ch) ? (ch - 0x20) : ch;
/openjdk7/jdk/src/share/classes/sun/util/locale/
H A DLocaleUtils.java78 return isLower(c) ? (char)(c - 0x20) : c;
112 if (isLower(s.charAt(idx))) {
134 if (!isLower(s.charAt(idx))) {
163 private static boolean isLower(char c) { method in class:LocaleUtils
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DASCII.java250 static boolean isLower(int ch) { method in class:ASCII
271 return isLower(ch) ? (ch - 0x20) : ch;
H A DMatcher.java779 if (ASCII.isLower(nextChar) ||
H A DPattern.java2741 while (ASCII.isLower(ch=read()) || ASCII.isUpper(ch) ||
2791 if (ASCII.isLower(ch) || ASCII.isUpper(ch)) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/api/impl/
H A DNameUtil.java56 protected static boolean isLower(char c) { method in class:NameUtil
84 if (!isLower(s.charAt(0)))
114 if (isLower(c2))
/openjdk7/jdk/test/java/util/regex/
H A DPOSIX_Unicode.java33 public static boolean isLower(int ch) { method in class:POSIX_Unicode
H A DPOSIX_ASCII.java236 static boolean isLower(int ch) { method in class:POSIX_ASCII
H A DRegExTest.java3725 POSIX_ASCII.isLower(cp) != lower.reset(str).matches() ||

Completed in 61 milliseconds