HomeSort by relevance Sort by last modified time
    Searched refs:terms (Results 1 - 25 of 160) sorted by null

1 2 3 4 5 6 7

  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
expr.c 73 ptr->terms[0].type = YASM_EXPR_NONE;
74 ptr->terms[1].type = YASM_EXPR_NONE;
76 ptr->terms[0] = *left; /* structure copy */
86 while (ptr->terms[0].type == YASM_EXPR_EXPR &&
87 ptr->terms[0].data.expn->op == YASM_EXPR_IDENT) {
88 sube = ptr->terms[0].data.expn;
89 ptr->terms[0] = sube->terms[0]; /* structure copy */
99 ptr->terms[1] = *right; /* structure copy */
109 while (ptr->terms[1].type == YASM_EXPR_EXPR &
    [all...]
value.c 134 /* Yes, this has a maximum upper bound on 32 terms, based on an
135 * "insane number of terms" (and ease of implementation) WAG.
165 yasm__fatal(N_("expression on line %d has too many add terms;"
179 if (e->terms[i].type != YASM_EXPR_EXPR)
181 sube = e->terms[i].data.expn;
191 if (sube->terms[0].type == YASM_EXPR_INT &&
192 sube->terms[1].type == YASM_EXPR_SYM) {
193 intn = sube->terms[0].data.intn;
194 sym = sube->terms[1].data.sym;
195 } else if (sube->terms[0].type == YASM_EXPR_SYM &
    [all...]
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/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();
112 std::vector<base::string16> terms
140 std::vector<base::string16> terms = ExtractQueryWords(query); local
333 std::vector<base::string16> terms; local
337 parser.ParseQueryWords(base::i18n::ToLower(query), &terms); local
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/
x86expr.c 160 switch (e->terms[i].type) {
181 if (yasm_expr__contains(e->terms[i].data.expn,
195 x86_expr_checkea_distcheck_reg(&e->terms[i].data.expn,
201 } else if (yasm_expr__contains(e->terms[i].data.expn,
221 if (e->terms[havereg_expr].type != YASM_EXPR_EXPR ||
222 e->terms[havereg_expr].data.expn->op != YASM_EXPR_ADD)
226 for (i=0; i<e->terms[havereg_expr].data.expn->numterms; i++) {
231 ne->terms[havereg_expr] =
232 e->terms[havereg_expr].data.expn->terms[i]; /* struct copy *
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/login/
oobe_screen_terms_of_service.css 6 #terms-of-service {
15 #terms-of-service .step-contents {
20 #terms-of-service h1 {
44 #terms-of-service h2 {
63 #terms-of-service p {
70 #terms-of-service p + p {
91 #terms-of-service.error #tos-back-button {
  /external/chromium_org/third_party/markdown/extensions/
def_list.py 74 terms = [l.strip() for l in raw_block[:m.start()].split('\n') if l.strip()]
86 if not terms and sibling is None:
91 if not terms and sibling.tag == 'p':
92 # The previous paragraph contains the terms
94 terms = sibling.text.split('\n')
109 # Add terms
110 for term in 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);
  /external/markdown/markdown/extensions/
def_list.py 37 terms = [l.strip() for l in block[:m.start()].split('\n') if l.strip()]
45 if not terms and sibling.tag == 'p':
46 # The previous paragraph contains the terms
48 terms = sibling.text.split('\n')
63 # Add terms
64 for term in terms:
  /external/chromium_org/v8/test/mjsunit/es6/
math-log1p.js 25 var terms = [];
28 terms.push(prod / i);
32 while (terms.length > 0) sum += terms.pop();
  /external/wpa_supplicant_8/hs20/server/www/
free-remediation.php 9 <p>Terms and conditions have changed. You need to accept the new terms
12 <p>Terms and conditions..</p>
  /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);
  /frameworks/av/media/libstagefright/foundation/
ADebug.cpp 98 const char *terms[] = { "omx", "video", "audio" }; local
99 for (size_t i = 0; i < NELEM(terms) && debugName != NULL; i++) {
100 const char *term = terms[i];
  /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/linux-tools-perf/perf-3.12.0/tools/perf/scripts/perl/Perf-Trace-Util/lib/Perf/Trace/
Context.pm 48 it under the same terms as Perl itself, either Perl version 5.10.0 or,
51 Alternatively, this software may be distributed under the terms of the
Util.pm 87 it under the same terms as Perl itself, either Perl version 5.10.0 or,
90 Alternatively, this software may be distributed under the terms of the
  /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/third_party/sqlite/src/test/
fts3_common.tcl 128 # This function returns a list of all terms present in the segments
223 # Return a list consisting of alternating terms (strings) and doclists
228 set terms [list]
238 lappend terms $zTerm $doclist
242 return $terms
  /external/smali/
README.md 9 - [#smali on freenode](http://webchat.freenode.net/?channels=smali) - Free free to drop by and ask a question. Don't expect an instant response, but if you hang around someone will respond. Think of it more in terms of.. multi-player notepad.
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
SearchRecentSuggestionsProvider.java 127 * Set the other query terms to be included in the user's query.
129 * @param terms
131 public void setFullQueryTerms(ArrayList<String> terms) {
132 mFullQueryTerms = terms;
  /external/chromium_org/chrome/browser/autocomplete/
shortcuts_provider.h 100 int CalculateScore(const base::string16& terms,
  /external/chromium_org/components/search_engines/
util.h 26 // Returns a GURL that searches for |terms| using the default search engine of
29 const base::string16& terms);
  /external/chromium_org/chrome/browser/history/
scored_history_match.cc 54 const String16Vector& terms,
75 for (String16Vector::const_iterator iter = terms.begin(); iter != terms.end();
112 (!url_matches_.empty() && (terms.size() == 1)) ?
113 URLPrefix::BestURLPrefix(base::UTF8ToUTF16(gurl.spec()), terms[0]) :
154 terms.size(), url, terms_to_word_starts_offsets, word_starts);
178 if (base::UTF8ToUTF16(gurl.host()) == terms[0])
429 // to give it credit for. For instance, terms that appear in the middle
438 // TODO(mpearson): If there are multiple terms, consider taking the
  /external/chromium_org/chrome/common/extensions/docs/examples/api/downloads/download_links/
popup.js 65 var terms = filterValue.split(' ');
67 for (var termI = 0; termI < terms.length; ++termI) {
68 var term = terms[termI];

Completed in 880 milliseconds

1 2 3 4 5 6 7