Home | History | Annotate | Download | only in java_cup

Lines Matching refs:prod

307       production prod;
355 prod = (production)p.nextElement();
359 out.println(" case " + prod.index() + ": // " +
360 prod.to_simple_string());
368 prod.to_simple_string() + "\");");
372 prod.lhs().the_symbol().stack_type() + "(/*" +
373 prod.lhs().the_symbol().name() + "*/" +
374 prod.lhs().the_symbol().index() + ");");
377 if (prod.action() != null && prod.action().code_string() != null &&
378 !prod.action().equals(""))
379 out.println(" " + prod.action().code_string());
385 if (prod == start_prod)
422 production prod;
435 prod = (production)p.nextElement();
436 all_prods[prod.index()] = prod;
443 prod = all_prods[i];
447 out.print(/* lhs symbol # */ prod.lhs().the_symbol().index() + ", ");
448 out.print(/* rhs size */ prod.rhs_length() + "}");