HomeSort by relevance Sort by last modified time
    Searched refs:REDUCE (Results 1 - 10 of 10) sorted by null

  /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/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...]
  /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...]

Completed in 279 milliseconds