HomeSort by relevance Sort by last modified time
    Searched defs:terms (Results 1 - 23 of 23) sorted by null

  /external/chromium_org/chrome/browser/metrics/
omnibox_metrics_provider.cc 111 std::vector<base::string16> terms; local
113 static_cast<int>(Tokenize(log.text, base::kWhitespaceUTF16, &terms));
  /external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
pmu.c 127 static LIST_HEAD(terms);
131 list_add_tail(&test_terms[i].list, &terms);
133 return &terms;
140 struct list_head *terms = test_terms_list(); local
155 ret = perf_pmu__config_terms(&formats, &attr, terms);
attr.py 26 terms = [ variable in class:Event
93 for t in Event.terms:
102 for t in Event.terms:
parse-events.c 460 static int test__checkterms_simple(struct list_head *terms)
465 term = list_entry(terms->next, struct parse_events_term, list);
1417 struct list_head terms; local
    [all...]
  /external/chromium_org/chrome/browser/
chrome_process_finder_win.cc 122 base::string16 terms; local
123 base::win::MetroLaunchType launch = base::win::GetMetroLaunchParams(&terms);
127 std::string query = EscapeQueryParamValue(base::UTF16ToUTF8(terms), true);
  /external/chromium_org/chrome/browser/first_run/
first_run_internal_win.cc 102 std::string terms = l10n_util::GetStringUTF8(IDS_TERMS_HTML); local
103 return (!terms.empty() &&
105 base::WriteFile(*eula_path, terms.data(), terms.size()) != -1);
  /external/chromium_org/chrome/renderer/safe_browsing/
phishing_term_feature_extractor_unittest.cc 37 base::hash_set<std::string> terms; local
38 terms.insert("one");
39 terms.insert("one one");
40 terms.insert("two");
41 terms.insert("multi word test");
42 terms.insert("capitalization");
43 terms.insert("space");
44 terms.insert("separator");
45 terms.insert("punctuation");
47 terms.insert("\xe4\xbd\xa0\xe5\xa5\xbd")
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
parse-events.h 34 extern int parse_events_terms(struct list_head *terms, const char *str);
72 struct list_head *terms; member in struct:parse_events_terms
84 void parse_events__free_terms(struct list_head *terms);
pmu.c 15 struct list_head terms; member in struct:perf_pmu_alias
113 INIT_LIST_HEAD(&alias->terms);
114 ret = parse_events_terms(&alias->terms, buf);
188 struct list_head *terms)
194 list_for_each_entry(term, &alias->terms, list) {
202 list_splice(&list, terms);
424 * Support only for hardcoded and numnerial terms.
425 * Hardcoded terms should be already in, so nothing
454 * non-hardcoded terms, here's the place to translate
476 * 1) users input - specified in terms paramete
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/utility/
TextUtilities.java 507 * Given a string of HTML text and a query containing any number of search terms, returns
508 * an HTML string in which those search terms are highlighted (intended for use in a WebView)
511 * @param query the search terms
512 * @return HTML text with the search terms highlighted
525 * Given a string of plain text and a query containing any number of search terms, returns
526 * a CharSequence in which those search terms are highlighted (intended for use in a TextView)
529 * @param query the search terms
530 * @return a CharSequence with the search terms highlighted
556 * Generate a version of the incoming text in which all search terms in a query are highlighted.
561 * @param query the query, which can contain multiple terms separated by whitespac
574 ArrayList<SearchTerm> terms = new ArrayList<SearchTerm>(); local
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
expr.h 73 int numterms; /**< Number of terms in the expression. */
75 /** Terms of the expression. Structure may be extended to include more
76 * terms, as some operations may allow more than two operand terms
79 yasm_expr__item terms[2]; member in struct:yasm_expr
332 /** Reorder terms of e into canonical order. Only reorders if reordering
335 * Multiple terms of a single type are kept in the same order as in
345 * \param except term index not to copy; -1 to copy all terms
360 /** Transform symrec-symrec terms in expression into #YASM_EXPR_SUBST items.
section.c 850 /* span terms in absolute portion of value */
851 yasm_span_term *terms; member in struct:yasm_span
898 span->terms = NULL;
934 span->terms = yasm_xrealloc(span->terms,
937 span->terms[subst].precbc = precbc;
938 span->terms[subst].precbc2 = precbc2;
939 span->terms[subst].span = span;
940 span->terms[subst].subst = subst;
945 span->terms[subst].cur_val = 0
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
SemanticContext.java 609 SemanticContext[] terms = factorOr(a, b); local
610 SemanticContext commonTerms = terms[0];
611 a = terms[1];
612 b = terms[2];
646 SemanticContext[] terms = factorAnd(a, b); local
647 SemanticContext commonTerms = terms[0];
648 a = terms[1];
649 b = terms[2];
  /external/chromium_org/chrome/browser/search_engines/
template_url_unittest.cc 106 const base::string16 terms; member in struct:SearchTermsCase
126 TemplateURLRef::SearchTermsArgs(value.terms), search_terms_data_));
348 const base::string16 terms; member in struct:SearchTermsCase
366 TemplateURLRef::SearchTermsArgs(value.terms), search_terms_data, NULL));
482 // Tests replacing search terms in various encodings and making sure the
771 // Multiple terms should result in empty values.
    [all...]
  /external/chromium_org/components/bookmarks/browser/
bookmark_index.cc 66 // represents a set of terms (as an interator into the Index) matching the
67 // query as well as the set of nodes that contain those terms in their titles.
69 // List of terms matching the query.
70 std::list<Index::const_iterator> terms; member in struct:bookmarks::BookmarkIndex::Match
72 // The set of nodes matching the terms. As an optimization this is empty
75 // the set of matching nodes is terms.front()->second.
78 // it handles the necessary switching between nodes and terms.front().
92 return nodes.empty() ? terms.front()->second.begin() : nodes.begin();
96 return nodes.empty() ? terms.front()->second.end() : nodes.end();
114 std::vector<base::string16> terms
146 std::vector<base::string16> terms = ExtractQueryWords(query); local
343 std::vector<base::string16> terms; local
347 parser.ParseQueryWords(base::i18n::ToLower(query), &terms); local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_tgsi_soa.c 1421 LLVMValueRef terms[TGSI_NUM_CHANNELS]; local
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts1/
fulltext.c 1377 Hash terms; \/* maps term string -> PosList *\/ local
1429 Hash terms; local
    [all...]
fts1.c 952 short int nPhrase; /* How many following terms are part of the same phrase */
970 * of terms (with an implied AND operator) or phrases in double-quotes,
992 int nTerms; /* Number of terms in the query */
993 QueryTerm *pTerms; /* Array of terms. Space obtained from malloc() */
3154 fts1Hash terms; \/* maps term string -> PosList *\/ local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_tgsi_soa.c 1421 LLVMValueRef terms[TGSI_NUM_CHANNELS]; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.lucene_1.9.1.v20100518-1140.jar 
  /external/chromium_org/third_party/sqlite/src/ext/fts2/
fts2.c 68 ** structures called segments which map terms to doclists. The
135 ** Segment leaf nodes store terms and doclists, ordered by term. Leaf
147 ** (further terms are delta-encoded)
169 ** assumption is that large doclists represent terms which are more
179 ** Segment interior nodes store blockids for subtree nodes and terms
193 ** (further terms are delta-encoded)
203 ** An interior node encodes n terms separating n+1 subtrees. The
205 ** is encoded. The subtree at iBlockid will contain all terms less
206 ** than the first term encoded (or all terms if no term is encoded).
207 ** Otherwise, for terms greater than or equal to pTerm[i] but les
6830 fts2Hash terms; local
    [all...]
  /external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar 
  /prebuilts/misc/common/antlr/
antlr-3.4-complete.jar 

Completed in 1594 milliseconds