HomeSort by relevance Sort by last modified time
    Searched refs:term (Results 1 - 25 of 273) 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/chromium-trace/catapult/third_party/py_vulcanize/third_party/rcssmin/_setup/py2/term/
__init__.py 19 Package _setup.term
28 from _setup.term._term import terminfo, write, green, red, yellow, announce
  /external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rcssmin/_setup/py3/term/
__init__.py 19 Package _setup.term
28 from _setup.term._term import terminfo, write, green, red, yellow, announce
  /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/msmcobalt/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/opencv3/3rdparty/include/ffmpeg_/libavutil/
avutil.h 292 * @param term list terminator (usually 0 or -1)
297 const void *list, uint64_t term) av_pure;
302 * @param term list terminator (usually 0 or -1)
306 #define av_int_list_length(list, term) \
307 av_int_list_length_for_size(sizeof(*(list)), list, term)
  /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/chromium-trace/catapult/third_party/py_vulcanize/third_party/rcssmin/
run_tests.py 34 from _setup import term namespace
93 term.write(
116 term.yellow("---> %s" % (dirname[strip:],))
123 term.yellow("<--- %s" % (dirname[strip:],))
138 term.write = term.green = term.red = term.yellow = \
139 term.announce = \
144 for key in term.terminfo()
    [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)
  /external/autotest/client/site_tests/touch_UpdateErrors/
touch_UpdateErrors.py 80 for term in pass_terms + fail_terms:
81 search_cmd = '%s | grep -i %s' % (log_cmd, term)
83 if term in fail_terms and len(log_entries) > 0:
85 error_msg = error_msg[error_msg.find(term)+len(term):].strip()
87 if term in pass_terms and len(log_entries) == 0:
88 logging.info('Did not find "%s"!', 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...]
  /ndk/sources/host-tools/nawk-20071023/
awkgram.y 65 %type <p> pas pattern ppattern plist pplist patlist prarg term re
214 | ppattern term %prec CAT { $$ = op2(CAT, $1, $2); }
216 | term
247 | pattern term %prec CAT { $$ = op2(CAT, $1, $2); }
249 | term
295 print prarg '|' term {
298 | print prarg APPEND term {
301 | print prarg GT term {
351 term: label
352 term '/' ASGNOP term { $$ = op2(DIVEQ, $1, $4);
    [all...]
  /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 162 Terminal* term = reinterpret_cast<Terminal*>(user); local
168 return env->CallIntMethod(term->getCallbacks(), damageMethod, rect.start_row, rect.end_row,
173 Terminal* term = reinterpret_cast<Terminal*>(user); local
179 return env->CallIntMethod(term->getCallbacks(), moveRectMethod,
185 Terminal* term = reinterpret_cast<Terminal*>(user); local
191 return env->CallIntMethod(term->getCallbacks(), moveCursorMethod, pos.row,
196 Terminal* term = reinterpret_cast<Terminal*>(user); local
204 return env->CallIntMethod(term->getCallbacks(), setTermPropBooleanMethod, prop,
207 return env->CallIntMethod(term->getCallbacks(), setTermPropIntMethod, prop, val->number);
209 return env->CallIntMethod(term->getCallbacks(), setTermPropStringMethod, prop
221 Terminal* term = reinterpret_cast<Terminal*>(user); local
229 Terminal* term = reinterpret_cast<Terminal*>(user); local
239 Terminal* term = reinterpret_cast<Terminal*>(user); local
248 Terminal* term = reinterpret_cast<Terminal*>(user); local
558 Terminal* term = reinterpret_cast<Terminal*>(ptr); local
564 Terminal* term = reinterpret_cast<Terminal*>(ptr); local
570 Terminal* term = reinterpret_cast<Terminal*>(ptr); local
595 Terminal* term = reinterpret_cast<Terminal*>(ptr); local
656 Terminal* term = reinterpret_cast<Terminal*>(ptr); local
661 Terminal* term = reinterpret_cast<Terminal*>(ptr); local
666 Terminal* term = reinterpret_cast<Terminal*>(ptr); local
672 Terminal* term = reinterpret_cast<Terminal*>(ptr); local
678 Terminal* term = reinterpret_cast<Terminal*>(ptr); local
    [all...]
  /external/ceres-solver/include/ceres/
gradient_checker.h 76 // term->parameter_block_sizes().size(), and each matrix is the
97 // term: The cost function to test. Not retained after this call returns.
106 CostFunctionToProbe *term,
109 CHECK_NOTNULL(term);
119 // Do a consistency check between the term and the template parameters.
120 CHECK_EQ(M, term->num_residuals());
122 const vector<int32>& block_sizes = term->parameter_block_sizes();
176 CHECK(term->Evaluate(probe_point, results->cost.data(),
179 numeric_term(term, DO_NOT_TAKE_OWNERSHIP);
192 LOG(INFO) << "========== term-computed derivatives =========="
    [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();
  /system/tools/aidl/
aidl_language.cpp 188 AidlQualifiedName::AidlQualifiedName(std::string term,
190 : terms_({term}),
192 if (term.find('.') != string::npos) {
193 terms_ = Split(term, ".");
194 for (const auto& term: terms_) {
195 if (term.empty()) {
196 LOG(FATAL) << "Malformed qualified identifier: '" << term << "'";
202 void AidlQualifiedName::AddTerm(std::string term) {
203 terms_.push_back(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. */
  /system/core/adb/
line_printer.cpp 48 const char* term = getenv("TERM"); local
49 smart_terminal_ = unix_isatty(1) && term && string(term) != "dumb";