Searched defs:isDigit (Results 1 - 19 of 19) sorted by relevance

/openjdk7/jdk/test/java/util/regex/
H A DPOSIX_Unicode.java71 return Character.isDigit(ch) ||
81 public static boolean isDigit(int ch) { method in class:POSIX_Unicode
82 return Character.isDigit(ch);
88 return Character.isAlphabetic(ch) || Character.isDigit(ch);
139 isDigit(ch);
H A DPOSIX_ASCII.java204 static boolean isDigit(int ch) { method in class:POSIX_ASCII
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/dtdparser/
H A DXmlChars.java367 private static boolean isDigit(char c) { method in class:XmlChars
371 // java.lang.Character.isDigit is correct from the XML point
374 return Character.isDigit(c)
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/util/
H A DUri.java123 return ('a' <= c && c <= 'f') || ('A' <= c && c <= 'F') || isDigit(c);
126 private static boolean isDigit(char c) { method in class:Uri
131 return isAlpha(c) || isDigit(c) || c == '+' || c == '-' || c =='.';
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DTypeValidator.java100 public static final boolean isDigit(char ch) { method in class:TypeValidator
107 return isDigit(ch) ? ch - '0' : -1;
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DASCII.java214 static boolean isDigit(int ch) { method in class:ASCII
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/util/
H A DUri.java113 return ('a' <= c && c <= 'f') || ('A' <= c && c <= 'F') || isDigit(c);
116 private static boolean isDigit(char c) { method in class:Uri
121 return isAlpha(c) || isDigit(c) || c == '+' || c == '-' || c =='.';
/openjdk7/jdk/src/share/classes/java/util/jar/
H A DAttributes.java483 return isAlpha(c) || isDigit(c) || c == '_' || c == '-';
490 private static boolean isDigit(char c) { method in class:Attributes.Name
/openjdk7/jdk/src/share/classes/com/sun/jndi/dns/
H A DDnsName.java431 if (isDigit(name.charAt(i))) { // sequence is \DDD
468 if (isDigit(c1)) { // sequence is `\DDD'
471 if (isDigit(c2) && isDigit(c3)) {
526 private static boolean isDigit(char c) { method in class:DnsName
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/api/impl/
H A DNameUtil.java48 protected static boolean isDigit(char c) { method in class:NameUtil
49 return c >= '0' && c <= '9' || Character.isDigit(c);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/utils/
H A DURI.java696 if (!isDigit(portStr.charAt(i)))
1478 if (index + 1 < addrLength && isDigit(p_address.charAt(index + 1)))
1492 if (!isDigit(address.charAt(i - 1))
1493 || (i + 1 < addrLength &&!isDigit(address.charAt(i + 1))))
1500 else if (!isDigit(testChar))
1551 private static boolean isDigit(char p_char) method in class:URI
1566 return (isDigit(p_char) || (p_char >= 'a' && p_char <= 'f')
1592 return (isAlpha(p_char) || isDigit(p_char));
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DURI.java717 if (!isDigit(portStr.charAt(i)))
1499 if (index + 1 < addrLength && isDigit(p_address.charAt(index + 1)))
1513 if (!isDigit(address.charAt(i - 1))
1514 || (i + 1 < addrLength &&!isDigit(address.charAt(i + 1))))
1521 else if (!isDigit(testChar))
1572 private static boolean isDigit(char p_char) method in class:URI
1587 return (isDigit(p_char) || (p_char >= 'a' && p_char <= 'f')
1613 return (isAlpha(p_char) || isDigit(p_char));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/util/
H A DJaxmURI.java596 if (!isDigit(portStr.charAt(i))) {
1231 if (index+1 < addrLength && isDigit(p_address.charAt(index+1))) {
1241 if (!isDigit(address.charAt(i-1)) ||
1242 (i+1 < addrLength && !isDigit(address.charAt(i+1)))) {
1247 else if (!isDigit(testChar)) {
1284 private static boolean isDigit(char p_char) { method in class:JaxmURI
1295 return (isDigit(p_char) ||
1316 return (isAlpha(p_char) || isDigit(p_char));
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/datatype/
H A DDurationImpl.java487 && isDigit(s.charAt(idx[0]))
545 private static boolean isDigit(char ch) { method in class:DurationImpl
557 return isDigit(ch) || ch == '.';
H A DXMLGregorianCalendarImpl.java2854 while (isDigit(ch=peek()) && (vidx - vstart) <= maxDigits) {
2879 if(!isDigit(ch))
2910 while (isDigit(peek())) {
2917 private static boolean isDigit(char ch) { method in class:XMLGregorianCalendarImpl
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DURI.java936 if (!isDigit(portStr.charAt(i))) {
1840 if (index+1 < addrLength && isDigit(address.charAt(index+1))) {
1914 if ((i > 0 && !isDigit(address.charAt(i-1))) ||
1915 (i+1 < addrLength && !isDigit(address.charAt(i+1)))) {
1923 else if (!isDigit(testChar)) {
2082 private static boolean isDigit(char p_char) { method in class:URI
/openjdk7/jdk/src/share/classes/java/text/
H A DSimpleDateFormat.java249 * {@link Character#isDigit(char)}, will be parsed into the default century.
1677 if (!isDigit(c)) {
1682 if (isDigit(c)) {
1705 if (!isDigit(c)) {
1710 if (!isDigit(c)) {
1727 private boolean isDigit(char c) { method in class:SimpleDateFormat
1855 && Character.isDigit(text.charAt(start))
1856 && Character.isDigit(text.charAt(start+1))) {
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DAttribute.java1111 boolean isDigit(char c) { method in class:Attribute
1123 if (isDigit(layout.charAt(dash-1))) {
1127 if (isDigit(afterDash)) {
1139 while (beg > 0 && isDigit(layout.charAt(beg-1))) {
1145 assert(beg == 0 || !isDigit(layout.charAt(beg-1)));
1154 while (end < limit && isDigit(layout.charAt(end))) {
/openjdk7/jdk/src/share/classes/java/lang/
H A DCharacter.java5435 * the {@link #isDigit(int)} method.
5444 public static boolean isDigit(char ch) { method in class:Character
5445 return isDigit((int)ch);
5478 public static boolean isDigit(int codePoint) { method in class:Character
5499 * @see Character#isDigit(char)
5523 * @see Character#isDigit(int)
5560 * @see Character#isDigit(char)
5594 * @see Character#isDigit(int)
5617 * {@code Character.isDigit(char ch)} returns
5628 * @see Character#isDigit(cha
[all...]

Completed in 163 milliseconds