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

1 2 3 4 5 6

  /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/
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/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/toybox/toys/other/
login.c 142 char *term = getenv("TERM"); local
145 if (term) setenv("TERM", term, 1);
  /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/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)
  /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)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_curses.py 26 term = os.environ.get('TERM') variable
27 if not term or term == 'unknown':
28 raise unittest.SkipTest, "$TERM=%r, calling initscr() may cause exit" % term
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_curses.py 26 term = os.environ.get('TERM') variable
27 if not term or term == 'unknown':
28 raise unittest.SkipTest, "$TERM=%r, calling initscr() may cause exit" % term
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_curses.py 26 term = os.environ.get('TERM') variable
27 if not term or term == 'unknown':
28 raise unittest.SkipTest, "$TERM=%r, calling initscr() may cause exit" % term
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_curses.py 26 term = os.environ.get('TERM') variable
27 if not term or term == 'unknown':
28 raise unittest.SkipTest, "$TERM=%r, calling initscr() may cause exit" % term
  /system/core/adb/
line_printer.cpp 48 const char* term = getenv("TERM"); local
49 smart_terminal_ = unix_isatty(1) && term && string(term) != "dumb";
  /external/opencv3/samples/python2/
calibrate.py 53 term = ( cv2.TERM_CRITERIA_EPS + cv2.TERM_CRITERIA_COUNT, 30, 0.1 ) variable
54 cv2.cornerSubPix(img, corners, (5, 5), (-1, -1), term)
  /external/libchrome/base/strings/
string_split.cc 146 Piece term = end_index == Piece::npos local
151 term = TrimString(term, WhitespaceForType<Str>(), TRIM_ALL);
153 if (result_type == SPLIT_WANT_ALL || !term.empty())
154 result->push_back(PieceToOutputType<Str, OutputStringType>(term));
  /external/mesa3d/src/gallium/drivers/llvmpipe/
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...]
  /frameworks/av/media/libstagefright/foundation/
ADebug.cpp 109 const char *term = terms[i]; local
110 const size_t len = strlen(term);
111 char *match = strcasestr(debugName, 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/mesa3d/src/mesa/main/
texenv.c 175 /** Set an RGB or A combiner source term */
181 GLuint term; local
185 * Translate pname to (term, alpha).
194 term = pname - GL_SOURCE0_RGB;
201 term = pname - GL_SOURCE0_ALPHA;
209 if ((term == 3) && (ctx->API != API_OPENGL
215 assert(term < MAX_COMBINER_TERMS);
218 * Error-check param (the source term)
259 texUnit->Combine.SourceA[term] = param;
261 texUnit->Combine.SourceRGB[term] = param
271 GLuint term; local
    [all...]
  /external/skia/platform_tools/android/apps/sample_app/src/main/java/com/skia/
SkiaSampleRenderer.java 96 native void term(); method in class:SkiaSampleRenderer
  /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...]
  /build/kati/
stmt.h 72 char term; member in struct:RuleStmt
  /cts/tools/dasm/src/java_cup/
emit.java 244 terminal term; local
269 term = (terminal)e.nextElement();
272 out.println(" static final int " + term.name() + " = " +
273 term.index() + ";");

Completed in 2029 milliseconds

1 2 3 4 5 6