HomeSort by relevance Sort by last modified time
    Searched full:production (Results 1 - 25 of 354) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /cts/tools/dasm/src/java_cup/
action_production.java 4 /** A specialized version of a production used when we split an existing
5 * production in order to remove an embedded action. Here we keep a bit
11 public class action_production extends production {
14 * @param base the production we are being factored out of.
15 * @param lhs_sym the LHS symbol for this production.
16 * @param rhs_parts array of production parts for the RHS.
18 * @param action_str the trailing reduce action for this production.
21 production base,
34 /** The production we were taken out of. */
35 protected production _base_production
    [all...]
lr_item_core.java 4 /** The "core" of an LR item. This includes a production and the position
5 * of a marker (the "dot") within the production. Typically item cores
6 * are written using a production with an embedded "dot" to indicate their
11 * the given production, and has succeeded in matching everything before the
30 * @param prod production this item uses.
33 public lr_item_core(production prod, int pos) throws internal_error
40 "Attempt to create an lr_item_core with a null production");
65 * @param prod production this item uses.
67 public lr_item_core(production prod) throws internal_error
76 /** The production for the item. *
    [all...]
reduce_action.java 5 * The action simply stores the production that it reduces with and
18 * @param prod the production this action reduces with.
20 public reduce_action(production prod ) throws internal_error
25 "Attempt to create a reduce_action with a null production");
34 /** The production we reduce with. */
35 protected production _reduce_with;
37 /** The production we reduce with. */
38 public production reduce_with() {return _reduce_with;}
71 /* use the hash code of the production we are reducing with */
production.java 7 /** This class represents a production in the grammar. It contains
9 * transformations are done on the RHS of the production, it may shrink.
15 * computing the nullability of the production (i.e., can it derive the empty
18 * string derived from the production, see check_first_set()).
27 public class production { class
36 * manipulations in the process of creating a production object.
42 * Finally it assigns a unique index to the production.<p>
45 * non terminals. For example if the production was originally: <pre>
56 public production( method in class:production
77 "Attempt to construct a production with a null LHS")
130 public production( method in class:production
    [all...]
emit.java 29 * <dt> production table
31 * each production.
36 * <dd> when a reduce on a given production is taken, the parse stack is
38 * production. This reveals a prior state, which we transition out
39 * of under the LHS non terminal symbol for the production (as if we
65 emit_production_table - emit declaration and init for the production table
87 start_production - the start production for the grammar.
155 /** The start production of the grammar. */
156 public static production start_production = null;
201 /** Time to produce the production table. *
    [all...]
parse_action_table.java 57 * Issue a warning message (to System.err) for each production that
64 production prod;
75 /* tell production that we used it */
81 /* now go across every production and make sure we hit it */
82 for (Enumeration p = production.all(); p.hasMoreElements(); )
84 prod = (production)p.nextElement();
95 System.err.println("*** Production \"" +
lalr_item.java 6 * a production, a "dot" at a position within that production, and
13 * indicates that the parser is in the middle of parsing the production <pre>
17 * of either a, b, or c once the complete RHS of this production has been
38 * @param prod the production for the item.
39 * @param pos the position of the "dot" within the production.
42 public lalr_item(production prod, int pos, terminal_set look)
54 * @param prod the production for the item.
57 public lalr_item(production prod, terminal_set look) throws internal_error
65 * @param prod the production for the item
    [all...]
non_terminal.java 124 production prod;
150 for (e=production.all(); e.hasMoreElements(); )
152 prod = (production)e.nextElement();
168 production prod;
182 /* consider every production of that non terminal */
185 prod = (production)p.nextElement();
187 /* get the updated first of that production */
218 /** Add a production to our set of productions. */
219 public void add_production(production prod) throws internal_error
224 "Attempt to add invalid production to non terminal production table")
    [all...]
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 ::
    [all...]
  /external/bluetooth/glib/gio/
gioenumtypes.c.template 7 /*** BEGIN file-production ***/
9 /*** END file-production ***/
22 /*** BEGIN value-production ***/
24 /*** END value-production ***/
gioenumtypes.h.template 10 /*** BEGIN file-production ***/
13 /*** END file-production ***/
  /frameworks/base/docs/html/
app.yaml 9 # during development or non-production doc build
10 # - a handler for use on a production gae
24 # out before pushing to a production server)
28 # PRODUCTION GAE HANDLER
  /external/chromium/third_party/icu/source/tools/toolutil/
filetools.h 17 * Not suitable for production use. Not supported.
flagparser.h 17 * Not suitable for production use. Not supported.
  /external/icu4c/tools/toolutil/
filetools.h 17 * Not suitable for production use. Not supported.
flagparser.h 17 * Not suitable for production use. Not supported.
  /external/apache-http/src/org/apache/commons/codec/
package.html 43 <td>Production</td>
54 <td>Production</td>
72 <td>Production</td>
79 <td>Production</td>
93 <td>Production</td>
  /cts/tools/dasm/etc/
java_cup.jar 
java_cup.jar.old 
java_cup-new.jar 
  /external/chromium/base/
leak_annotations.h 14 // and should not be used in the production code.
  /external/webkit/WebCore/WebCore.vcproj/
WebCore.make 8 set PRODUCTION=1
  /external/webkit/WebKit/win/WebKit.vcproj/
WebKit.make 10 set PRODUCTION=1
  /packages/providers/ContactsProvider/
Android.mk 19 # production builds.
  /external/gtest/test/
gtest_prod_test.cc 35 #include "test/production.h"
38 #include "test/production.cc"

Completed in 355 milliseconds

1 2 3 4 5 6 7 8 91011>>