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

1 2 3 4 5 6 7 8 9

  /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();
  /build/make/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/sl4a/ScriptingLayerForAndroid/src/de/mud/terminal/
VDUDisplay.java 26 package de.mud.terminal;
VDUInput.java 25 package de.mud.terminal;
30 * An interface for a terminal that accepts input from keyboard and mouse.
50 * Terminal is mouse-aware and requires (x,y) coordinates of
51 * on the terminal (character coordinates) and the button clicked.
59 * Terminal is mouse-aware and requires the coordinates and button
68 * Override the standard key codes used by the terminal emulation.
82 * Handle key Typed events for the terminal, this will get
  /packages/apps/SecureElement/src/com/android/se/security/arf/
ArfController.java 37 import com.android.se.Terminal;
51 private Terminal mTerminal = null;
53 public ArfController(AccessRuleCache cache, Terminal terminal) {
55 mTerminal = terminal;
  /prebuilts/go/darwin-x86/src/cmd/go/testdata/testterminal18153/
terminal_test.go 9 // that it be called with its stdout and stderr being a terminal.
25 // isTerminal reports whether fd is a terminal.
34 t.Errorf("stdout is not a terminal")
37 t.Errorf("stderr is not a terminal")
  /prebuilts/go/linux-x86/src/cmd/go/testdata/testterminal18153/
terminal_test.go 9 // that it be called with its stdout and stderr being a terminal.
25 // isTerminal reports whether fd is a terminal.
34 t.Errorf("stdout is not a terminal")
37 t.Errorf("stderr is not a terminal")
  /external/honggfuzz/examples/terminal-emulators/
Makefile 6 BIN = terminal-test
  /libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
ForEachOpTest.java 99 terminal(terminalFunc).
105 terminal(s -> s.map(LambdaTestHelpers.identity()), terminalFunc).
120 terminal(terminalFunc).
126 terminal(s -> s.map(LambdaTestHelpers.identity()), terminalFunc).
147 terminal(terminalFunc).
153 terminal(s -> s.map(i -> i), terminalFunc).
168 terminal(terminalFunc).
174 terminal(s -> s.map(i -> i), terminalFunc).
195 terminal(terminalFunc).
201 terminal(s -> s.map(i -> i), terminalFunc)
    [all...]
PrimitiveSumTest.java 48 terminal(s -> (long) s.sum()).
58 terminal(s -> s.sum()).
72 terminal(s -> s.sum()).
CountTest.java 56 terminal(Stream::count).
67 terminal(IntStream::count).
78 terminal(LongStream::count).
89 terminal(DoubleStream::count).
  /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...]
  /packages/apps/SecureElement/src/com/android/se/
SecureElementService.java 42 import com.android.se.Terminal.SecureElementReader;
62 private LinkedHashMap<String, Terminal> mTerminals = new LinkedHashMap<String, Terminal>();
75 Terminal terminal = getTerminal(reader);
76 return terminal.new SecureElementReader(SecureElementService.this);
92 Terminal terminal = getTerminal(reader);
93 return terminal.isNfcEventAllowed(getPackageManager(), aid, packageNames);
98 for (Terminal terminal : mTerminals.values())
116 Terminal terminal = mTerminals.get(reader); local
157 Terminal terminal = new Terminal(name, this); local
    [all...]
  /external/toybox/toys/pending/
init.c 71 struct termios terminal; local
73 tcgetattr(fd, &terminal);
74 terminal.c_cc[VINTR] = 3; //ctrl-c
75 terminal.c_cc[VQUIT] = 28; /*ctrl-\*/
76 terminal.c_cc[VERASE] = 127; //ctrl-?
77 terminal.c_cc[VKILL] = 21; //ctrl-u
78 terminal.c_cc[VEOF] = 4; //ctrl-d
79 terminal.c_cc[VSTART] = 17; //ctrl-q
80 terminal.c_cc[VSTOP] = 19; //ctrl-s
81 terminal.c_cc[VSUSP] = 26; //ctrl-
    [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/curl/docs/cmdline-opts/
telnet-option.d 8 TTYPE=<term> Sets the terminal type.
  /external/parameter-framework/upstream/test/functional-tests-legacy/
ACTCampaignEngine.py 51 self.terminal = sys.stdout
55 self.terminal.write(message)
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
IntermTraverse.cpp 230 if (terminal)
231 terminal->traverse(it);
245 if (terminal)
246 terminal->traverse(it);
  /external/valgrind/gdbserver_tests/
nlvgdbsigqueue.stdoutB.exp 16 Kill the program being debugged? (y or n) [answered Y; input not from terminal]

Completed in 876 milliseconds

1 2 3 4 5 6 7 8 9