HomeSort by relevance Sort by last modified time
    Searched refs:match (Results 476 - 500 of 2257) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/re2/re2/testing/
dfa_test.cc 189 // which is not a match for 0[01]{n}$. Adding one more 0 is a match.
191 string match = no_match + "0"; local
209 matched = prog->SearchDFA(match, NULL,
233 // Helper thread: searches for match, which should match,
237 SearchThread(Prog* prog, const StringPiece& match,
239 : prog_(prog), match_(match), no_match_(no_match) {}
270 string match = no_match + "0"; local
277 SearchThread* t = new SearchThread(prog, match, no_match)
312 bool match; member in struct:re2::ReverseTest
    [all...]
  /external/lldb/source/Plugins/Instruction/ARM/
EmulationStateARM.cpp 284 bool match = true; local
286 for (int i = 0; match && i < 17; ++i)
289 match = false;
292 for (int i = 0; match && i < 16; ++i)
295 match = false;
298 match = false;
301 for (int i = 0; match && i < 32; ++i)
306 match = false;
311 match = false;
315 return match;
    [all...]
  /external/chromium_org/base/android/jni_generator/
jni_generator.py 193 for match in re.finditer(re_import, contents):
194 JniParams._imports += ['L' + match.group('class').replace('.', '/')]
197 for match in re.finditer(re_inner, contents):
198 inner = match.group('name')
205 for match in re.finditer(re_additional_imports, contents):
206 for class_name in match.group('class_names').split(','):
410 for match in re.finditer(re_native, contents):
412 static='static' in match.group('qualifiers'),
413 java_class_name=match.group('java_class_name'),
414 native_class_name=match.group('native_class_name')
    [all...]
  /external/chromium_org/components/omnibox/
search_provider.cc 135 std::string SearchProvider::GetSuggestMetadata(const AutocompleteMatch& match) {
136 return match.GetAdditionalInfo(kSuggestMetadataKey);
252 AutocompleteMatch match; local
253 match.provider = this;
254 match.contents.assign(l10n_util::GetStringUTF16(IDS_EMPTY_KEYWORD_VALUE));
255 match.contents_class.push_back(
257 match.keyword = providers_.default_provider();
258 match.allowed_to_be_default_match = true;
259 matches_.push_back(match);
333 // A verbatim match cannot be generated without this provider, causing errors
1108 AutocompleteMatch match; local
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 977 if (match(RHS, m_Add(m_Value(X), m_One())))
980 if (match(LHS, m_Add(m_Value(X), m_One()))) {
982 if (match(RHS, m_Xor(m_Value(Y), m_APInt(C1))))
985 if (match(X, m_Xor(m_Value(Y), m_APInt(C1)))) {
988 if (match(Y, m_Or(m_Value(Z), m_APInt(C2))) && (*C2 == ~(*C1))) {
991 } else if (match(Y, m_And(m_Value(Z), m_APInt(C2))) && (*C1 == *C2)) {
1005 if (match(RHS, m_Xor(m_Value(Y), m_APInt(C1))))
1011 if (match(LHS, m_Xor(m_Value(Y), m_APInt(C1))))
1013 if (match(Y, m_And(m_Value(Z), m_APInt(C2))) && *C1 == (*C2 + 1)) {
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/net/buildbot/
buildbot.py 126 match = self.file_name_regexp.match(filename)
127 if not match:
129 return (int(match.group("revision")), int(match.group("build_number")))
233 if not re.match('\D', revision_string) \
243 link_match = re.match(status_link_regexp, status_link['href'])
258 match = re.match("(?P<pending_builds>\d) pending", activity_lines[-1])
259 builder["pending_builds"] = int(match.group("pending_builds")) if match else
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
FileBasedSearchResultsPane.js 115 matchesCountSpan.textContent = WebInspector.UIString("(%d match)", searchMatchesCount);
150 lineNumberSpan.classList.add("search-match-line-number");
160 searchMatchElement.listItemElement.className = "search-match source-code";
196 contentSpan.className = "search-match-content";
198 WebInspector.highlightRangesWithStyleClass(contentSpan, matchRanges, "highlighted-match");
210 var match;
213 while ((regex.lastIndex < lineContent.length) && (match = regex.exec(lineContent)))
214 matchRanges.push(new WebInspector.SourceRange(match.index, match[0].length));
  /external/chromium_org/third_party/devscripts/
licensecheck.pl.vanilla 328 my $match;
344 $match = $1;
347 if ($match !~ m%^\s*$copyright_disindicator_regex%ix) {
349 $match =~ s/([,.])?\s*$//;
350 $match =~ s/$copyright_indicator_regex//igx;
351 $match =~ s/^\s+//;
352 $match =~ s/\s{2,}/ /g;
353 $match =~ s/\\@/@/g;
354 $copyright = $match;
  /external/apache-http/src/org/apache/http/conn/ssl/
AbstractVerifier.java 154 boolean match = false;
176 match = hostName.endsWith(cn.substring(1));
177 if(match && strictWithSubDomains) {
179 // allowed to match [a.b.foo.com]
180 match = countDots(hostName) == countDots(cn);
183 match = hostName.equals(cn);
185 if(match) {
189 if(!match) {
190 throw new SSLException("hostname in certificate didn't match: <" + host + "> !=" + buf);
  /external/chromium_org/build/android/gyp/
javac.py 37 match = regex.match(line)
38 start = match.start(color[0])
39 end = match.end(color[0])
46 if warning_re.match(line):
48 elif error_re.match(line):
50 elif marker_re.match(line):
163 help='A list of file patterns. If provided, only java files that match'
  /external/chromium_org/build/util/
lastchange.py 54 match = svn_url_regex.search(attrs['URL'])
55 if match:
56 url = match.group(2)
139 match = _GIT_SVN_ID_REGEX.search(output)
140 if match:
141 revision = match.group(2)
142 url_match = svn_url_regex.search(match.group(1))
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/w3c/
test_parser_unittest.py 42 <link rel="match" href="green-box-ref.xht" />
58 <link rel="match" href="green-box-ref.xht" />
59 <link rel="match" href="blue-box-ref.xht" />
60 <link rel="match" href="orange-box-ref.xht" />
83 <link rel="match" href="green-box-ref.xht" />
84 <link rel="match" href="blue-box-ref.xht" />
112 <link rel="match" href="../reference/green-box-ref.xht" />
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/common/xmlpool/
gen_xmlpool.py 99 # Expand matches. The first match is always a DESC or DESC_BEGIN match.
123 for match in matches[1:]:
125 match.expand (r'\3')), "utf-8"))).encode("utf-8")
126 print match.expand (r'\1"' + text + r'"\5')
162 matchENUM = reENUM .match (line)
163 matchDESC_END = reDESC_END.match (line)
178 matchDESC = reDESC .match (line)
179 matchDESC_BEGIN = reDESC_BEGIN.match (line)
  /external/mesa3d/src/mesa/drivers/dri/common/xmlpool/
gen_xmlpool.py 99 # Expand matches. The first match is always a DESC or DESC_BEGIN match.
123 for match in matches[1:]:
125 match.expand (r'\3')), "utf-8"))).encode("utf-8")
126 print match.expand (r'\1"' + text + r'"\5')
162 matchENUM = reENUM .match (line)
163 matchDESC_END = reDESC_END.match (line)
178 matchDESC = reDESC .match (line)
179 matchDESC_BEGIN = reDESC_BEGIN.match (line)
  /external/chromium_org/third_party/zlib/
deflate.c 18 * string matches are performed only when the previous match ends. So it
22 * is used to find longer strings when a small match has been found.
97 local void check_match OF((deflate_state *s, IPos start, IPos match,
119 ush good_length; /* reduce lazy search above this match length */
120 ush max_lazy; /* do not perform lazy search above this match length */
121 ush nice_length; /* quit search above this match length */
1145 register Bytef *match; \/* matched string *\/ local
1358 register Bytef *match; \/* matched string *\/ local
    [all...]
  /development/scripts/
stack_core.py 101 # should be removed or the regular expresssions will fail to match.
186 if self.trace_line.match(line):
188 match = self.trace_line.match(line)
190 code_addr, area, symbol_present, symbol_name) = match.groups()
226 if self.code_line.match(line):
230 if self.value_line.match(line):
232 match = self.value_line.match(line)
233 (unused_, addr, value, area, symbol_present, symbol_name) = match.groups(
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/extensions/
extension_icon_source.cc 72 ExtensionIconSet::MatchType match; member in struct:extensions::ExtensionIconSource::ExtensionIconRequest
78 ExtensionIconSet::MatchType match,
83 IconsInfo::GetIconURL(extension, icon_size, match) != GURL::EmptyGURL();
90 match,
137 request->extension.get(), request->size, request->match);
266 request->extension.get(), request->size, request->match);
325 ExtensionIconSet::MatchType match) {
331 request->match = match;
  /external/chromium_org/remoting/webapp/
server_log_entry.js 385 var match = new RegExp('Windows NT ([0-9\\.]*)').exec(s);
386 if (match && (match.length >= 2)) {
389 'os_version': match[1],
393 match = new RegExp('Linux ([a-zA-Z0-9_]*)').exec(s);
394 if (match && (match.length >= 2)) {
398 'cpu': match[1]
401 match = new RegExp('([a-zA-Z]*) Mac OS X ([0-9_]*)').exec(s);
402 if (match && (match.length >= 3))
    [all...]
  /external/chromium_org/testing/gtest/test/
gtest_xml_output_unittest.py 186 match = re.match(r'(\d+)-(\d\d)-(\d\d)T(\d\d):(\d\d):(\d\d)', date_time_str)
188 re.match,
191 year=int(match.group(1)), month=int(match.group(2)),
192 day=int(match.group(3)), hour=int(match.group(4)),
193 minute=int(match.group(5)), second=int(match.group(6)))
246 "'%s' exited with code %s, which doesn't match "
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
rbt_rule.cpp 217 * set, or otherwise can match multiple keys, the index value is -1.
222 // match any key.
237 * then it will match any key.
241 // If there is neither then we match any key; return true.
330 * Attempt a match and replacement at the given position. Return
331 * the degree of match between this rule and the given text. The
332 * degree of match may be mismatch, a partial match, or a full
333 * match. A mismatch means at least one character of the text
334 * does not match the context or key. A partial match means som
387 UMatchDegree match; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_test_format.c 162 boolean match = TRUE; local
170 match = FALSE;
174 match = FALSE;
179 match = FALSE;
183 if (!match) {
247 boolean match; local
253 match = TRUE;
264 match = FALSE;
267 if (!match) {
  /external/chromium_org/tools/deep_memory_profiler/lib/
policy.py 160 rule.stackfunction_pattern.match(stackfunction)) and
162 rule.stacksourcefile_pattern.match(stacksourcefile)) and
163 (not rule.typeinfo_pattern or rule.typeinfo_pattern.match(typeinfo))):
173 It uses |bucket_set| to match with backtraces. If |pageframe| is given,
204 rule.stackfunction_pattern.match(stackfunction)) and
206 rule.stacksourcefile_pattern.match(stacksourcefile)) and
208 rule.mappedpathname_pattern.match(region[1]['vma']['name'])) and
210 rule.mappedpermission_pattern.match(
242 rule.mappedpathname_pattern.match(region[1]['vma']['name'])) and
244 rule.mappedpermission_pattern.match(
    [all...]
  /external/gtest/test/
gtest_xml_output_unittest.py 186 match = re.match(r'(\d+)-(\d\d)-(\d\d)T(\d\d):(\d\d):(\d\d)', date_time_str)
188 re.match,
191 year=int(match.group(1)), month=int(match.group(2)),
192 day=int(match.group(3)), hour=int(match.group(4)),
193 minute=int(match.group(5)), second=int(match.group(6)))
246 "'%s' exited with code %s, which doesn't match "
    [all...]
  /external/icu/icu4c/source/i18n/
rbt_rule.cpp 217 * set, or otherwise can match multiple keys, the index value is -1.
222 // match any key.
237 * then it will match any key.
241 // If there is neither then we match any key; return true.
330 * Attempt a match and replacement at the given position. Return
331 * the degree of match between this rule and the given text. The
332 * degree of match may be mismatch, a partial match, or a full
333 * match. A mismatch means at least one character of the text
334 * does not match the context or key. A partial match means som
387 UMatchDegree match; local
    [all...]
  /external/iptables/extensions/
libxt_conntrack.c 74 "conntrack match options:\n"
76 " State(s) to match\n"
77 "[!] --ctproto proto Protocol to match; by number or name, e.g. \"tcp\"\n"
89 " Status(es) to match\n"
90 "[!] --ctexpire time[:time] Match remaining lifetime in seconds against\n"
355 "rule would never match protocol");
417 "never match protocol");
694 matchinfo_print(const void *ip, const struct xt_entry_match *match, int numeric, const char *optpfx)
696 const struct xt_conntrack_info *sinfo = (const void *)match->data;
908 conntrack_print_name_alias(const struct xt_entry_match *match)
    [all...]

Completed in 1521 milliseconds

<<11121314151617181920>>