Home
last modified time | relevance | path

Searched refs:matched (Results 1 – 25 of 206) sorted by relevance

123456789

/external/webkit/Tools/Scripts/webkitpy/common/checkout/
Ddiff_parser.py59 …atterns = (("^diff --git \w/(.+) \w/(?P<FilePath>.+)", lambda matched: "Index: " + matched.group('…
60 ("^new file.*", lambda matched: "\n"),
61 …("^index [0-9a-f]{7}\.\.[0-9a-f]{7} [0-9]{6}", lambda matched: "==================================…
62 … ("^--- \w/(?P<FilePath>.+)", lambda matched: "--- " + matched.group('FilePath') + "\n"),
63 … ("^\+\+\+ \w/(?P<FilePath>.+)", lambda matched: "+++ " + matched.group('FilePath') + "\n"))
66 matched = match(pattern, line)
67 if matched:
68 return conversion(matched)
/external/webkit/Tools/Scripts/webkitpy/style/checkers/
Dcpp.py188 matched = search(pattern, s)
189 if not matched:
191 start_match_index = matched.start(0)
192 end_match_index = matched.end(0)
1365 matched = search(pattern, line)
1366 if matched:
1367 function_call = matched.group(1) # look inside the parens for function calls
1752 matched = (search(r'[=/-]{4,}\s*$', line[commentend:])
1754 if not matched:
1781matched = search(r'[^<>=!\s](==|!=|\+=|-=|\*=|/=|/|\|=|&=|<<=|>>=|<=|>=|\|\||\||&&|>>|<<)[^<>=!\s]…
[all …]
Dtest_expectations.py103 matched = self._output_regex.match(error)
104 if matched:
105 lineno, message = matched.group('line', 'message')
/external/grub/docs/
Dhelp2man353 my $matched = '';
359 $matched .= $& if %append;
369 $matched .= $& if %append;
382 $matched .= $& if %append;
390 $matched .= $& if %append;
398 $matched .= $& if %append;
407 $matched .= $& if %append;
415 $matched .= $& if %append;
438 if ($matched =~ $pat)
/external/webkit/Source/WebCore/platform/image-decoders/
DImageDecoder.cpp269 const int* matched = std::lower_bound(dataStart + searchStart, dataEnd, valueToMatch); in getScaledValue() local
272 return matched != dataEnd && *matched == valueToMatch ? matched - dataStart : -1; in getScaledValue()
274 …return matched != dataEnd && *matched == valueToMatch ? matched - dataStart : matched - dataStart … in getScaledValue()
277 return matched != dataEnd ? matched - dataStart : -1; in getScaledValue()
/external/sqlite/android/
DOldPhoneNumberUtils.cpp198 int matched; in phone_number_compare_loose() local
216 matched = 0; in phone_number_compare_loose()
242 ia--; ib--; matched++; in phone_number_compare_loose()
246 if (matched < MIN_MATCH) { in phone_number_compare_loose()
252 if (effectiveALen == effectiveBLen && effectiveALen == matched) { in phone_number_compare_loose()
260 if (matched >= MIN_MATCH && (ia < 0 || ib < 0)) { in phone_number_compare_loose()
/external/oprofile/libregex/
Dop_regex.cpp229 regmatch_t const & matched = get_match(match, in do_replace() local
231 if (matched.rm_so == -1 && in do_replace()
232 matched.rm_eo == -1) { in do_replace()
234 } else if (matched.rm_so == -1 || in do_replace()
235 matched.rm_eo == -1) { in do_replace()
239 inserted += str.substr(matched.rm_so, in do_replace()
240 matched.rm_eo - matched.rm_so); in do_replace()
/external/chromium-trace/trace-viewer/src/
Dtimeline_filter.js29 var matched = [];
32 matched.push(slices[i]);
34 return matched;
/external/regex-re2/re2/
Donepass.cc251 bool matched = false; in SearchOnePass() local
302 matched = true; in SearchOnePass()
330 matched = true; in SearchOnePass()
335 if (!matched) in SearchOnePass()
424 bool matched = false; in IsOnePass() local
463 if (matched) in IsOnePass()
537 if (matched) { in IsOnePass()
545 matched = true; in IsOnePass()
Dbitstate.cc143 bool matched = false; in TrySearch() local
268 matched = true; in TrySearch()
289 return matched; in TrySearch()
Ddfa.cc1293 bool matched = false; in InlinedSearchLoop() local
1297 matched = true; in InlinedSearchLoop()
1397 return matched; in InlinedSearchLoop()
1406 matched = true; in InlinedSearchLoop()
1481 matched = true; in InlinedSearchLoop()
1488 return matched; in InlinedSearchLoop()
1865 bool matched = dfa->Search(text, context, anchored, in SearchDFA() local
1870 if (!matched) in SearchDFA()
/external/chromium/third_party/libjingle/source/talk/session/phone/
Drtpdump.cc154 bool matched = (0 == first_line.find("#!rtpplay1.0 ")); in CheckFirstLine() local
159 matched &= (pos != std::string::npos && pos < first_line.size() - 1); in CheckFirstLine()
160 for (++pos; pos < first_line.size() && matched; ++pos) { in CheckFirstLine()
161 matched &= (0 != isdigit(first_line[pos])); in CheckFirstLine()
164 return matched; in CheckFirstLine()
/external/genext2fs/m4/
Dac_func_scanf_can_malloc.m425 int matched = sscanf(scan_this, "%as", &u);
26 if(matched < 1) return 1; /* shouldn't happens */
/external/chromium/net/base/
Ddnssec_unittest.cc635 unsigned matched = 0; in MatchMap() local
646 matched++; in MatchMap()
649 if (m.size() != matched) in MatchMap()
/external/iptables/extensions/
Dlibxt_osf.man24 0 - Log all matched or unknown signatures
28 2 - Log all known matched signatures
Dlibxt_RATEEST.man5 Count matched packets into the pool referred to by \fIname\fP, which is freely
/external/llvm/test/CodeGen/ARM/
Dlog2_not_readnone.ll3 ; Log2 and exp2 are string-matched to intrinsics. If they are not declared
/external/valgrind/main/docs/internals/
D3_5_BUGSTATUS.txt12 r10881 Ashley Mis-matched thread tags in helgrind xml
/external/llvm/test/CodeGen/X86/
Dlog2_not_readnone.ll3 ; Log2 and exp2 are string-matched to intrinsics. If they are not declared
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
DRewriteRuleNodeStream.as4 /** Queues up nodes matched on left side of -> in a tree parser. This is
/external/chromium/chrome/browser/renderer_host/
Dgtk_key_bindings_handler.cc38 bool matched = !edit_commands_.empty(); in Match() local
41 return matched; in Match()
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
DDbg.stg42 -(BOOL) evalPredicate:(NSString *)predicate matched:(BOOL)result;<\n>
106 -(BOOL) evalPredicate:(NSString *)predicate matched:(BOOL)result
108 [debugListener semanticPredicate:predicate matched:result];
/external/libxml2/
Dc14n.c1262 int matched = 0; in xmlC14NProcessAttrsAxis() local
1265 … if((!matched) && (xml_lang_attr == NULL) && xmlStrEqual(attr->name, BAD_CAST "lang")) { in xmlC14NProcessAttrsAxis()
1267 matched = 1; in xmlC14NProcessAttrsAxis()
1269 … if((!matched) && (xml_space_attr == NULL) && xmlStrEqual(attr->name, BAD_CAST "space")) { in xmlC14NProcessAttrsAxis()
1271 matched = 1; in xmlC14NProcessAttrsAxis()
1275 … if((!matched) && (xml_base_attr == NULL) && xmlStrEqual(attr->name, BAD_CAST "base")) { in xmlC14NProcessAttrsAxis()
1277 matched = 1; in xmlC14NProcessAttrsAxis()
1281 if((!matched) && xmlC14NIsVisible(ctx, attr, cur)) { in xmlC14NProcessAttrsAxis()
/external/llvm/lib/Support/
Dregengine.inc292 - dissect - figure out what matched what, no back references
301 const char *sp; /* start of string matched by it */
302 const char *stp; /* string matched by it cannot pass here */
307 const char *ssp; /* start of string matched by subsubRE */
308 const char *sep; /* end of string matched by subsubRE */
328 /* figure out what it matched */
396 break; /* failed or matched null */
433 break; /* it matched all of it */
480 - backref - figure out what matched what, figuring in back references
488 const char *sp; /* start of string matched by it */
[all …]
/external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
DSDL_fbvideo.c877 int matched; in choose_fbmodes_mode() local
881 matched = 0; in choose_fbmodes_mode()
887 (!matched || (vinfo->bits_per_pixel == cinfo.bits_per_pixel)) ) { in choose_fbmodes_mode()
895 if ( matched ) { in choose_fbmodes_mode()
898 matched = 1; in choose_fbmodes_mode()
903 return(matched); in choose_fbmodes_mode()
908 int matched; in choose_vesa_mode() local
912 matched = 0; in choose_vesa_mode()
931 matched = 1; in choose_vesa_mode()
935 return(matched); in choose_vesa_mode()

123456789