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

1 2 3 4 5 6 7 8 910

  /frameworks/data-binding/compilerCommon/
XMLLexer.g4 40 CharRef : '&#' DIGIT+ ';'
69 DIGIT : [0-9] ;
73 | '-' | '_' | '.' | DIGIT
  /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
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
AddressListParserConstants.java 24 int DIGIT = 12;
52 "<DIGIT>",
AddressListParser.jj 482 | < #DIGIT: ["0" - "9"] >
483 | < #ATEXT: ( <ALPHA> | <DIGIT>
  /toolchain/binutils/binutils-2.27/gas/
itbl-lex.l 38 DIGIT [0-9]
62 "p"{DIGIT} {
67 {DIGIT}+ {
  /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/ltp/testcases/network/multicast/mc_member/
mc_member 46 DIGIT=`ps -ef | grep mc_member | grep -v grep | wc -l`
47 ADDRESS=$DIGIT.$DIGIT.$DIGIT.$DIGIT
  /external/antlr/antlr-3.4/runtime/Python/tests/
t009lexer.py 28 assert token.type == self.lexerModule.DIGIT
34 assert token.type == self.lexerModule.DIGIT
40 assert token.type == self.lexerModule.DIGIT
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
calc.rb 57 INTEGER: DIGIT+;
59 DECIMAL: DIGIT+ '.' DIGIT+;
62 DIGIT: '0'..'9';
rule-methods.rb 117 private b: DIGIT;
118 protected c: ID DIGIT;
120 DIGIT: ('0'..'9')+;
actions.rb 211 nums returns [ds]: digs+=DIGIT+
214 DIGIT: ('0'..'9')+;
  /external/guava/guava-tests/test/com/google/common/base/
BenchmarkHelpers.java 62 ALL_DIGIT(CharMatcher.DIGIT, ALL_DIGITS),
CharMatcherTest.java 126 doTestSetBits(CharMatcher.DIGIT);
218 doTestNoMatches(CharMatcher.DIGIT, "\tAz()");
220 doTestNoMatches(CharMatcher.DIGIT.and(CharMatcher.ASCII), "\tAz()");
245 doTestAllMatches(CharMatcher.DIGIT, "0123456789\u0ED0\u1B59");
247 doTestAllMatches(CharMatcher.DIGIT.and(CharMatcher.ASCII), "0123456789");
  /external/nist-sip/java/gov/nist/javax/sip/parser/
TokenTypes.java 171 public static final int DIGIT = LexerCore.DIGIT;
  /external/tensorflow/tensorflow/core/lib/strings/
scanner.h 40 // DIGIT means ascii digit: 0-9.
45 DIGIT,
189 case DIGIT:
scanner_test.cc 42 .Any(Scanner::DIGIT)
50 .Any(Scanner::DIGIT)
58 .Any(Scanner::DIGIT)
247 EXPECT_TRUE(scan.Many(Scanner::DIGIT).GetResult(&remaining, &match));
280 EXPECT_EQ("0123456789", ClassStr(Scanner::DIGIT));
320 EXPECT_EQ('A', Scanner("0123A").Any(Scanner::DIGIT).Peek());
  /external/libvncserver/webclients/novnc/include/
keysym.js 196 XK_0 = 0x0030, /* U+0030 DIGIT ZERO */
197 XK_1 = 0x0031, /* U+0031 DIGIT ONE */
198 XK_2 = 0x0032, /* U+0032 DIGIT TWO */
199 XK_3 = 0x0033, /* U+0033 DIGIT THREE */
200 XK_4 = 0x0034, /* U+0034 DIGIT FOUR */
201 XK_5 = 0x0035, /* U+0035 DIGIT FIVE */
202 XK_6 = 0x0036, /* U+0036 DIGIT SIX */
203 XK_7 = 0x0037, /* U+0037 DIGIT SEVEN */
204 XK_8 = 0x0038, /* U+0038 DIGIT EIGHT */
205 XK_9 = 0x0039, /* U+0039 DIGIT NINE *
    [all...]
  /external/swiftshader/src/OpenGL/compiler/preprocessor/
Tokenizer.l 114 DIGIT [0-9]
115 EXPONENT_PART [eE][+-]?{DIGIT}+
116 FRACTIONAL_CONSTANT ({DIGIT}*"."{DIGIT}+)|({DIGIT}+".")
158 ({DIGIT}+{EXPONENT_PART}[fF]?)|({FRACTIONAL_CONSTANT}{EXPONENT_PART}?[fF]?) {
163 /* Anything that starts with a {DIGIT} or .{DIGIT} must be a number. */
165 ({DIGIT}+[_a-zA-Z0-9.]*)|("."{DIGIT}+[_a-zA-Z0-9.]*)
    [all...]
  /frameworks/rs/
spec.l 9 DIGIT [0-9]
  /frameworks/support/room/compiler/
SQLite.g4 851 : DIGIT+ ( '.' DIGIT* )? ( E [-+]? DIGIT+ )?
852 | '.' DIGIT+ ( E [-+]? DIGIT+ )?
856 : '?' DIGIT*
884 fragment DIGIT : [0-9];
  /external/fonttools/Lib/fontTools/
agl.py 424 0038;eight;DIGIT EIGHT
450 0035;five;DIGIT FIVE
453 0034;four;DIGIT FOUR
536 0039;nine;DIGIT NINE
559 0031;one;DIGIT ONE
625 0037;seven;DIGIT SEVEN
631 0036;six;DIGIT SIX
648 0033;three;DIGIT THREE
659 0032;two;DIGIT TWO
702 0030;zero;DIGIT ZER
    [all...]
  /external/tensorflow/tensorflow/core/common_runtime/
step_stats_collector.cc 86 scanner.RestartCapture().Many(strings::Scanner::DIGIT).StopCapture();
115 scanner.RestartCapture().Many(strings::Scanner::DIGIT).StopCapture();

Completed in 290 milliseconds

1 2 3 4 5 6 7 8 910