HomeSort by relevance Sort by last modified time
    Searched defs:term (Results 26 - 50 of 110) sorted by null

12 3 4 5

  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
value.c 161 * and symrec term pairs (where both symrecs are in the same
178 /* First look for an (-1*symrec) term */
213 /* Look for the same symrec term; even if both are external,
244 /* Now look for a unused symrec term in the same segment */
475 int term; local
486 for (term=value->abs->numterms-1; term>=0; term--) {
487 if (value->abs->terms[term].type == YASM_EXPR_INT &&
488 yasm_intnum_compare(value->abs->terms[term].data.intn
    [all...]
  /external/libpcap/
grammar.y 154 %type <blk> expr id nid pid term rterm qid
218 expr: term
219 | expr and term { gen_and($1.b, $3.b); $$ = $3; }
221 | expr or term { gen_or($1.b, $3.b); $$ = $3; }
293 term: rterm label
294 | not term { gen_not($2.b); $$ = $2; }
  /external/linux-tools-perf/util/
color.c 152 char *term = getenv("TERM"); local
153 if (term && strcmp(term, "dumb"))
  /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/openssh/
session.h 40 char *term; member in struct:Session
  /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...]
  /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() + ";");
Main.java 452 terminal term; local
458 term = (terminal)t.nextElement();
461 if (term == terminal.EOF) continue;
464 if (term == terminal.error) continue;
467 if (term.use_count() == 0)
473 System.err.println("Warning: Terminal \"" + term.name() +
  /external/chromium/chrome/browser/autocomplete/
search_provider_unittest.cc 28 // . The URL created by using the search term term1_ with default_t_url_ is
30 // . The URL created by using the search term keyword_term_ with keyword_t_url_
118 // Add url1, with search term term1_.
138 // Add a page and search term for keyword_t_url_.
224 string16 term = term1_.substr(0, term1_.size() - 1); local
225 QueryForInput(term, false, false);
234 ReplaceSearchTerms(*default_t_url_, term, 0, string16()));
247 // term term1.
254 *default_t_url_, term, 0, string16()));
265 string16 term = term1_.substr(0, term1_.size() - 1) local
276 string16 term = keyword_term_.substr(0, keyword_term_.size() - 1); local
    [all...]
  /external/chromium/chrome/browser/history/
in_memory_url_index_unittest.cc 120 InMemoryURLIndex::String16Vector Make1Term(const char* term) {
122 terms.push_back(UTF8ToUTF16(term));
189 // The term will be lowercased by the search.
191 // See if a very specific term gives a single result.
286 string16 term = ASCIIToUTF16("drudgereport"); local
289 InMemoryURLIndex::Char16SetFromString16(term).size());
291 InMemoryURLIndex::Char16VectorFromString16(term);
404 string16 term = ASCIIToUTF16("drudgerepo"); local
405 terms.push_back(term);
409 // Exercise the term matching cache with the same term
    [all...]
  /external/chromium_org/chrome/browser/download/
download_query.cc 88 string16 term = base::i18n::ToLower(*it); local
90 term, url_raw, NULL, NULL) &&
92 term, url_formatted, NULL, NULL) &&
94 term, path, NULL, NULL)) {
377 for (DownloadQuery::SorterVector::const_iterator term = terms_.begin();
378 term != terms_.end(); ++term) {
379 switch (term->sorter.Run(*left, *right)) {
380 case LT: return term->direction == DownloadQuery::ASCENDING;
381 case GT: return term->direction == DownloadQuery::DESCENDING
    [all...]
  /external/chromium_org/chrome/browser/history/
scored_history_match.cc 62 // Figure out where each search term appears in the URL and/or page title
69 string16 term = *iter; local
70 TermMatches url_term_matches = MatchTermInString(term, url, term_num);
71 TermMatches title_term_matches = MatchTermInString(term, title, term_num);
73 return; // A term was not found in either URL or title - reject.
90 // 1) there is only one search term
95 // the IMUI as though there is a single search term when actually there
96 // is a second, empty term).
266 // A vector that accumulates per-term scores. The strongest match--a
295 // Advance next_word_starts until it's >= the position of the term
    [all...]
  /external/chromium_org/chrome/renderer/pepper/
ppb_pdf_impl.cc 247 const char16* term = reinterpret_cast<const char16*>(input_term); local
251 term, -1, string, -1, RenderThread::Get()->GetLocale().c_str(), 0,
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_context.c 195 GLuint term; local
196 for (term = 0; term < combine->_NumArgsRGB; term++) {
197 if (combine->SourceRGB[term] == GL_PRIMARY_COLOR) {
201 if (combine->SourceA[term] == GL_PRIMARY_COLOR) {
s_texcombine.c 104 GLuint i, term; local
148 for (term = 0; term < numArgsRGB; term++) {
149 const GLenum srcRGB = combine->SourceRGB[term];
150 const GLenum operandRGB = combine->OperandRGB[term];
154 argRGB[term] = get_texel_array(swrast, unit);
157 argRGB[term] = primary_rgba;
160 argRGB[term] = rgba;
164 float4_array c = ccolor[term];
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_context.c 195 GLuint term; local
196 for (term = 0; term < combine->_NumArgsRGB; term++) {
197 if (combine->SourceRGB[term] == GL_PRIMARY_COLOR) {
201 if (combine->SourceA[term] == GL_PRIMARY_COLOR) {
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...]
  /external/srec/srec/include/
hmm_desc.h 125 struct terminal_tree_node_info term; member in union:__anon28297
  /system/core/liblinenoise/
linenoise.c 43 * - Switch to gets() if $TERM is something we can't support.
97 char *term = getenv("TERM"); local
100 if (term == NULL) return 0;
102 if (!strcasecmp(term,unsupported_term[j])) return 1;
  /system/core/sh/
histedit.c 108 char *term, *shname; local
122 term = lookupvar("TERM");
123 if (term)
124 setenv("TERM", term, 1);
126 unsetenv("TERM");
184 setterm(const char *term)
186 if (el != NULL && term != NULL)
187 if (el_set(el, EL_TERMINAL, term) != 0)
    [all...]
  /external/chromium_org/chrome/browser/history/android/
android_history_types.h 297 string16 term; member in struct:history::SearchTermRow
android_provider_backend.cc 57 "SELECT keyword_search_terms.term, max(urls.last_visit_time) "
60 "GROUP BY keyword_search_terms.term";
544 // We can not update search term if multiple row selected.
560 search_term_row.term = search_row.search_term();
566 // Delete the original search term.
830 string16 term = statement.ColumnString16(0); local
833 if (history_db_->GetSearchTerm(term, &search_term_row)) {
840 if (!history_db_->AddSearchTerm(term, last_visit_time))
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_util.h 192 term(head) { }
196 virtual bool end() const { return pos == term; }
208 Item *term; member in class:nv50_ir::DLList::Iterator
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_util.h 192 term(head) { }
196 virtual bool end() const { return pos == term; }
208 Item *term; member in class:nv50_ir::DLList::Iterator
  /frameworks/compile/mclinker/tools/llvm-mcld/
llvm-mcld.cpp 1031 const char* term = getenv("TERM"); local
    [all...]

Completed in 993 milliseconds

12 3 4 5