Searched refs:matched (Results 1 - 25 of 33) sorted by relevance

12

/external/webkit/Tools/Scripts/webkitpy/common/checkout/
H A Ddiff_parser.py59 conversion_patterns = (("^diff --git \w/(.+) \w/(?P<FilePath>.+)", lambda matched: "Index: " + matched.group('FilePath') + "\n"),
60 ("^new file.*", lambda matched: "\n"),
61 ("^index [0-9a-f]{7}\.\.[0-9a-f]{7} [0-9]{6}", lambda matched: "===================================================================\n"),
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
[all...]
/external/webkit/Source/WebCore/platform/image-decoders/
H A DImageDecoder.cpp269 const int* matched = std::lower_bound(dataStart + searchStart, dataEnd, valueToMatch); local
272 return matched != dataEnd && *matched == valueToMatch ? matched - dataStart : -1;
274 return matched != dataEnd && *matched == valueToMatch ? matched - dataStart : matched - dataStart - 1;
277 return matched != dataEnd ? matched
[all...]
/external/sqlite/android/
H A DOldPhoneNumberUtils.cpp198 int matched; local
216 matched = 0;
242 ia--; ib--; matched++;
246 if (matched < MIN_MATCH) {
250 // if the number of dialable chars in a and b match, but the matched chars < MIN_MATCH,
252 if (effectiveALen == effectiveBLen && effectiveALen == matched) {
259 // At least one string has matched completely;
260 if (matched >= MIN_MATCH && (ia < 0 || ib < 0)) {
/external/webkit/Tools/Scripts/webkitpy/style/checkers/
H A Dcpp.py188 matched = search(pattern, s)
189 if not matched:
191 start_match_index = matched.start(0)
192 end_match_index = matched.end(0)
208 # Start with the given row and trim off everything past what may be matched.
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
[all...]
H A Dtest_expectations.py103 matched = self._output_regex.match(error)
104 if matched:
105 lineno, message = matched.group('line', 'message')
/external/oprofile/libregex/
H A Dop_regex.cpp229 regmatch_t const & matched = get_match(match, local
231 if (matched.rm_so == -1 &&
232 matched.rm_eo == -1) {
234 } else if (matched.rm_so == -1 ||
235 matched.rm_eo == -1) {
239 inserted += str.substr(matched.rm_so,
240 matched.rm_eo - matched.rm_so);
/external/chromium/third_party/libjingle/source/talk/session/phone/
H A Drtpdump.cc154 bool matched = (0 == first_line.find("#!rtpplay1.0 ")); local
159 matched &= (pos != std::string::npos && pos < first_line.size() - 1);
160 for (++pos; pos < first_line.size() && matched; ++pos) {
161 matched &= (0 != isdigit(first_line[pos]));
164 return matched;
/external/chromium/chrome/browser/renderer_host/
H A Dgtk_key_bindings_handler.cc38 bool matched = !edit_commands_.empty(); local
41 return matched;
/external/markdown/markdown/
H A Dtreeprocessors.py93 data, matched, startIndex = self.__applyPattern(
96 if not matched:
/external/libvpx/examples/includes/
H A Dvp8_doc_tools.php50 * dimension is the full matched string (with delimiter);
/external/antlr/src/org/antlr/runtime/tree/
H A DTreeWizard.java319 boolean matched = _parse(t, tpattern, labels);
320 return matched;
330 * in tree matched against nodes in pattern with labels.
/external/qemu/distrib/sdl-1.2.12/src/video/fbcon/
H A DSDL_fbvideo.c800 int matched; local
804 matched = 0;
810 (!matched || (vinfo->bits_per_pixel == cinfo.bits_per_pixel)) ) {
818 if ( matched ) {
821 matched = 1;
826 return(matched);
831 int matched; local
835 matched = 0;
854 matched = 1;
858 return(matched);
[all...]
/external/openssl/crypto/x509v3/
H A Dpcy_tree.c315 int i, matched = 0; local
324 matched = 1;
327 if (!matched && last->anyPolicy)
413 /* If no policy mapping: matched if one child present */
422 /* If mapping: matched if one child per expected policy set */
/external/valgrind/main/exp-bbv/tests/arm-linux/
H A Dll.S269 cmpeq r5,r1 @ if first byte matched, comp this one
271 cmpeq r5,r2 @ if first two matched, comp this one
272 beq find_colon @ if all 3 matched, we are found
/external/grub/docs/
H A 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;
433 # Check if matched paragraph contains /pat/.
438 if ($matched
[all...]
/external/libvpx/examples/
H A Dgen_example_doxy.php142 * dimension is the full matched string (with delimiter);
/external/protobuf/gtest/src/
H A Dgtest-death-test.cc468 const bool matched = RE::PartialMatch(error_message.c_str(), *regex()); local
469 if (matched) {
/external/mksh/src/
H A Dmisc.c668 int matched = 0; local
674 matched = 1;
680 if (!matched &&
/external/icu4c/common/
H A Dtriedict.cpp176 int matched; local
177 matched = search(fIter, length, NULL, count, 0, parent, pMatched);
179 while (matched++ < length) {
/external/libvpx/examples/includes/geshi/
H A Dgeshi.php135 matched search to use as a replacement */
140 matched search to put before the replacement */
143 matched search to put after the replacement */
1213 * @param int A constant specifying what to do with matched keywords
1945 //All this formats are matched case-insensitively!
2340 // we have already matched something
2342 // this comment is never matched
2448 // we have already matched something
2450 // this comment is never matched
2737 // If we haven't matched
[all...]
/external/chromium/testing/gtest/src/
H A Dgtest-death-test.cc515 const bool matched = RE::PartialMatch(error_message.c_str(), *regex()); local
516 if (matched) {
/external/llvm/utils/unittest/googletest/
H A Dgtest-death-test.cc515 const bool matched = RE::PartialMatch(error_message.c_str(), *regex()); local
516 if (matched) {
/external/dnsmasq/src/
H A Drfc2131.c607 int i, matched = 0; local
614 matched = 1;
618 matched = 1;
625 matched = 1;
635 if (matched)
/external/dbus/bus/
H A Dsignals.c778 "Argument %d matched more than once in match rule\n", key);
1766 _dbus_verbose ("Rule matched\n");
2206 dbus_bool_t matched; local
2212 matched = match_rule_matches (rule, NULL, NULL, message, 0);
2214 if (matched != expected_to_match)
/external/llvm/lib/Support/
H A 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 b
[all...]

Completed in 2035 milliseconds

12