/cts/tools/dasm/src/java_cup/ |
D | action_production.java | 11 public class action_production extends production { 21 production base, in action_production() 35 protected production _base_production; 38 public production base_production() {return _base_production;} in base_production()
|
D | non_terminal.java | 124 production prod; in compute_nullability() 150 for (e=production.all(); e.hasMoreElements(); ) in compute_nullability() 152 prod = (production)e.nextElement(); in compute_nullability() 168 production prod; in compute_first_sets() 185 prod = (production)p.nextElement(); in compute_first_sets() 219 public void add_production(production prod) throws internal_error in add_production() 264 if (((production)e.nextElement()).check_nullable()) in looks_nullable()
|
D | reduce_action.java | 20 public reduce_action(production prod ) throws internal_error in reduce_action() 35 protected production _reduce_with; 38 public production reduce_with() {return _reduce_with;} in reduce_with()
|
D | emit.java | 156 public static production start_production = null; 304 protected static void emit_action_code(PrintStream out, production start_prod) in emit_action_code() 307 production prod; in emit_action_code() 353 for (Enumeration p = production.all(); p.hasMoreElements(); ) in emit_action_code() 355 prod = (production)p.nextElement(); in emit_action_code() 421 production all_prods[]; in emit_production_table() 422 production prod; in emit_production_table() 432 all_prods = new production[production.number()]; in emit_production_table() 433 for (Enumeration p = production.all(); p.hasMoreElements(); ) in emit_production_table() 435 prod = (production)p.nextElement(); in emit_production_table() [all …]
|
D | parse_action_table.java | 64 production prod; in check_reductions() 82 for (Enumeration p = production.all(); p.hasMoreElements(); ) in check_reductions() 84 prod = (production)p.nextElement(); in check_reductions()
|
D | lr_item_core.java | 33 public lr_item_core(production prod, int pos) throws internal_error in lr_item_core() 67 public lr_item_core(production prod) throws internal_error in lr_item_core() 77 protected production _the_production; 80 public production the_production() {return _the_production;} in the_production()
|
D | parser.cup | 53 build up parts of the current production while it is being parsed. 71 /** helper routine to clone a new production part adding a given label */ 119 /** table of declared symbols -- contains production parts indexed by name */ 128 /** left hand side non terminal of the current production */ 174 type_id, term_name_list, non_term_name_list, production, prod_part_list, 399 /* build a special start production */ 404 new production(non_terminal.START_nt, rhs_parts, rhs_pos); 415 production_list ::= production_list production | production; 419 production ::= 456 /* build the production */ [all …]
|
D | parse_action_row.java | 76 reduction_count = new int[production.number()]; in compute_default() 79 for (i = 0; i < production.number(); i++) in compute_default()
|
D | production.java | 27 public class production { class 56 public production( in production() method in production 130 public production( in production() method in production 585 production new_prod; in remove_embedded_actions() 705 public boolean equals(production other) in equals() 716 if (!(other instanceof production)) in equals() 719 return equals((production)other); in equals()
|
D | lalr_item.java | 42 public lalr_item(production prod, int pos, terminal_set look) in lalr_item() 57 public lalr_item(production prod, terminal_set look) throws internal_error in lalr_item() 67 public lalr_item(production prod) throws internal_error in lalr_item()
|
D | lalr_item_set.java | 246 production prod; in compute_closure() 274 prod = (production)p.nextElement(); in compute_closure()
|
D | Main.java | 635 System.err.println(production.number() + " production" + in emit_summary() 636 plural(production.number()) + " declared, "); in emit_summary() 782 production prod; 804 for (p=production.all(); p.hasMoreElements(); ) 806 prod = (production)p.nextElement();
|
D | parser.java | 637 production p = new production(lhs_nt, rhs_parts, rhs_pos); in CUP$do_action() 651 new production(non_terminal.START_nt, rhs_parts, rhs_pos); in CUP$do_action() 778 new production(non_terminal.START_nt, rhs_parts, rhs_pos); in CUP$do_action()
|
D | lalr_state.java | 271 public static lalr_state build_machine(production start_prod) in build_machine()
|
/cts/tools/dasm/etc/ |
D | java_cup.jar | ... java
package java_cup
public java_cup.action_production extends java_cup.production {
protected java_cup.production _base_production
public void <init ... |
D | java_cup-new.jar | ... internal_error
public static java_cup.lalr_state build_machine (java_cup.production) throws java_cup.internal_error
protected void propagate_lookaheads () ... |
D | java_cup.jar.old | ... java
package java_cup
public java_cup.action_production extends java_cup.production {
protected java_cup.production _base_production
public void <init ... |