/external/webkit/Tools/Scripts/webkitpy/common/checkout/ |
diff_parser.py | 59 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/ |
ImageDecoder.cpp | 269 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 - dataStart : -1 [all...] |
/external/sqlite/android/ |
OldPhoneNumberUtils.cpp | 198 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)) {
|
/libcore/luni/src/main/java/java/util/concurrent/ |
CopyOnWriteArraySet.java | 339 // Mark matched elements to avoid re-checking 340 boolean[] matched = new boolean[len]; 347 if (!matched[i] && eq(x, elements[i])) { 348 matched[i] = true;
|
/ndk/sources/host-tools/sed-4.2.1/build-aux/ |
help2man | 393 my $matched = ''; 399 $matched .= $& if %append; 409 $matched .= $& if %append; 422 $matched .= $& if %append; 430 $matched .= $& if %append; 438 $matched .= $& if %append; 447 $matched .= $& if %append; 455 $matched .= $& if %append; 473 # Check if matched paragraph contains /pat/. 478 if ($matched =~ $pat [all...] |
/external/webkit/Tools/Scripts/webkitpy/style/checkers/ |
cpp.py | 188 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. [all...] |
test_expectations.py | 103 matched = self._output_regex.match(error) 104 if matched: 105 lineno, message = matched.group('line', 'message')
|
/external/oprofile/libregex/ |
op_regex.cpp | 229 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);
|
/frameworks/base/services/tests/servicestests/src/com/android/server/ |
AccessibilityManagerTest.java | 204 * @param matched The event to check. 205 * @return True if expectations are matched. 207 private static AccessibilityEvent eqAccessibilityEvent(AccessibilityEvent matched) { 208 reportMatcher(new AccessibilityEventMather(matched)); 233 public boolean matches(Object matched) { 234 if (!(matched instanceof AccessibilityEvent)) { 237 AccessibilityEvent receivedEvent = (AccessibilityEvent) matched; 253 public boolean matches(Object matched) { 254 if (!(matched instanceof IAccessibilityManagerClient)) {
|
/external/chromium/third_party/libjingle/source/talk/session/phone/ |
rtpdump.cc | 154 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/ |
gtk_key_bindings_handler.cc | 38 bool matched = !edit_commands_.empty(); local 41 return matched;
|
/external/markdown/markdown/ |
treeprocessors.py | 93 data, matched, startIndex = self.__applyPattern( 96 if not matched:
|
/packages/inputmethods/LatinIME/native/src/ |
proximity_info.cpp | 254 const bool matched = (currentChars[j] == baseLowerC || currentChars[j] == c); local 255 if (matched) {
|
/external/antlr/src/org/antlr/runtime/tree/ |
TreeWizard.java | 319 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/ |
SDL_fbvideo.c | 800 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...] |
/frameworks/base/core/java/com/google/android/util/ |
AbstractMessageParser.java | 1180 private boolean matched; field in class:AbstractMessageParser.Format [all...] |
/external/openssl/crypto/x509v3/ |
pcy_tree.c | 315 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/ |
ll.S | 269 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
|
/frameworks/base/telephony/java/android/telephony/ |
PhoneNumberUtils.java | 454 int matched; local 466 matched = 0; 492 ia--; ib--; matched++; 496 if (matched < MIN_MATCH) { 501 // if the number of dialable chars in a and b match, but the matched chars < MIN_MATCH, 503 if (effectiveALen == effectiveBLen && effectiveALen == matched) { 510 // At least one string has matched completely; 511 if (matched >= MIN_MATCH && (ia < 0 || ib < 0)) { [all...] |
/ndk/sources/host-tools/sed-4.2.1/sed/ |
execute.c | 1225 size_t matched = regs.end[0] - regs.start[0]; 1240 if ((matched > 0 || count == 0 || offset > last_end) 1255 if (matched == 0) 1258 matched = 1; 1263 str_append(&s_accum, line.active + offset, matched); 1266 /* Start after the match. last_end is the real end of the matched 1268 matched the empty string. */ 1269 start = offset + matched; 1218 size_t matched = regs.end[0] - regs.start[0]; local [all...] |
/external/webkit/LayoutTests/dom/html/level1/core/ |
hc_documentcreateelementcasesensitive.js | 88 values and checked the node names to see if they matched expectations.
|
/external/webkit/LayoutTests/dom/xhtml/level1/core/ |
hc_documentcreateelementcasesensitive.js | 88 values and checked the node names to see if they matched expectations.
|
/dalvik/vm/analysis/ |
Optimize.cpp | 170 bool matched = true; local 358 matched = false; 369 matched = false; 379 if (!matched && !essentialOnly) { [all...] |
/external/grub/docs/ |
help2man | 353 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 =~ $pat [all...] |
/external/v8/test/mjsunit/ |
string-match.js | 43 // Returns array of matched strings.
|