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

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/bionic/
isatty.c 36 struct termios term; local
38 return tcgetattr (fd, &term) == 0;
  /packages/apps/Terminal/src/com/android/terminal/
TerminalService.java 53 final Terminal term = new Terminal(); local
54 term.start();
55 mTerminals.put(term.key, term);
56 return term.key;
60 final Terminal term = mTerminals.get(key); local
61 term.destroy();
  /external/jline/src/src/main/java/jline/
Terminal.java 20 private static Terminal term; field in class:Terminal
33 term = null;
52 if (term != null) {
53 return term;
79 return term = new UnsupportedTerminal();
82 return term = t;
  /prebuilts/go/darwin-x86/src/math/big/
example_rat_test.go 14 // i.e., for the nth term, use
18 term := new(big.Rat)
20 term.SetInt64(1)
22 term.SetInt64((n - 1) / 3 * 2)
26 return term
33 return term.Add(term, frac)
  /prebuilts/go/linux-x86/src/math/big/
example_rat_test.go 14 // i.e., for the nth term, use
18 term := new(big.Rat)
20 term.SetInt64(1)
22 term.SetInt64((n - 1) / 3 * 2)
26 return term
33 return term.Add(term, frac)
  /external/openssh/openbsd-compat/
readpassphrase.c 67 struct termios term, oterm; local
117 memcpy(&term, &oterm, sizeof(term));
119 term.c_lflag &= ~(ECHO | ECHONL);
121 if (term.c_cc[VSTATUS] != _POSIX_VDISABLE)
122 term.c_cc[VSTATUS] = _POSIX_VDISABLE;
124 (void)tcsetattr(input, _T_FLUSH, &term);
126 memset(&term, 0, sizeof(term));
127 term.c_lflag |= ECHO
    [all...]
  /external/autotest/client/site_tests/touch_UpdateErrors/
touch_UpdateErrors.py 105 for term in ignore_terms:
106 log_cmd += ' | grep -v -i %s' % term
109 for term in pass_terms + fail_terms:
110 search_cmd = '%s | grep -i %s' % (log_cmd, term)
112 if term in fail_terms and len(log_entries) > 0:
114 error_msg = error_msg[error_msg.find(term)+len(term):].strip()
116 if term in pass_terms and len(log_entries) == 0:
117 logging.info('Did not find "%s"!', term)
  /hardware/qcom/bt/msm8909/libbt-vendor/src/
hci_smd.c 58 struct termios term; local
117 if (tcgetattr(fd, &term) < 0)
124 cfmakeraw(&term);
129 term.c_cflag |= (CRTSCTS | CLOCAL);
131 if (tcsetattr(fd, TCSANOW, &term) < 0)
  /hardware/qcom/bt/msm8992/libbt-vendor/src/
hci_smd.c 57 struct termios term; local
116 if (tcgetattr(fd, &term) < 0)
123 cfmakeraw(&term);
128 term.c_cflag |= (CRTSCTS | CLOCAL);
130 if (tcsetattr(fd, TCSANOW, &term) < 0)
  /hardware/qcom/bt/msm8996/libbt-vendor/src/
hci_smd.c 60 struct termios term; local
119 if (tcgetattr(fd, &term) < 0)
126 cfmakeraw(&term);
131 term.c_cflag |= (CRTSCTS | CLOCAL);
133 if (tcsetattr(fd, TCSANOW, &term) < 0)
  /hardware/qcom/bt/msm8998/libbt-vendor/src/
hci_smd.c 58 struct termios term; local
117 if (tcgetattr(fd, &term) < 0)
124 cfmakeraw(&term);
129 term.c_cflag |= (CRTSCTS | CLOCAL);
131 if (tcsetattr(fd, TCSANOW, &term) < 0)
  /external/llvm/utils/lit/lit/
ProgressBar.py 22 >>> term = TerminalController()
23 >>> print('This is '+term.GREEN+'green'+term.NORMAL)
28 >>> term = TerminalController()
29 >>> print(term.render('This is ${GREEN}green${NORMAL}'))
39 >>> term = TerminalController()
40 >>> if term.CLEAR_SCREEN:
224 def __init__(self, term, header, useETA=True):
225 self.term = term
    [all...]
  /external/swiftshader/third_party/LLVM/utils/lit/lit/
ProgressBar.py 18 >>> term = TerminalController()
19 >>> print 'This is '+term.GREEN+'green'+term.NORMAL
24 >>> term = TerminalController()
25 >>> print term.render('This is ${GREEN}green${NORMAL}')
35 >>> term = TerminalController()
36 >>> if term.CLEAR_SCREEN:
212 def __init__(self, term, header, useETA=True):
213 self.term = term
    [all...]
  /external/autotest/client/site_tests/bluetooth_AdapterSanity/
bluetooth_AdapterSanity.py 27 for term in ignore_terms:
28 log_cmd += ' | grep -v \'%s\'' % term
30 for term in fail_terms:
31 search_cmd = '%s | grep -i \'%s\'' % (log_cmd, term)
  /hardware/qcom/bt/msm8960/libbt-vendor/src/
userial_vendor.c 84 struct termios term; local
123 if (tcgetattr(fd, &term) < 0)
130 cfmakeraw(&term);
135 term.c_cflag |= (CRTSCTS | CLOCAL);
137 if (tcsetattr(fd, TCSANOW, &term) < 0)
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_test_blend.c 244 double *term)
250 term[0] = factor[0]; /* R */
251 term[1] = factor[1]; /* G */
252 term[2] = factor[2]; /* B */
255 term[0] = factor[0] * src[0]; /* R */
256 term[1] = factor[1] * src[1]; /* G */
257 term[2] = factor[2] * src[2]; /* B */
260 term[0] = factor[0] * src[3]; /* R */
261 term[1] = factor[1] * src[3]; /* G */
262 term[2] = factor[2] * src[3]; /* B *
    [all...]
lp_bld_blend_soa.c 102 * Indexes are: factor[src,dst][color,term][r,g,b,a]
108 * Indexes are: term[src,dst][r,g,b,a]
110 LLVMValueRef term[2][4]; member in struct:lp_build_blend_soa_context
123 * Compute src/first term RGB
289 if(j < i && bld.term[k][j])
290 bld.term[k][i] = bld.term[k][j];
292 bld.term[k][i] = lp_build_mul(&bld.base, bld.factor[k][0][i], bld.factor[k][1][i]);
306 bld.term[k][i] = lp_build_mul(&bld.base, bld.factor[k][0][i],
322 bld.term[0][j] == bld.term[0][i] &
    [all...]
  /prebuilts/go/darwin-x86/doc/play/
pi.go 23 go term(ch, float64(k))
32 func term(ch chan float64, k float64) { func
  /prebuilts/go/linux-x86/doc/play/
pi.go 23 go term(ch, float64(k))
32 func term(ch chan float64, k float64) { func
  /external/mesa3d/src/mesa/swrast/
s_texcombine.c 96 GLuint i, term; local
140 for (term = 0; term < numArgsRGB; term++) {
141 const GLenum srcRGB = combine->SourceRGB[term];
142 const GLenum operandRGB = combine->OperandRGB[term];
146 argRGB[term] = get_texel_array(swrast, unit);
149 argRGB[term] = primary_rgba;
152 argRGB[term] = rgba;
156 float4_array c = ccolor[term];
    [all...]
  /packages/apps/Terminal/jni/
com_android_terminal_Terminal.cpp 160 Terminal* term = reinterpret_cast<Terminal*>(user); local
166 return env->CallIntMethod(term->getCallbacks(), damageMethod, rect.start_row, rect.end_row,
171 Terminal* term = reinterpret_cast<Terminal*>(user); local
177 return env->CallIntMethod(term->getCallbacks(), moveRectMethod,
183 Terminal* term = reinterpret_cast<Terminal*>(user); local
189 return env->CallIntMethod(term->getCallbacks(), moveCursorMethod, pos.row,
194 Terminal* term = reinterpret_cast<Terminal*>(user); local
202 return env->CallIntMethod(term->getCallbacks(), setTermPropBooleanMethod, prop,
205 return env->CallIntMethod(term->getCallbacks(), setTermPropIntMethod, prop, val->number);
207 return env->CallIntMethod(term->getCallbacks(), setTermPropStringMethod, prop
219 Terminal* term = reinterpret_cast<Terminal*>(user); local
227 Terminal* term = reinterpret_cast<Terminal*>(user); local
237 Terminal* term = reinterpret_cast<Terminal*>(user); local
246 Terminal* term = reinterpret_cast<Terminal*>(user); local
556 Terminal* term = reinterpret_cast<Terminal*>(ptr); local
562 Terminal* term = reinterpret_cast<Terminal*>(ptr); local
568 Terminal* term = reinterpret_cast<Terminal*>(ptr); local
593 Terminal* term = reinterpret_cast<Terminal*>(ptr); local
654 Terminal* term = reinterpret_cast<Terminal*>(ptr); local
659 Terminal* term = reinterpret_cast<Terminal*>(ptr); local
664 Terminal* term = reinterpret_cast<Terminal*>(ptr); local
670 Terminal* term = reinterpret_cast<Terminal*>(ptr); local
676 Terminal* term = reinterpret_cast<Terminal*>(ptr); local
    [all...]
  /build/kati/
expr.go 332 // parseExpr parses expression in `in` until it finds any byte in term.
333 // if term is nil, it will parse to end of input.
334 // if term is not nil, and it reaches to end of input, return error.
336 // term, and in[n:] is next input.
337 func parseExpr(in, term []byte, op parseOp) (Value, int, error) {
346 if term != nil && bytes.IndexByte(term, ch) >= 0 {
360 if bytes.IndexByte(term, in[i+1]) >= 0 {
381 if i := bytes.IndexByte(term, cp); i >= 0 {
384 term[i] =
    [all...]
  /external/jacoco/org.jacoco.examples/build/src/main/java/org/jacoco/examples/parser/
ExpressionParser.java 44 final IExpression e = term();
49 private IExpression term() throws IOException { method in class:ExpressionParser
78 e = term();
  /external/jemalloc/test/include/test/
math.h 56 double acu, factor, oflo, gin, term, rn, a, b, an, dif; local
74 term = 1.0;
79 term *= x / rn;
80 gin += term;
81 if (term <= acu) {
90 term = 0.0;
100 term += 1.0;
101 an = a * term;
273 /* Calculation of seven-term Taylor series. */
  /external/strace/tests/
qual_signal.test 62 '!2,15' '!INT,TERM' '!SIGINT,TERM' '!INT,SIGTERM' '!SIGTERM,SIGINT' \
63 '!2,INT,TERM' '!2,SIGTERM' '!SIGINT,15' '!INT,SIGTERM,15' \
71 '!15' '!TERM' '!SIGTERM' \
72 '!15,TERM' '!SIGTERM,15,TERM' \
73 '!SIGALRM,TERM' '!CHLD,SIGTERM' \
78 15 TERM SIGTERM \
90 INT,TERM SIGINT,TERM SIGTERM,INT SIGINT,SIGTERM
    [all...]

Completed in 886 milliseconds

1 2 3 4 5 6 7 8 91011>>