Home
last modified time | relevance | path

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

12345678910>>...34

/external/webkit/Source/JavaScriptCore/yarr/
DYarrInterpreter.cpp1078 #define currentTerm() (disjunction->terms[context->term])
1094 ASSERT(context->term < static_cast<int>(disjunction->terms.size())); in matchDisjunction()
1247 ASSERT(context->term < static_cast<int>(disjunction->terms.size())); in matchDisjunction()
1461 m_bodyDisjunction->terms.append(ByteTerm::CheckInput(count)); in checkInput()
1466 m_bodyDisjunction->terms.append(ByteTerm::UncheckInput(count)); in uncheckInput()
1471 m_bodyDisjunction->terms.append(ByteTerm::BOL(inputPosition)); in assertionBOL()
1476 m_bodyDisjunction->terms.append(ByteTerm::EOL(inputPosition)); in assertionEOL()
1481 m_bodyDisjunction->terms.append(ByteTerm::WordBoundary(invert, inputPosition)); in assertionWordBoundary()
1491 …m_bodyDisjunction->terms.append(ByteTerm(lo, hi, inputPosition, frameLocation, quantityCount, quan… in atomPatternCharacter()
1496 …m_bodyDisjunction->terms.append(ByteTerm(ch, inputPosition, frameLocation, quantityCount, quantity… in atomPatternCharacter()
[all …]
/external/chromium/chrome/browser/history/
Din_memory_url_index_unittest.cc121 InMemoryURLIndex::String16Vector terms; in Make1Term() local
122 terms.push_back(UTF8ToUTF16(term)); in Make1Term()
123 return terms; in Make1Term()
128 InMemoryURLIndex::String16Vector terms; in Make2Terms() local
129 terms.push_back(UTF8ToUTF16(term_1)); in Make2Terms()
130 terms.push_back(UTF8ToUTF16(term_2)); in Make2Terms()
131 return terms; in Make2Terms()
188 InMemoryURLIndex::String16Vector terms; in TEST_F() local
192 terms.push_back(ASCIIToUTF16("DrudgeReport")); in TEST_F()
193 ScoredHistoryMatches matches = url_index_->HistoryItemsForTerms(terms); in TEST_F()
[all …]
/external/chromium/chrome/browser/bookmarks/
Dbookmark_index.cc24 std::list<Index::const_iterator> terms; member
46 return nodes.empty() ? terms.front()->second.begin() : nodes.begin(); in nodes_begin()
50 return nodes.empty() ? terms.front()->second.end() : nodes.end(); in nodes_end()
62 std::vector<string16> terms = ExtractQueryWords(node->GetTitle()); in Add() local
63 for (size_t i = 0; i < terms.size(); ++i) in Add()
64 RegisterNode(terms[i], node); in Add()
71 std::vector<string16> terms = ExtractQueryWords(node->GetTitle()); in Remove() local
72 for (size_t i = 0; i < terms.size(); ++i) in Remove()
73 UnregisterNode(terms[i], node); in Remove()
80 std::vector<string16> terms = ExtractQueryWords(query); in GetBookmarksWithTitlesMatching() local
[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/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/
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/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/crypto/third_party/nss/
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/eigen/
DCOPYING.MPL230 (b) that the Covered Software was made available under the terms of
32 terms of a Secondary License.
137 License (see Section 10.2) or under the terms of a Secondary License (if
138 permitted under the terms of Section 3.3).
164 the terms of this License. You must inform recipients that the Source
165 Code Form of the Covered Software is governed by the terms of this
180 (b) You may distribute such Executable Form under the terms of this
181 License, or sublicense it under different terms, provided that the
187 You may create and distribute a Larger Work under terms of Your choice,
193 under the terms of such Secondary License(s), so that the recipient of
[all …]
DCOPYING.LGPL10 the terms and conditions of version 3 of the GNU General Public
67 code under terms of your choice, provided that, if the incorporated
81 You may convey a Combined Work under terms of your choice that,
101 0) Convey the Minimal Corresponding Source under the terms of this
103 suitable for, and under terms that permit, the user to
133 License, and convey such a combined library under terms of your
138 conveyed under the terms of this License.
154 applies to it, you have the option of following the terms and
/external/webkit/Examples/NetscapeCocoaPlugin/
DMenuHandler.m3 consideration of your agreement to the following terms, and your use, installation,
5 terms. If you do not agree with these terms, please do not use, install, modify or
8 In consideration of your agreement to abide by the following terms, and subject to these
9 terms, Apple grants you a personal, non-exclusive license, under Apple’s copyrights in
/external/javasqlite/
DNOTICE2 and others. The following terms apply to all files associated with the
11 and need not follow the licensing terms described here, provided that
12 the new terms are clearly indicated on the first page of each file where
/external/qemu/distrib/sdl-1.2.15/src/hermes/
DREADME5 under the terms of the GNU Library General Public License (LGPL). Please
6 refer to the included file COPYING.LIB for the exact terms.
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
DSemanticContext.java609 SemanticContext[] terms = factorOr(a, b); in and() local
610 SemanticContext commonTerms = terms[0]; in and()
611 a = terms[1]; in and()
612 b = terms[2]; in and()
646 SemanticContext[] terms = factorAnd(a, b); in or() local
647 SemanticContext commonTerms = terms[0]; in or()
648 a = terms[1]; in or()
649 b = terms[2]; in or()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/about_files/
Dmpl-v11.txt34 portions thereof with code not governed by the terms of this License.
72 exercising rights under, and complying with all of the terms of, this
101 Original Code under the terms of this License.
147 governed by the terms of this License, including without limitation
149 distributed only under the terms of this License or a future version
152 distribute. You may not offer or impose any terms on any Source Code
160 made available in Source Code form under the terms of this License
228 support, indemnity or liability terms You offer.
234 the Covered Code is available under the terms of this License,
241 contain terms different from this License, provided that You are in
[all …]
/external/hyphenation/
DCOPYING.MPL34 portions thereof with code not governed by the terms of this License.
72 exercising rights under, and complying with all of the terms of, this
101 Original Code under the terms of this License.
147 governed by the terms of this License, including without limitation
149 distributed only under the terms of this License or a future version
152 distribute. You may not offer or impose any terms on any Source Code
160 made available in Source Code form under the terms of this License
228 support, indemnity or liability terms You offer.
234 the Covered Code is available under the terms of this License,
241 contain terms different from this License, provided that You are in
[all …]
/external/quake/quake/src/WinQuake/data/
DLICINFO.TXT4 (This document was designed to be a quick overview of our license terms.
6 terms and conditions.)
54 Basic terms of the commercial exploitation license:
91 2. The terms of this document are not subject to negotiation. If you cannot
92 live with the terms spelled out in the agreement do not engage in any
/external/elfutils/m4/
Dcodeset.m43 dnl This file is free software, distributed under the terms of the GNU
7 dnl the same distribution terms as the rest of that program.
/external/chromium/googleurl/
DLICENSE.txt55 Alternatively, the contents of this file may be used under the terms of
60 under the terms of either the GPL or the LGPL, and not to allow others to
61 use your version of this file under the terms of the MPL, indicate your
65 the terms of any one of the MPL, the GPL or the LGPL.
/external/chromium/chrome/browser/first_run/
Dfirst_run_win.cc155 base::StringPiece terms = in WriteEULAtoTempFile() local
157 if (terms.empty()) in WriteEULAtoTempFile()
162 bool good = fwrite(terms.data(), terms.size(), 1, file) == 1; in WriteEULAtoTempFile()
/external/chromium/chrome/browser/search_engines/
Dtemplate_url.cc269 const string16& terms, in ReplaceSearchTerms() argument
274 terms, in ReplaceSearchTerms()
282 const string16& terms, in ReplaceSearchTermsUsingTermsData() argument
314 if (EscapeQueryParamValue(terms, in ReplaceSearchTermsUsingTermsData()
328 encoded_terms = EscapeQueryParamValueUTF8(terms, true); in ReplaceSearchTermsUsingTermsData()
336 encoded_terms = UTF8ToUTF16(EscapePath(UTF16ToUTF8(terms))); in ReplaceSearchTermsUsingTermsData()
389 base::UTF16ToCodepage(terms, input_encoding.c_str(), in ReplaceSearchTermsUsingTermsData()
/external/webkit/Source/cmake/
DFindSqlite.cmake8 # Redistribution and use is allowed according to the terms of the BSD license.
15 # Redistribution and use is allowed according to the terms of the BSD license.
/external/mesa3d/docs/
DCOPYING50 it. And you must show them these terms so they know their rights.
101 The precise terms and conditions for copying, distribution and
115 party saying it may be distributed under the terms of this Library
124 which has been distributed under these terms. A "work based on the
159 distribute such modifications or work under the terms of Section 1
168 charge to all third parties under the terms of this License.
188 themselves, then this License, and its terms, do not apply to those
191 on the Library, the distribution of the whole must be on the terms of
206 3. You may opt to apply the terms of the ordinary GNU General Public
224 under the terms of Sections 1 and 2 above provided that you accompany
[all …]
/external/libsepol/
DCOPYING46 it. And you must show them these terms so they know their rights.
109 The precise terms and conditions for copying, distribution and
120 other authorized party saying it may be distributed under the terms of
129 which has been distributed under these terms. A "work based on the
164 distribute such modifications or work under the terms of Section 1
173 charge to all third parties under the terms of this License.
193 themselves, then this License, and its terms, do not apply to those
196 on the Library, the distribution of the whole must be on the terms of
211 3. You may opt to apply the terms of the ordinary GNU General Public
229 under the terms of Sections 1 and 2 above provided that you accompany
[all …]

12345678910>>...34