HomeSort by relevance Sort by last modified time
    Searched refs:terminal (Results 1 - 25 of 72) sorted by null

1 2 3

  /cts/tools/dasm/src/java_cup/
terminal.java 6 /** This class represents a terminal symbol in the grammar. Each terminal
15 public class terminal extends symbol { class in inherits:symbol
22 * @param nm the name of the terminal.
23 * @param tp the type of the terminal.
25 public terminal(String nm, String tp) method in class:terminal
36 // throw new internal_error("Duplicate terminal (" + nm + ") created");
37 (new internal_error("Duplicate terminal (" + nm + ") created")).crash();
49 * @param nm the name of the terminal.
51 public terminal(String nm) method in class:terminal
    [all...]
terminal_set.java 20 _elements = new BitSet(terminal.number());
73 /** Determine if the set contains a particular terminal.
74 * @param sym the terminal symbol we are looking for.
76 public boolean contains(terminal sym)
85 /** Given its index determine if the set contains a particular terminal.
86 * @param indx the index of the terminal in question.
127 /** Add a single terminal to the set.
128 * @param sym the terminal being added.
131 public boolean add(terminal sym)
150 /** Remove a terminal if it is in the set
    [all...]
lalr_item.java 7 * a set of lookahead symbols (terminal). (The first two of these parts
198 /* if its a terminal add it in and we are done */
201 result.add((terminal)sym);
206 /* otherwise add in first set of the non terminal */
250 /* if its a terminal we fail */
310 for (int t = 0; t < terminal.number(); t++)
312 result += terminal.find(t).name() + " ";
parse_action_row.java 19 if (_size <= 0 ) _size = terminal.number();
lalr_state.java 10 * states under terminal and non-terminal symbols. Each state represents
26 * above), and the terminal f followed by e.<p>
31 * This corresponds to "moving the dot past" a terminal in one or more items
39 * transition based on the non-terminal on the LHS of the production. This
294 itm.lookahead().add(terminal.EOF);
432 * are indexed by terminal symbols and correspond to either transitions
437 * out of a state on that non-terminal.<p>
476 for (int t = 0; t < terminal.number(); t++)
513 /* if its on an terminal add a shift entry *
    [all...]
Main.java 90 /** User option -- should we include non terminal symbol numbers in the
420 * sets of terminal, non-terminals, and productions which can be accessed
452 terminal term;
456 for (Enumeration t = terminal.all(); t.hasMoreElements(); )
458 term = (terminal)t.nextElement();
461 if (term == terminal.EOF) continue;
464 if (term == terminal.error) continue;
473 System.err.println("Warning: Terminal \"" + term.name() +
492 System.err.println("Warning: Non terminal \"" + nt.name() +
529 System.err.println(" Computing non-terminal nullability...")
    [all...]
emit.java 17 * <dd> this contains constant declarations for each terminal (and
18 * optionally each non-terminal).
30 * <dd> lists the LHS non terminal number, and the length of the RHS of
39 * of under the LHS non terminal symbol for the production (as if we
41 * RHS). This table is indexed by non terminal numbers and indicates
92 unused_term - count of unused terminal symbols.
93 unused_non_term - count of unused non terminal symbols.
244 terminal term;
267 for (Enumeration e = terminal.all(); e.hasMoreElements(); )
269 term = (terminal)e.nextElement()
    [all...]
  /build/core/
process_wrapper.sh 16 gnome-terminal -t "Wrapper: $1" --disable-factory -x $2/process_wrapper_gdb.sh "$@"
  /external/chromium/net/data/proxy_resolver_v8_unittest/
ends_with_statement_no_semicolon.js 1 // Ends with a statement, and no terminal newline.
  /external/chromium-libpac/test/js-unittest/
ends_with_statement_no_semicolon.js 1 // Ends with a statement, and no terminal newline.
  /external/chromium_org/net/data/proxy_resolver_v8_unittest/
ends_with_statement_no_semicolon.js 1 // Ends with a statement, and no terminal newline.
  /ndk/sources/host-tools/make-3.81/
rule.h 29 char terminal; /* If terminal (double-colon). */ member in struct:rule
52 extern void install_pattern_rule PARAMS ((struct pspec *p, int terminal));
57 char **target_percents, int terminal,
rule.c 294 rule->terminal = 0;
360 TERMINAL specifies what the `terminal' field of the rule should be. */
363 install_pattern_rule (struct pspec *p, int terminal)
396 r->terminal = terminal;
468 It is a terminal rule if TERMINAL is nonzero. This rule overrides
477 int terminal, struct dep *deps,
516 r->terminal = terminal
545 register unsigned int rules, terminal; local
    [all...]
  /external/marisa-trie/lib/marisa/
key.h 20 void set_terminal(UInt32 terminal) {
21 terminal_ = terminal;
33 UInt32 terminal() const { function in class:marisa::Key
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
key.h 22 void set_terminal(UInt32 terminal) {
23 terminal_ = terminal;
35 UInt32 terminal() const { function in class:marisa_alpha::Key
  /external/qemu/
json-lexer.c 63 #define TERMINAL(state) [0 ... 0x7F] = (state)
65 /* Return whether TERMINAL is a terminal state and the transition to it
67 below uses the TERMINAL macro. */
68 #define TERMINAL_NEEDED_LOOKAHEAD(old_state, terminal) \
69 (json_lexer[(old_state)][0] == (terminal))
152 TERMINAL(JSON_INTEGER),
159 TERMINAL(JSON_FLOAT),
174 TERMINAL(JSON_FLOAT),
186 TERMINAL(JSON_INTEGER)
    [all...]
  /external/chromium/chrome/common/
auto_start_linux.cc 41 std::string terminal = is_terminal_app ? "true" : "false"; local
45 "Terminal=" + terminal + "\n"
  /external/chromium_org/chrome/common/
auto_start_linux.cc 42 std::string terminal = is_terminal_app ? "true" : "false"; local
46 "Terminal=" + terminal + "\n"
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
OpenWnnClauseConverterJAJP.java 252 * @param terminal Part of speech tag at the terminal
256 private boolean singleClauseConvert(LinkedList clauseList, String input, WnnPOS terminal, boolean all) {
265 if (addClause(clauseList, input, stem, null, terminal, all)) {
299 if (addClause(clauseList, input, stem, fzk, terminal, all)) {
317 * @param terminal Part of speech tag at the terminal
322 WnnPOS terminal, boolean all) {
326 if (connectible(stem.partOfSpeech.right, terminal.left)) {
331 && connectible(fzk.partOfSpeech.right, terminal.left))
    [all...]
  /external/chromium_org/third_party/libxml/src/include/libxml/
xmlregexp.h 101 int *terminal);
108 int *terminal);
  /external/libxml2/include/libxml/
xmlregexp.h 101 int *terminal);
108 int *terminal);
  /external/valgrind/main/gdbserver_tests/
mcwatchpoints.stdoutB.exp 30 Delete all breakpoints? (y or n) [answered Y; input not from terminal]
  /cts/tools/dasm/src/dasm/
parser.cup 60 terminal token
86 terminal str_token Str, Word, Insn;
87 terminal int_token Int;
88 terminal number_token Num;
89 terminal relative_number_token Relative;
91 non terminal str_token classname, inner_name, inner_inner, inner_outer, optional_signature;
92 non terminal variant_token optional_default, item, any_item;
95 non terminal symbol
122 non terminal int_token access;
  /system/extras/tests/sdcard/
plot_sdcard.py 225 terminal='png')
261 terminal='png')
284 terminal='png')
  /external/antlr/antlr-3.4/gunit/src/main/antlr3/org/antlr/gunit/swingui/parsers/
ANTLRv3.g 264 | terminal
312 terminal
322 ( '^' -> ^('^' $terminal)
323 | '!' -> ^('!' $terminal)

Completed in 1079 milliseconds

1 2 3