/openjdk7/jdk/src/share/classes/java/util/regex/ |
H A D | ASCII.java | 41 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 D | UnicodeProp.java | 104 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 D | Pattern.java | 2293 ? 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 D | POSIX_ASCII.java | 31 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 D | CompactSyntaxConstants.java | 83 int DIGIT = 49; field in interface:CompactSyntaxConstants 165 "<DIGIT>",
|
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/IPAcl/ |
H A D | ParserConstants.java | 59 int DIGIT = 34; field in interface:ParserConstants 103 "<DIGIT>",
|
H A D | Parser.jjt | 114 < IDENTIFIER: ( (<DIGIT>|<LETTER>)+ (<SEPARATOR>|<LETTER>|<DIGIT>)* (<DIGIT>|<LETTER>)+ ) | (<DIGIT>|<LETTER>)+ > 120 < #DIGIT: ["0"-"9"] >
|
H A D | Parser.jj | 115 < 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 D | ExpressionParserConstants.java | 104 int DIGIT = 69; field in interface:ExpressionParserConstants 224 "<DIGIT>",
|
H A D | Expr.jj | 246 < IDENTIFIER: <LETTER> (<LETTER>|<DIGIT>)* > 266 < #DIGIT:
|
/openjdk7/jdk/src/share/native/sun/security/ec/impl/ |
H A D | mpi.c | 336 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 D | mpi-priv.h | 186 while (used > 1 && DIGIT(mp, used - 1) == 0) --used; \
|
H A D | mpi.h | 371 #define DIGIT(MP,N) MP_DIGIT(MP,N) macro
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/api/impl/ |
H A D | NameUtil.java | 130 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;
|