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

1 2 3 4

  /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-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...]
  /packages/apps/Terminal/src/com/android/terminal/
TerminalCallbacks.java 17 package com.android.terminal;
TerminalLineView.java 17 package com.android.terminal;
19 import static com.android.terminal.Terminal.TAG;
27 import com.android.terminal.TerminalView.TerminalMetrics;
30 * Rendered contents of a single line of a {@link Terminal} session.
37 private final Terminal mTerm;
40 public TerminalLineView(Context context, Terminal term, TerminalMetrics metrics) {
57 Log.w(TAG, "onDraw() without a terminal");
TerminalService.java 17 package com.android.terminal;
26 * Background service that keeps {@link Terminal} instances running and warm
30 private final SparseArray<Terminal> mTerminals = new SparseArray<Terminal>();
43 public SparseArray<Terminal> getTerminals() {
48 // If our first terminal, start ourselves as long-lived service
53 final Terminal term = new Terminal();
60 final Terminal term = mTerminals.get(key);
64 // If our last terminal, tear down long-lived servic
    [all...]
TerminalView.java 17 package com.android.terminal;
19 import static com.android.terminal.Terminal.TAG;
37 import com.android.terminal.Terminal.CellRun;
38 import com.android.terminal.Terminal.TerminalClient;
41 * Rendered contents of a {@link Terminal} session.
49 private Terminal mTerm;
80 run = new Terminal.CellRun()
    [all...]
  /external/owasp/sanitizer/src/main/org/owasp/html/
Trie.java 47 private final boolean terminal; field in class:Trie
72 this.terminal = depth == elements.get(start).getKey().length();
73 if (this.terminal) {
116 public boolean isTerminal() { return terminal; }
166 if (terminal) { strings.add(prefix); }
180 sb.append(terminal ? "terminal" : "nonterminal");
  /external/qemu/qobject/
json-lexer.c 65 #define TERMINAL(state) [0 ... 0x7F] = (state)
67 /* Return whether TERMINAL is a terminal state and the transition to it
69 below uses the TERMINAL macro. */
70 #define TERMINAL_NEEDED_LOOKAHEAD(old_state, terminal) \
71 (json_lexer[(old_state)][0] == (terminal))
156 TERMINAL(JSON_INTEGER),
163 TERMINAL(JSON_FLOAT),
178 TERMINAL(JSON_FLOAT),
190 TERMINAL(JSON_INTEGER)
    [all...]
  /external/valgrind/main/gdbserver_tests/
nlvgdbsigqueue.stdoutB.exp 16 Kill the program being debugged? (y or n) [answered Y; input not from terminal]
  /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/chromium_org/native_client_sdk/src/gonacl_appengine/static/lua/
naclterm.js 21 * The hterm-powered terminal command.
23 * This class defines a command that can be run in an hterm.Terminal instance.
25 * @param {Object} argv The argument object passed in from the Terminal.
38 * This constructs a new Terminal instance and instructs it to run the NaClTerm
43 var terminal = new hterm.Terminal(profileName);
44 terminal.decorate(document.querySelector('#terminal'));
47 window.term_ = terminal;
49 terminal.runCommandClass(NaClTerm, document.location.hash.substr(1))
    [all...]
  /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;

Completed in 720 milliseconds

1 2 3 4