/cts/tools/dasm/src/java_cup/ |
parse_action.java | 5 * Full entries will either be SHIFT(state_num), REDUCE(production), or ERROR. 42 /** Constants for action type -- reduce action. */ 43 public static final int REDUCE = 2;
|
reduce_action.java | 4 /** This class represents a reduce action within the parse table. 34 /** The production we reduce with. */ 37 /** The production we reduce with. */ 45 public int kind() {return REDUCE;} 79 return "REDUCE(" + reduce_with().index() + ")";
|
parse_action_row.java | 53 /** Default (reduce) action for this row. -1 will represent default 62 /** Compute the default (reduce) action for this row and store it in 86 if (under_term[i].kind() == parse_action.REDUCE) 88 /* count the reduce in the proper production slot and keep the
|
parse_action_table.java | 9 * reduce, or an error. 71 /* look at the action entry to see if its a reduce */ 73 if (act != null && act.kind() == parse_action.REDUCE)
|
emit.java | 34 * (shift, reduce, or error) under each lookahead symbol.<br> 35 * <dt> reduce-goto table 36 * <dd> when a reduce on a given production is taken, the parse stack is 67 do_reduce_table - emit declaration and init for the reduce-goto table 91 not_reduced - count of number of productions that never reduce. 207 /** Time to produce the reduce-goto table. */ 478 * @param compact_reduces do we use the most frequent reduce as default? 528 /* reduce actions get negated entries of production# + 1 */ 529 else if (act.kind() == parse_action.REDUCE) 564 /** Emit the reduce-goto table [all...] |
/external/qemu/slirp/ |
cksum.c | 45 #define REDUCE {l_util.l = sum; sum = l_util.s[0] + l_util.s[1]; ADDCARRY(sum);} 76 REDUCE; 102 REDUCE; 108 REDUCE; 135 REDUCE;
|
/external/qemu/slirp-android/ |
cksum.c | 45 #define REDUCE {l_util.l = sum; sum = l_util.s[0] + l_util.s[1]; ADDCARRY(sum);} 76 REDUCE; 102 REDUCE; 108 REDUCE; 135 REDUCE;
|
/external/chromium_org/third_party/sqlite/src/tool/ |
lemon.c | 230 REDUCE, 233 SRCONFLICT, /* Was a reduce, but part of a conflict */ 234 RRCONFLICT, /* Was a reduce, but part of a conflict */ 236 RD_RESOLVED, /* Was reduce. Precedence resolved conflict */ 240 /* Every shift or reduce operation is stored as one of the following */ 246 struct rule *rp; /* The rule, if a reduce */ 404 if( rc==0 && ap1->type==REDUCE ){ [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
pickle.py | 116 REDUCE = 'R' # apply callable to argtuple, both on stack 290 reduce = dispatch_table.get(t) 291 if reduce: 292 rv = reduce(obj) 304 reduce = getattr(obj, "__reduce_ex__", None) 305 if reduce: 306 rv = reduce(self.proto) 308 reduce = getattr(obj, "__reduce__", None) variable in class:Pickler.save. 309 if reduce: 310 rv = reduce() [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
pickle.py | 116 REDUCE = 'R' # apply callable to argtuple, both on stack 290 reduce = dispatch_table.get(t) 291 if reduce: 292 rv = reduce(obj) 304 reduce = getattr(obj, "__reduce_ex__", None) 305 if reduce: 306 rv = reduce(self.proto) 308 reduce = getattr(obj, "__reduce__", None) variable in class:Pickler.save. 309 if reduce: 310 rv = reduce() [all...] |
/cts/tools/dasm/etc/ |
java_cup-new.jar | |
java_cup.jar | |
java_cup.jar.old | |
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/parser/ |
Parser.java | 30 private final static int REDUCE = 1; 166 case REDUCE: 169 case 0: /* reduce ANone1Grammar */ 175 case 1: /* reduce AOne1Grammar */ 181 case 2: /* reduce AMany1Grammar */ 187 case 3: /* reduce ADataCommand */ 193 case 4: /* reduce AAcommentcommand1Command */ 199 case 5: /* reduce AAcommentcommand2Command */ 205 case 6: /* reduce AVarCommand */ 211 case 7: /* reduce ALvarCommand * [all...] |
/prebuilts/devtools/tools/lib/ |
jsilver-1.0.0.jar | |
/prebuilts/tools/common/m2/repository/com/google/jsilver/jsilver/1.0.0/ |
jsilver-1.0.0.jar | |