Home
last modified time | relevance | path

Searched refs:terms (Results 1 – 25 of 1112) sorted by relevance

12345678910>>...45

/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
Dexpr.c73 ptr->terms[0].type = YASM_EXPR_NONE; in yasm_expr_create()
74 ptr->terms[1].type = YASM_EXPR_NONE; in yasm_expr_create()
76 ptr->terms[0] = *left; /* structure copy */ in yasm_expr_create()
86 while (ptr->terms[0].type == YASM_EXPR_EXPR && in yasm_expr_create()
87 ptr->terms[0].data.expn->op == YASM_EXPR_IDENT) { in yasm_expr_create()
88 sube = ptr->terms[0].data.expn; in yasm_expr_create()
89 ptr->terms[0] = sube->terms[0]; /* structure copy */ in yasm_expr_create()
99 ptr->terms[1] = *right; /* structure copy */ in yasm_expr_create()
109 while (ptr->terms[1].type == YASM_EXPR_EXPR && in yasm_expr_create()
110 ptr->terms[1].data.expn->op == YASM_EXPR_IDENT) { in yasm_expr_create()
[all …]
Dvalue.c179 if (e->terms[i].type != YASM_EXPR_EXPR) in value_finalize_scan()
181 sube = e->terms[i].data.expn; in value_finalize_scan()
191 if (sube->terms[0].type == YASM_EXPR_INT && in value_finalize_scan()
192 sube->terms[1].type == YASM_EXPR_SYM) { in value_finalize_scan()
193 intn = sube->terms[0].data.intn; in value_finalize_scan()
194 sym = sube->terms[1].data.sym; in value_finalize_scan()
195 } else if (sube->terms[0].type == YASM_EXPR_SYM && in value_finalize_scan()
196 sube->terms[1].type == YASM_EXPR_INT) { in value_finalize_scan()
197 sym = sube->terms[0].data.sym; in value_finalize_scan()
198 intn = sube->terms[1].data.intn; in value_finalize_scan()
[all …]
Dsection.c851 yasm_span_term *terms; member
898 span->terms = NULL; in create_span()
934 span->terms = yasm_xrealloc(span->terms, in add_span_term()
937 span->terms[subst].precbc = precbc; in add_span_term()
938 span->terms[subst].precbc2 = precbc2; in add_span_term()
939 span->terms[subst].span = span; in add_span_term()
940 span->terms[subst].subst = subst; in add_span_term()
945 span->terms[subst].cur_val = 0; in add_span_term()
946 span->terms[subst].new_val = yasm_intnum_get_int(intn); in add_span_term()
968 ((span->bc->bc_index > span->terms[i].precbc->bc_index && in span_create_terms()
[all …]
/external/chromium_org/components/bookmarks/browser/
Dbookmark_index.cc70 std::list<Index::const_iterator> terms; member
92 return nodes.empty() ? terms.front()->second.begin() : nodes.begin(); in nodes_begin()
96 return nodes.empty() ? terms.front()->second.end() : nodes.end(); in nodes_end()
112 std::vector<base::string16> terms = in Add() local
114 for (size_t i = 0; i < terms.size(); ++i) in Add()
115 RegisterNode(terms[i], node); in Add()
116 terms = in Add()
118 for (size_t i = 0; i < terms.size(); ++i) in Add()
119 RegisterNode(terms[i], node); in Add()
126 std::vector<base::string16> terms = in Remove() local
[all …]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/
Dx86expr.c160 switch (e->terms[i].type) { in x86_expr_checkea_distcheck_reg()
181 if (yasm_expr__contains(e->terms[i].data.expn, in x86_expr_checkea_distcheck_reg()
195 x86_expr_checkea_distcheck_reg(&e->terms[i].data.expn, in x86_expr_checkea_distcheck_reg()
201 } else if (yasm_expr__contains(e->terms[i].data.expn, in x86_expr_checkea_distcheck_reg()
221 if (e->terms[havereg_expr].type != YASM_EXPR_EXPR || in x86_expr_checkea_distcheck_reg()
222 e->terms[havereg_expr].data.expn->op != YASM_EXPR_ADD) in x86_expr_checkea_distcheck_reg()
226 for (i=0; i<e->terms[havereg_expr].data.expn->numterms; i++) { in x86_expr_checkea_distcheck_reg()
231 ne->terms[havereg_expr] = in x86_expr_checkea_distcheck_reg()
232 e->terms[havereg_expr].data.expn->terms[i]; /* struct copy */ in x86_expr_checkea_distcheck_reg()
234 e->terms[havereg_expr].data.expn->terms[i].type = YASM_EXPR_EXPR; in x86_expr_checkea_distcheck_reg()
[all …]
/external/chromium_org/third_party/sqlite/src/test/
Dfts3aux1.test26 CREATE VIRTUAL TABLE terms USING fts4aux(t1);
27 SELECT term, documents, occurrences FROM terms WHERE col = '*';
35 SELECT term, documents, occurrences FROM terms WHERE col = '*';
43 SELECT term, documents, occurrences FROM terms WHERE col = '*';
56 SELECT term, documents, occurrences FROM terms WHERE col = '*';
81 DROP TABLE terms;
85 CREATE VIRTUAL TABLE terms USING fts4aux(x1);
88 SELECT term, documents, occurrences FROM terms WHERE col = '*';
107 EXPLAIN QUERY PLAN SELECT * FROM terms WHERE term='braid'
108 } { 0 0 0 {SCAN TABLE terms VIRTUAL TABLE INDEX 1: (~0 rows)} }
[all …]
Dfts3fault2.test25 CREATE VIRTUAL TABLE terms USING fts4aux(t1);
43 execsql "SELECT * FROM terms"
52 execsql "SELECT * FROM terms WHERE term>'a' AND TERM < 'd'"
61 execsql "SELECT * FROM terms WHERE term='c'"
/external/chromium_org/chrome/browser/resources/chromeos/login/
Doobe_screen_terms_of_service.css6 #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/v8/test/mjsunit/es6/
Dmath-log1p.js25 var terms = [];
28 terms.push(prod / i);
32 while (terms.length > 0) sum += terms.pop();
/external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
Dpmu.c127 static LIST_HEAD(terms); in test_terms_list()
131 list_add_tail(&test_terms[i].list, &terms); in test_terms_list()
133 return &terms; in test_terms_list()
140 struct list_head *terms = test_terms_list(); in test__pmu() local
155 ret = perf_pmu__config_terms(&formats, &attr, terms); in test__pmu()
/external/chromium_org/third_party/markdown/extensions/
Ddef_list.py74 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':
94 terms = sibling.text.split('\n')
110 for term in terms:
/external/chromium_org/chrome/renderer/safe_browsing/
Dphishing_term_feature_extractor_unittest.cc37 base::hash_set<std::string> terms; in SetUp() local
38 terms.insert("one"); in SetUp()
39 terms.insert("one one"); in SetUp()
40 terms.insert("two"); in SetUp()
41 terms.insert("multi word test"); in SetUp()
42 terms.insert("capitalization"); in SetUp()
43 terms.insert("space"); in SetUp()
44 terms.insert("separator"); in SetUp()
45 terms.insert("punctuation"); in SetUp()
47 terms.insert("\xe4\xbd\xa0\xe5\xa5\xbd"); in SetUp()
[all …]
/external/markdown/markdown/extensions/
Ddef_list.py37 terms = [l.strip() for l in block[:m.start()].split('\n') if l.strip()]
45 if not terms and sibling.tag == 'p':
48 terms = sibling.text.split('\n')
64 for term in terms:
/external/mdnsresponder/
DLICENSE2 under the terms of the Apache License, Version 2.0, available from:
8 licensed under the terms of the "Three-Clause BSD License".
11 Australia Ltd (NICTA) is licensed under the terms of the NICTA Public
/external/chromium_org/v8/test/mjsunit/
Dsin-cos.js90 var terms = [];
92 terms.push(sign * x / factorial[i]);
96 return precision_sum(terms);
103 var terms = [1];
105 terms.push(sign * x / factorial[i]);
109 return precision_sum(terms);
/external/chromium_org/native_client_sdk/src/doc/community/security-contest/
Dcontest-faq.rst36 <contest-terms>` of the contest can sign up.
44 <contest-terms>`:doc:` of the contest <contest-terms>`. Once everyone
46 <contest-terms>` you can start submitting bugs through the Native
49 :doc:`Terms and Conditions <contest-terms>`, as those bugs will not be
56 has accepted the :doc:`Terms and Conditions <contest-terms>`, download
92 our detailed :doc:`Terms and Conditions <contest-terms>`.
118 :doc:`Terms and Conditions <contest-terms>`.
135 :doc:`Terms and Conditions <contest-terms>`.
156 Conditions <contest-terms>`. All team members will need to re-accept
157 the :doc:`Terms and Conditions <contest-terms>` for the team to be
[all …]
/external/javassist/
DNOTICE16 Alternatively, the contents of this file may be used under the terms of
20 under the terms of the LGPL, and not to allow others to
21 use your version of this file under the terms of the MPL, indicate your
25 the terms of either the MPL or the LGPL.
/external/wpa_supplicant_8/
DCONTRIBUTIONS7 clear record of contributions and terms under which they are licensed.
9 recording of the terms.
12 license (see below). Acknowledgment of the terms is tracked through
15 the Developer Certificate of Origin (DCO) version 1.1 terms (see below;
23 terms, please add the following line to the end of the commit message
32 History of license and contributions terms
55 under other terms.
58 license terms. Acceptance of this extended DCO version was indicated
62 option. This was done to allow simpler licensing terms to be used in the
110 The license terms used for hostap.git files
DCOPYING8 See the README file for the current license terms.
11 terms that allowed either of those license alternatives to be
20 terms. However, such copyright and license notifications are maintained
/external/chromium_org/chrome/browser/first_run/
Dfirst_run_internal_win.cc102 std::string terms = l10n_util::GetStringUTF8(IDS_TERMS_HTML); in WriteEULAtoTempFile() local
103 return (!terms.empty() && in WriteEULAtoTempFile()
105 base::WriteFile(*eula_path, terms.data(), terms.size()) != -1); in WriteEULAtoTempFile()
/external/chromium_org/chrome/third_party/mozilla_security_manager/
DLICENSE23 * Alternatively, the contents of this file may be used under the terms of
28 * under the terms of either the GPL or the LGPL, and not to allow others to
29 * use your version of this file under the terms of the MPL, indicate your
33 * the terms of any one of the MPL, the GPL or the LGPL.
/external/chromium_org/net/third_party/mozilla_security_manager/
DLICENSE23 * Alternatively, the contents of this file may be used under the terms of
28 * under the terms of either the GPL or the LGPL, and not to allow others to
29 * use your version of this file under the terms of the MPL, indicate your
33 * the terms of any one of the MPL, the GPL or the LGPL.
/external/chromium_org/third_party/isimpledom/
DLICENSE23 * Alternatively, the contents of this file may be used under the terms of
28 * under the terms of either the GPL or the LGPL, and not to allow others to
29 * use your version of this file under the terms of the MPL, indicate your
33 * the terms of any one of the MPL, the GPL or the LGPL.
/external/chromium_org/base/third_party/nspr/
DLICENSE23 * Alternatively, the contents of this file may be used under the terms of
28 * under the terms of either the GPL or the LGPL, and not to allow others to
29 * use your version of this file under the terms of the MPL, indicate your
33 * the terms of any one of the MPL, the GPL or the LGPL.
/external/chromium_org/third_party/mozilla/
DLICENSE23 * Alternatively, the contents of this file may be used under the terms of
28 * under the terms of either the GPL or the LGPL, and not to allow others to
29 * use your version of this file under the terms of the MPL, indicate your
33 * the terms of any one of the MPL, the GPL or the LGPL.

12345678910>>...45