/external/chromium_org/third_party/libjingle/source/talk/p2p/base/ |
sessionmessages.cc | [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/ |
nv50_ir_inlines.h | 362 bool BasicBlock::reachableBy(const BasicBlock *by, const BasicBlock *term) 364 return cfg.reachableBy(&by->cfg, &term->cfg);
|
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
|
nv50_ir_graph.cpp | 169 Graph::Node::reachableBy(const Node *node, const Node *term) const 183 if (pos == term)
|
/external/chromium_org/third_party/sqlite/src/test/ |
randexpr1.tcl | 163 foreach term [concat $aggexpr $intexpr $boolexpr] { 164 foreach {a b} $term break 166 error "mismatch: $term"
|
/external/mesa3d/src/gallium/drivers/nv50/codegen/ |
nv50_ir_inlines.h | 362 bool BasicBlock::reachableBy(const BasicBlock *by, const BasicBlock *term) 364 return cfg.reachableBy(&by->cfg, &term->cfg);
|
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
|
nv50_ir_graph.cpp | 169 Graph::Node::reachableBy(const Node *node, const Node *term) const 183 if (pos == term)
|
/external/chromium_org/chrome/browser/google_apis/ |
gdata_wapi_parser.cc | 30 // Term values for kSchemeKind category: 118 const char kTermField[] = "term"; 134 const char kTermAttr[] = "term"; 598 const std::string& term) { 599 if (!StartsWithASCII(term, kTermPrefix, false)) { 600 DVLOG(1) << "Unexpected term prefix term " << term; 604 std::string type = term.substr(strlen(kTermPrefix)); 609 DVLOG(1) << "Unknown entry type for term " << term << ", type " << type [all...] |
/external/chromium_org/chrome/browser/resources/downloads/ |
downloads.js | 722 $('term').focus(); 749 $('term').value = ''; 753 $('term').onsearch = function(e) { 763 searchText = searchText.map(function(term) { 765 return (term.match(/\s/) && 766 term[0].match(/["']/) && 767 term[term.length - 1] == term[0]) ? 768 term.substr(1, term.length - 2) : term [all...] |
/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) {
|
/external/dropbear/ |
svr-chansession.c | 230 chansess->term = NULL; 271 m_free(chansess->term); 439 /* Term modes */ 447 TRACE(("term mode str %d p->l %d p->p %d", 450 dropbear_exit("bad term mode string"); 529 chansess->term = buf_getstring(ses.payload, &termlen); 532 TRACE(("leave sessionpty: term len too long")) 614 if (chansess->term == NULL) { 944 if (chansess->term != NULL) { 945 addnewvar("TERM", chansess->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) {
|
/external/chromium/chrome/browser/history/ |
in_memory_url_index.cc | 92 bool used_; // true if this set has been used for the current term search. 406 // set for each term, and intersect each to get a final candidate list. 407 // Note that a single 'term' from the user's perspective might be 579 // If there were no unprocessed characters in the search term |uni_chars| 595 // Now process the remaining characters in the search term. 644 TermMatches InMemoryURLIndex::MatchTermInString(const string16& term, 648 for (size_t location = string.find(term); location != string16::npos; 649 location = string.find(term, location + 1)) 650 matches.push_back(TermMatch(term_num, location, term.size())); 710 // Figure out where each search term appears in the URL and/or page titl 723 string16 term = *iter; local [all...] |
in_memory_url_index.h | 44 // Specifies where an omnibox term occurs within a string. Used for specifying 53 int term_num; // The index of the term in the original search string. 71 TermMatches url_matches; // Term matches within the URL. 72 TermMatches title_matches; // Term matches within the page title. 132 // Each term must occur somewhere in the history item's URL or page title for 134 // adjacent. Results are sorted with higher scoring items first. Each term 188 // Signals that there are no previously cached results for the typed term. 216 // Support caching of term character results so that we can optimize 219 // character found in the search term, with each character being taken as 221 // term of "mextexarkana" have been fully determined, this vector wil [all...] |
/external/chromium_org/third_party/ply/ |
yacc.py | [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/ |
bitvect.c | 1765 wordptr term; member in struct:BitVector_from_Dec_static_data 1817 wordptr term; local 1928 wordptr term; local [all...] |
expr.c | 52 static void expr_delete_term(yasm_expr__item *term, int recurse); 215 * symrec term pairs (where both symrecs are in the same segment). 228 /* First look for an (-1*symrec) term */ 261 /* Now look for a symrec term in the same segment */ 270 /* Delete the matching (-1*symrec) term */ 273 break; /* stop looking for matching symrec term */ 302 /* Change the term to an integer */ 332 /* Change the term to an subst */ 533 * Assumes int_term is *only* integer term in e. 569 *int_term = -1; /* no longer an int term */ [all...] |
/external/chromium/chrome/browser/search_engines/ |
template_url.cc | 26 // brace is a ?, it indicates the term is optional and can be replaced with 217 // Only parse the host/key if there is one search term. Technically there 218 // could be more than one term, but it's uncommon; so we punt. 483 const std::string& term) const { 488 UnescapeURLComponent(term, UnescapeRule::REPLACE_PLUS_WITH_SPACE | 504 result = UTF8ToUTF16(term);
|
template_url_model.h | 222 // a google base url replacement term. 248 const string16& term); 342 // TemplateURLs that have a replacement term of {google:baseURL} or
|
/external/iputils/doc/ |
docbook2man-spec.pl | 968 sgml('<TERM>', sub { 974 sgml('</TERM>', sub { 975 my $term = pop_output(); 976 $term =~ tr/\n/ /; 977 output $term;
|
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/ |
ChromeBrowserProvider.java | 1201 String term; field in class:ChromeBrowserProvider.SearchRow [all...] |
/external/ceres-solver/scripts/ |
ceres-solver.spec | 37 - A friendly API: build your objective function one term at a time
|
/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/chrome/browser/resources/history/ |
history.js | 506 // results. Double check the search term as well. 507 if (!this.inFlight_ || info.term != this.searchText_) 820 * Do a search on a specific term. 821 * @param {string} term The string to search for. 823 HistoryView.prototype.setSearch = function(term) { 825 this.setPageState(term, 0, this.getRangeInDays(), this.getOffset()); [all...] |