/external/libpcap/ |
D | scanner.l | 310 {N} { yylval.i = stoi((char *)yytext); return NUM; } 331 icmptype { yylval.i = 0; return NUM; } 332 icmpcode { yylval.i = 1; return NUM; } 333 icmp-echoreply { yylval.i = 0; return NUM; } 334 icmp-unreach { yylval.i = 3; return NUM; } 335 icmp-sourcequench { yylval.i = 4; return NUM; } 336 icmp-redirect { yylval.i = 5; return NUM; } 337 icmp-echo { yylval.i = 8; return NUM; } 338 icmp-routeradvert { yylval.i = 9; return NUM; } 339 icmp-routersolicit { yylval.i = 10; return NUM; } [all …]
|
D | grammar.y | 174 %token NUM INBOUND OUTBOUND 199 %type <i> NUM action reason 234 | HID '/' NUM { $$.b = gen_mcode($1, NULL, $3, 243 | HID6 '/' NUM { 379 | LESS NUM { $$ = gen_less($2); } 380 | GREATER NUM { $$ = gen_greater($2); } 381 | CBYTE NUM byteop NUM { $$ = gen_byteop($3, $2, $4); } 395 | PF_RNR NUM { $$ = gen_pf_rnr($2); } 396 | PF_SRNR NUM { $$ = gen_pf_srnr($2); } 401 reason: NUM { $$ = $1; } [all …]
|
D | scanner.c | 3271 { yylval.i = stoi((char *)pcap_text); return NUM; } 3312 { yylval.i = 0; return NUM; } 3317 { yylval.i = 1; return NUM; } 3322 { yylval.i = 0; return NUM; } 3327 { yylval.i = 3; return NUM; } 3332 { yylval.i = 4; return NUM; } 3337 { yylval.i = 5; return NUM; } 3342 { yylval.i = 8; return NUM; } 3347 { yylval.i = 9; return NUM; } 3352 { yylval.i = 10; return NUM; } [all …]
|
D | tokdefs.h | 65 NUM = 291, enumerator 169 #define NUM 291 macro
|
/external/antlr/antlr-3.4/runtime/Python/tests/ |
D | t022scopes.g | 32 | NUM 54 : ID '=' NUM ';' 79 : ID '=' NUM ';' 99 : NUM { $e[0]::a = int($NUM.text); } 113 : NUM { $f[-2]::a = int($NUM.text); } 123 NUM : ('0'..'9')+
|
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
D | t022scopes.g | 32 | NUM 54 : ID '=' NUM ';' 80 : ID '=' NUM ';' 105 : NUM { $e[0]::a = parseInt($NUM.text, 10); } 119 : NUM { var len = $f.length-2; $f[len>=0 ? len : 0]::a = parseInt($NUM.text, 10); } 128 NUM : ('0'..'9')+
|
/external/bison/tests/ |
D | conflicts.at | 133 [[%token NUM OP 135 exp: exp OP exp | NUM; 152 2 | NUM 159 NUM (258) 2 175 2 | . NUM 177 NUM shift, and go to state 1 184 2 exp: NUM . 209 2 | . NUM 211 NUM shift, and go to state 1 240 [[%token NUM OP [all …]
|
D | calc.at | 108 %token <ival> NUM "number" 130 NUM { $$ = $1; } 251 | NUM, or the ASCII character read if not a number. Skips all | 289 return NUM; 357 # _AT_CHECK_CALC(BISON-OPTIONS, INPUT, [NUM-STDERR-LINES]) 363 # NUM-STDERR-LINES is the number of expected lines on stderr. 377 # [NUM-STDERR-LINES], 385 # NUM-STDERR-LINES is the number of expected lines on stderr. 395 # If BISON-OPTIONS contains `%debug' but not `%glr', then NUM-STDERR-LINES
|
/external/wpa_supplicant_6/wpa_supplicant/tests/ |
D | test_x509v3_nist2.sh | 29 NUM=$1 32 $X509TEST "$@" TrustAnchorRootCertificate.crt > $TMPOUT.$NUM 40 echo "$NUM failed - expected validation success" 46 echo "$NUM failed - expected validation failure" 49 REASON=`grep "Certificate chain validation failed: " $TMPOUT.$NUM` 55 echo "$NUM failed - expected validation result $RES; result was $REASONNUM" 59 echo "$NUM failed - expected validation failure; other type of error detected" 65 rm $TMPOUT.$NUM 66 SUCCESS="$SUCCESS $NUM" 68 FAILURE="$FAILURE $NUM"
|
D | test_x509v3_nist.sh | 33 NUM=$1 36 $X509TEST "$@" > $TMPOUT.$NUM 44 echo "test$NUM failed - expected validation success" 50 echo "test$NUM failed - expected validation failure" 53 REASON=`grep "Certificate chain validation failed: " $TMPOUT.$NUM` 59 echo "test$NUM failed - expected validation result $RES; result was $REASONNUM" 63 echo "test$NUM failed - expected validation failure; other type of error detected" 69 rm $TMPOUT.$NUM 70 SUCCESS="$SUCCESS $NUM" 72 FAILURE="$FAILURE $NUM"
|
/external/bison/data/ |
D | c++.m4 | 60 # b4_rhs_value(RULE-LENGTH, NUM, [TYPE]) 62 # Expansion of $<TYPE>NUM, where the current rule has RULE-LENGTH 74 # b4_rhs_location(RULE-LENGTH, NUM) 76 # Expansion of @NUM, where the current rule has RULE-LENGTH symbols
|
D | yacc.c | 101 # b4_rhs_value(RULE-LENGTH, NUM, [TYPE]) 103 # Expansion of $<TYPE>NUM, where the current rule has RULE-LENGTH 121 # b4_rhs_location(RULE-LENGTH, NUM) 123 # Expansion of @NUM, where the current rule has RULE-LENGTH symbols
|
/external/openssl/crypto/bn/ |
D | exp.c | 8 #define NUM (8*8*8) macro 17 int j,i,size=SIZE,num=NUM,mod=MOD;
|
/external/icu4c/samples/coll/ |
D | coll.cpp | 61 enum {FLAG, NUM, STRING} type; enumerator 76 {"-level", OptSpec::NUM, &opt_level}, 105 case OptSpec::NUM: in processOptions()
|
/external/llvm/include/llvm/Support/ |
D | InstVisitor.h | 27 #define HANDLE_INST(NUM, OPCODE, CLASS) class CLASS; argument 122 #define HANDLE_INST(NUM, OPCODE, CLASS) \ in visit() argument 154 #define HANDLE_INST(NUM, OPCODE, CLASS) \ argument 156 if (NUM == Instruction::Call) \
|
/external/bison/lib/ |
D | bitset.h | 272 #define bitset_list(BSET, LIST, NUM, NEXT) \ argument 273 BITSET_LIST_ (BSET, LIST, NUM, NEXT) 278 #define bitset_list_reverse(BSET, LIST, NUM, NEXT) \ argument 279 BITSET_LIST_REVERSE_ (BSET, LIST, NUM, NEXT)
|
D | bbitset.h | 270 #define BITSET_LIST_(BSET, LIST, NUM, NEXT) \ argument 271 (BSET)->b.vtable->list (BSET, LIST, NUM, NEXT) 276 #define BITSET_LIST_REVERSE_(BSET, LIST, NUM, NEXT) \ argument 277 (BSET)->b.vtable->list_reverse (BSET, LIST, NUM, NEXT)
|
/external/icu4c/test/perf/ubrkperf/ |
D | ubrkperfold.cpp | 125 enum {FLAG, NUM, STRING} type; enumerator 132 {"-langid", OptSpec::NUM, &opt_langid}, 137 {"-loop", OptSpec::NUM, &opt_loopCount}, 138 {"-time", OptSpec::NUM, &opt_time}, 139 {"-passes", OptSpec::NUM, &opt_passesCount}, 252 case OptSpec::NUM: in ProcessOptions()
|
/external/icu4c/samples/strsrch/ |
D | strsrch.cpp | 70 enum {FLAG, NUM, STRING} type; enumerator 85 {"-level", OptSpec::NUM, &opt_level}, 116 case OptSpec::NUM: in processOptions()
|
/external/webkit/Tools/iExploder/iexploder-1.7.2/ |
D | README.txt | 30 -t, --test NUM Test to start at 31 -p, --port NUM Listen on TCP port NUM (random) 35 -w, --watchdog NUM How many seconds to wait for pages to load (45s) 37 -s, --scan NUM How often to check for new log data (5s)
|
/external/llvm/test/Transforms/IndVarSimplify/ |
D | udiv.ll | 26 %NUM.0.ph = phi i32 [ %call, %cond.true ], [ 170000, %entry ] ; <i32> [#uses=2] 27 %tobool18 = icmp eq i32 %NUM.0.ph, 0 ; <i1> [#uses=1] 46 %dec19.in = phi i32 [ %NUM.0.ph, %bb.nph30 ], [ %dec19, %while.cond ] ; <i32> [#uses=1]
|
/external/webkit/Tools/android/flex-2.5.4a/ |
D | scan.l | 71 %x SECT2 SECT2PROLOG SECT3 CODEBLOCK PICKUPDEF SC CARETISBOL NUM QUOTE 336 "{"/[[:digit:]] BEGIN(NUM); return '{';
|
/external/llvm/test/CodeGen/X86/ |
D | licm-nested.ll | 23 %exitcond78 = icmp eq i32 %indvar.next77, %NUM.0.ph80 ; <i1> [#uses=1] 27 %NUM.0.ph80 = phi i32 [ %call, %while.cond.preheader ], [ 17000, %entry ] ; <i32> [#uses=1]
|
/external/linux-tools-perf/Documentation/ |
D | perf-probe.txt | 131 "FUNC[@SRC][:RLN[+NUM|-RLN2]]|SRC[:ALN[+NUM|-ALN2]]" 137 many lines to show by using 'NUM'. Moreover, 'FUNC@SRC' combination is good
|
/external/icu4c/test/perf/collationperf/ |
D | collperf.cpp | 142 enum {FLAG, NUM, STRING} type; enumerator 149 {"-langid", OptSpec::NUM, &opt_langid}, 167 {"-level", OptSpec::NUM, &opt_level}, 170 {"-loop", OptSpec::NUM, &opt_loopCount}, 171 {"-iloop", OptSpec::NUM, &opt_iLoopCount}, 242 case OptSpec::NUM: in ProcessOptions()
|