HomeSort by relevance Sort by last modified time
    Searched defs:DIGIT (Results 1 - 25 of 34) sorted by null

1 2

  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/lexertest-simple/
TestLexer.h 16 #define DIGIT 5
TestLexerLexer.h 21 #define DIGIT 4
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/lexertest-simple/output1/
TestLexer.h 16 #define DIGIT 5
TestLexerLexer.h 16 #define DIGIT 5
  /external/dhcpcd/compat/
linkaddr.c 47 #define DIGIT (4*0)
82 case NAMING | DIGIT:
90 case GOTTWO | DIGIT:
93 case RESET | DIGIT:
97 case GOTONE | DIGIT:
  /packages/apps/Email/src/org/apache/james/mime4j/field/address/parser/
AddressListParserConstants.java 24 int DIGIT = 12;
52 "<DIGIT>",
  /external/guava/guava/src/com/google/common/base/
CharMatcher.java 99 * Determines whether a character is a digit according to
102 public static final CharMatcher DIGIT;
105 CharMatcher digit = inRange('0', '9'); typedefs
111 digit = digit.or(inRange(base, (char) (base + 9)));
113 DIGIT = digit.precomputed();
117 * Determines whether a character is a digit according to {@link Character#isDigit(char) Java's
138 * Determines whether a character is a letter or digit according to {@link
    [all...]
  /external/dropbear/libtommath/mtest/
mpi.h 60 #define DIGIT(MP,N) (MP)->dp[(N)]
105 /* Single digit arithmetic */
  /external/dropbear/libtommath/
tommath.h 125 /* otherwise the bits per digit is calculated automatically from the size of a mp_digit */
127 #define DIGIT_BIT ((int)((CHAR_BIT * sizeof(mp_digit) - 1))) /* bits per digit */
189 #define DIGIT(m,k) ((m)->dp[(k)])
228 /* set to a digit */
237 /* initialize and set a digit */
252 /* ---> digit manipulation <--- */
328 /* ---> single digit functions <--- */
330 /* compare against a single digit */
  /external/guava/guava-tests/test/com/google/common/base/
CharMatcherTest.java 174 doTestNoMatches(CharMatcher.DIGIT, "\tAz()");
176 doTestNoMatches(CharMatcher.DIGIT.and(CharMatcher.ASCII), "\tAz()");
201 doTestAllMatches(CharMatcher.DIGIT, "0123456789\u0ED0\u1B59");
203 doTestAllMatches(CharMatcher.DIGIT.and(CharMatcher.ASCII), "0123456789");
  /external/nist-sip/java/gov/nist/core/
LexerCore.java 48 public static final int DIGIT = END + 2;
190 tok.tokenType = DIGIT;
239 if (tok == DIGIT) {
241 throw new ParseException(buffer + "\nExpecting DIGIT", ptr);
  /external/nist-sip/java/gov/nist/javax/sip/parser/
TokenTypes.java 171 public static final int DIGIT = LexerCore.DIGIT;