Searched defs:isLetter (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/dtdparser/
H A DXmlChars.java77 * @see #isLetter(char)
102 * @see #isLetter(char)
162 public static boolean isLetter(char c) { method in class:XmlChars
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsPathParser.java122 if (isLetter(c0) && c1 == ':') {
220 private static final boolean isLetter(char c) { method in class:WindowsPathParser
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/api/impl/
H A DNameUtil.java38 * like "isLetter" can be different depending on the situation.
60 protected boolean isLetter(char c) { method in class:NameUtil
61 return c >= 'A' && c <= 'Z' || c >= 'a' && c <= 'z' || Character.isLetter(c);
/openjdk7/jdk/src/windows/instrument/
H A DFileSystemSupport_md.c43 static int isLetter(char c) { function
99 && isLetter(c = path[src])
289 if (isLetter(c0) && (c1 == ':')) {
/openjdk7/jdk/src/windows/classes/java/io/
H A DWin32FileSystem.java51 private boolean isLetter(char c) { method in class:Win32FileSystem
89 && isLetter(c = path.charAt(src))
210 if (isLetter(c0) && (c1 == ':')) {
377 (isLetter(path.charAt(0))) &&
384 (isLetter(path.charAt(0))) &&
/openjdk7/jdk/src/share/classes/java/lang/
H A DCharacter.java97 * {@code Character.isLetter('\u005CuD840')} returns {@code false}, even though
103 * example, {@code Character.isLetter(0x2F81A)} returns
5500 * @see Character#isLetter(char)
5524 * @see Character#isLetter(int)
5555 * the {@link #isLetter(int)} method.
5570 public static boolean isLetter(char ch) { method in class:Character
5571 return isLetter((int)ch);
5603 public static boolean isLetter(int codePoint) { method in class:Character
5616 * {@code Character.isLetter(char ch)} or
5632 * @see Character#isLetter(cha
[all...]

Completed in 49 milliseconds