Searched refs:isLetter (Results 1 - 25 of 30) sorted by relevance

12

/openjdk7/jdk/test/java/io/pathNames/win32/
H A DDriveOnly.java39 if (!(Character.isLetter(p.charAt(0)) && (p.charAt(1) == ':'))) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/dtdparser/
H A DXmlNames.java52 if (!XmlChars.isLetter(c) && c != '_' && c != ':')
73 if (!XmlChars.isLetter(c) && c != '_')
H A DXmlChars.java77 * @see #isLetter(char)
102 * @see #isLetter(char)
162 public static boolean isLetter(char c) { method in class:XmlChars
/openjdk7/jdk/test/sun/security/util/Resources/
H A DNewNamesFormat.java65 if (Character.isLetter(c) || Character.isDigit(c) ||
H A DNewResourcesNames.java389 if (Character.isLetter(c) || Character.isDigit(c) ||
/openjdk7/jdk/src/share/classes/java/net/
H A DURLEncoder.java276 if (Character.isLetter(ch)) {
281 if (Character.isLetter(ch)) {
H A DURL.java633 if (!Character.isLetter(c))
/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/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/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/sax/
H A DSystemIdResolver.java109 && Character.isLetter(systemId.charAt(0))
/openjdk7/hotspot/test/compiler/7070134/
H A DStemmer.java399 if (Character.isLetter((char) ch))
407 if (!Character.isLetter((char) ch))
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/api/impl/
H A DNameConverter.java254 protected boolean isLetter(char c) {
255 return super.isLetter(c) || c=='_';
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/share/classes/javax/swing/text/
H A DMaskFormatter.java55 * <td>U</td><td>Any character (<code>Character.isLetter</code>). All
58 * <tr><td>L</td><td>Any character (<code>Character.isLetter</code>). All
61 * <tr><td>A</td><td>Any character or number (<code>Character.isLetter</code>
65 * (<code>Character.isLetter</code>).</td>
939 return (Character.isLetter(aChar) &&
955 return (Character.isLetter(aChar) &&
978 * Represents a letter, uses <code>Character.isLetter</code>.
982 return (Character.isLetter(aChar) &&
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/utils/
H A DSystemIDResolver.java179 && Character.isLetter(systemId.charAt(0))
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DSystemIDResolver.java172 && Character.isLetter(systemId.charAt(0))
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DUnicodeProp.java41 return Character.isLetter(ch);
/openjdk7/jdk/src/share/classes/javax/swing/filechooser/
H A DFileSystemView.java690 && Character.isLetter(path.charAt(0))) {
768 if (path.length() >= 2 && path.charAt(1) == ':' && Character.isLetter(path.charAt(0))) {
/openjdk7/jdk/src/share/classes/sun/misc/
H A DExtensionInfo.java332 if (Character.isLetter(lastChar)) {
/openjdk7/langtools/test/tools/javac/diags/
H A DHTMLWriter.java201 alpha = Character.isLetter(value.charAt(i));
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/widgets/
H A DFigureWidget.java96 if (!Character.isLetter(c) || Character.isUpperCase(c)) {
/openjdk7/jdk/make/tools/src/build/tools/generatebreakiteratordata/
H A DCharSet.java220 else if (c >= ' ' && c < '\u007f' && !Character.isLetter((char)c)
/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...]
/openjdk7/jaxp/src/com/sun/org/apache/regexp/internal/
H A DRE.java1130 if (!Character.isLetter(search.charAt(idx)))

Completed in 97 milliseconds

12