HomeSort by relevance Sort by last modified time
    Searched refs:term (Results 1 - 25 of 309) 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_org/third_party/sqlite/src/test/
make-where7.tcl 31 set term($expr) $a
36 set term($expr) $x
38 set term($expr) $a
40 set term($expr) {}
42 lappend term($expr) $a
44 lappend term($expr) $a
46 lappend term($expr) $a
49 lappend term($expr) $a
51 lappend term($expr) $a
71 set term(b<0) {
    [all...]
  /external/chromium_org/components/history/core/browser/
keyword_search_term.h 16 // gives the time and search term of the keyword visit.
21 base::string16 term; // The search term that was used. member in struct:history::KeywordSearchTermVisit
26 // Used for URLs that have a search term associated with them.
33 base::string16 term; // The search term that was used. member in struct:history::KeywordSearchTermRow
  /external/chromium_org/chrome/browser/history/
history_notifications.cc 28 const base::string16& term)
31 term(term) {
history_notifications.h 76 const base::string16& term);
83 base::string16 term; member in struct:history::KeywordSearchUpdatedDetails
  /external/lldb/test/pexpect-2.4/examples/
chess3.py 18 self.term = ANSI.ANSI ()
23 # self.term.process_list (self.before)
24 # self.term.process_list (self.after)
30 self.term.process (k)
31 fout.write ('(r,c):(%d,%d)\n' %(self.term.cur_r, self.term.cur_c))
33 if self.term.cur_r == r and self.term.cur_c == c:
43 self.term.process (c)
44 fout.write ('(r,c):(%d,%d)\n' %(self.term.cur_r, self.term.cur_c)
    [all...]
chess2.py 16 self.term = ANSI.ANSI ()
21 #self.term.process_list (self.child.before)
22 #self.term.process_list (self.child.after)
31 while self.term.cur_r != r or self.term.cur_c != c:
35 print 'EXCEPTION, (r,c):(%d,%d)\n' %(self.term.cur_r, self.term.cur_c)
37 self.term.process (k)
38 fout.write ('(r,c):(%d,%d)\n' %(self.term.cur_r, self.term.cur_c)
    [all...]
chess.py 18 self.term = ANSI.ANSI ()
23 self.term.process_list (self.before)
24 self.term.process_list (self.after)
29 self.term.process (c)
30 if self.term.cur_r == r and self.term.cur_c == c:
36 self.term.process_list (self.before)
37 self.term.process_list (self.after)
  /external/libcxx/test/language.support/support.start.term/
Android.mk 17 test_makefile := external/libcxx/test/language.support/support.start.term/Android.mk
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
parse-events.y 63 %type <term> event_term
85 struct parse_events_term *term;
345 struct parse_events_term *term = $3;
348 list_add_tail(&term->list, head);
355 struct parse_events_term *term = $1;
359 list_add_tail(&term->list, head);
366 struct parse_events_term *term;
368 ABORT_ON(parse_events_term__str(&term, PARSE_EVENTS__TERM_TYPE_USER,
370 $$ = term;
375 struct parse_events_term *term;
    [all...]
pmu.c 190 struct parse_events_term *term, *clone; local
194 list_for_each_entry(term, &alias->terms, list) {
195 ret = parse_events_term__clone(&clone, term);
418 struct parse_events_term *term)
428 if (parse_events__is_hardcoded_term(term))
431 if (term->type_val != PARSE_EVENTS__TERM_TYPE_NUM)
434 format = pmu_find_format(formats, term->config);
457 *vp |= pmu_format_value(format->bits, term->val.num);
465 struct parse_events_term *term; local
467 list_for_each_entry(term, head_terms, list
522 struct parse_events_term *term, *h; local
    [all...]
parse-events-bison.h 72 struct parse_events_term *term; member in union:YYSTYPE
  /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_org/components/search_engines/
template_url_service_client.h 31 const base::string16& term) = 0;
  /external/srec/seti/sltsEngine/include/
CSWIslts.h 34 SWIsltsResult term();
  /hardware/qcom/bt/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/chromium_org/third_party/mesa/src/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...]
  /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...]
  /external/chromium_org/chrome/browser/history/android/
android_cache_database.h 49 // Add a row in the search_term table with the given |term| and
52 SearchTermID AddSearchTerm(const base::string16& term,
58 // Get SearchTermRow of the given |term|; return the row id on success.
61 SearchTermID GetSearchTerm(const base::string16& term, SearchTermRow* row);
97 // When Android Client require update the search term, the search term can't
99 // deleting the old search term then inserting a new one, but the ID given
101 // table is used to mapping the ID given to client to the search term.
103 // The search term last visit time is stored in date as Android needs the time
  /external/chromium_org/components/bookmarks/browser/
bookmark_index.h 44 // Returns up to |max_count| of bookmarks containing each term from
70 // Populates |matches| for the specified term. If |first_term| is true, this
71 // is the first term in the query. Returns true if there is at least one node
72 // matching the term.
73 bool GetBookmarksMatchingTerm(const base::string16& term,
102 void RegisterNode(const base::string16& term, const BookmarkNode* node);
105 void UnregisterNode(const base::string16& term, const BookmarkNode* node);
  /external/chromium_org/ppapi/native_client/tools/browser_tester/browsertester/
browserprocess.py 25 self.term()
53 def term(self): member in class:BrowserProcess
64 def term(self): member in class:BrowserProcessPosix
  /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...]

Completed in 772 milliseconds

1 2 3 4 5 6 7 8 91011>>