Home
last modified time | relevance | path

Searched refs:DIGIT (Results 1 – 3 of 3) sorted by relevance

/libcore/ojluni/src/test/java/util/regex/
DPOSIX_ASCII.java33 static final int DIGIT = 0x00000400; field in POSIX_ASCII
51 static final int ALNUM = (UPPER|LOWER|DIGIT);
53 static final int GRAPH = (PUNCT|UPPER|LOWER|DIGIT);
55 static final int WORD = (UPPER|LOWER|UNDER|DIGIT);
108 DIGIT+HEX+0, /* 30 0 */
109 DIGIT+HEX+1, /* 31 1 */
110 DIGIT+HEX+2, /* 32 2 */
111 DIGIT+HEX+3, /* 33 3 */
112 DIGIT+HEX+4, /* 34 4 */
113 DIGIT+HEX+5, /* 35 5 */
[all …]
/libcore/ojluni/src/main/java/java/util/regex/
DASCII.java41 static final int DIGIT = 0x00000400; field in 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+HEX+5, /* 35 5 */
[all …]
/libcore/ojluni/src/test/java/util/Base64/
Dplain.txt125 hex-octet := "=" 2(DIGIT / "A" / "B" / "C" / "D" / "E" / "F")