Searched refs:DIGIT (Results 1 - 14 of 14) sorted by relevance

/openjdk7/jdk/src/share/classes/java/util/regex/
H A DASCII.java41 static final int DIGIT = 0x00000400; field in class:ASCII
59 static final int ALNUM = (UPPER|LOWER|DIGIT);
61 static final int GRAPH = (PUNCT|UPPER|LOWER|DIGIT);
63 static final int WORD = (UPPER|LOWER|UNDER|DIGIT);
116 DIGIT+HEX+0, /* 30 0 */
117 DIGIT+HEX+1, /* 31 1 */
118 DIGIT+HEX+2, /* 32 2 */
119 DIGIT+HEX+3, /* 33 3 */
120 DIGIT+HEX+4, /* 34 4 */
121 DIGIT
[all...]
H A DUnicodeProp.java104 return DIGIT.is(ch) ||
127 DIGIT { enum constant in enum:UnicodeProp
138 return ALPHABETIC.is(ch) || DIGIT.is(ch);
207 posix.put("DIGIT", "DIGIT");
H A DPattern.java2293 ? new Utype(UnicodeProp.DIGIT).complement()
2294 : new Ctype(ASCII.DIGIT).complement();
2351 ? new Utype(UnicodeProp.DIGIT)
2352 : new Ctype(ASCII.DIGIT);
/openjdk7/jdk/test/java/util/regex/
H A DPOSIX_ASCII.java31 static final int DIGIT = 0x00000400; field in class:POSIX_ASCII
49 static final int ALNUM = (UPPER|LOWER|DIGIT);
51 static final int GRAPH = (PUNCT|UPPER|LOWER|DIGIT);
53 static final int WORD = (UPPER|LOWER|UNDER|DIGIT);
106 DIGIT+HEX+0, /* 30 0 */
107 DIGIT+HEX+1, /* 31 1 */
108 DIGIT+HEX+2, /* 32 2 */
109 DIGIT+HEX+3, /* 33 3 */
110 DIGIT+HEX+4, /* 34 4 */
111 DIGIT
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/parse/compact/
H A DCompactSyntaxConstants.java83 int DIGIT = 49; field in interface:CompactSyntaxConstants
165 "<DIGIT>",
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/IPAcl/
H A DParserConstants.java59 int DIGIT = 34; field in interface:ParserConstants
103 "<DIGIT>",
H A DParser.jjt114 < IDENTIFIER: ( (<DIGIT>|<LETTER>)+ (<SEPARATOR>|<LETTER>|<DIGIT>)* (<DIGIT>|<LETTER>)+ ) | (<DIGIT>|<LETTER>)+ >
120 < #DIGIT: ["0"-"9"] >
H A DParser.jj115 < IDENTIFIER: ( (<DIGIT>|<LETTER>)+ (<SEPARATOR>|<LETTER>|<DIGIT>)* (<DIGIT>|<LETTER>)+ ) | (<DIGIT>|<LETTER>)+ >
121 < #DIGIT: ["0"-"9"] >
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/expr/
H A DExpressionParserConstants.java104 int DIGIT = 69; field in interface:ExpressionParserConstants
224 "<DIGIT>",
H A DExpr.jj246 < IDENTIFIER: <LETTER> (<LETTER>|<DIGIT>)* >
266 < #DIGIT:
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dmpi.c336 DIGIT(mp, 0) = d;
357 DIGIT(mp,0) = v;
391 DIGIT(mp,0) = z;
438 DIGIT(&tmp, 0) = d - DIGIT(&tmp, 0);
482 DIGIT(&tmp, 0) = d - DIGIT(&tmp, 0);
574 rem = DIGIT(a, 0) & mask;
647 DIGIT(&s, 0) = 1;
1144 d = DIGIT(
[all...]
H A Dmpi-priv.h186 while (used > 1 && DIGIT(mp, used - 1) == 0) --used; \
H A Dmpi.h371 #define DIGIT(MP,N) MP_DIGIT(MP,N) macro
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/api/impl/
H A DNameUtil.java130 static protected final int DIGIT = 3; field in class:NameUtil
152 if(!xor(t0==DIGIT,t1==DIGIT)) return ACTION_BREAK;
183 case Character.DECIMAL_DIGIT_NUMBER: return DIGIT;

Completed in 254 milliseconds