HomeSort by relevance Sort by last modified time
    Searched refs:matched (Results 1 - 25 of 82) sorted by null

1 2 3 4

  /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/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
Dbg.stg 42 -(BOOL) evalPredicate:(NSString *)predicate matched:(BOOL)result;<\n>
106 -(BOOL) evalPredicate:(NSString *)predicate matched:(BOOL)result
108 [debugListener semanticPredicate:predicate matched:result];
  /ndk/sources/host-tools/make-3.81/glob/
fnmatch.c 310 /* `/' cannot be matched. */
330 goto matched;
374 goto matched;
388 goto matched;
398 goto matched;
413 goto matched;
427 matched:
428 /* Skip the rest of the [...] that already matched. */
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
RewriteRuleNodeStream.as 4 /** Queues up nodes matched on left side of -> in a tree parser. This is
  /external/regex-re2/re2/
onepass.cc 217 // because we use it to tell if we matched.
251 bool matched = false; local
302 matched = true;
330 matched = true;
335 if (!matched)
424 bool matched = false; local
463 if (matched)
537 if (matched) {
545 matched = true;
bitstate.cc 143 bool matched = false; local
268 matched = true;
289 return matched;
  /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/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRDebugEventListener.h 68 /** An input token was consumed; matched by any kind of element.
69 * Trigger after the token was matched by things like match(), matchAny().
74 * Trigger after the token was matched by things like match(), matchAny().
191 * but not matched to anything in grammar. Anything between
197 - (void) semanticPredicate:(NSString *)predicate matched:(BOOL)result;
ANTLRDebugEventProxy.h 93 - (void) semanticPredicate:(NSString *)predicate matched:(BOOL)result;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRDebugEventListener.h 68 /** An input token was consumed; matched by any kind of element.
69 * Trigger after the token was matched by things like match(), matchAny().
74 * Trigger after the token was matched by things like match(), matchAny().
191 * but not matched to anything in grammar. Anything between
197 - (void) semanticPredicate:(NSString *)predicate matched:(BOOL)result;
ANTLRDebugEventProxy.h 93 - (void) semanticPredicate:(NSString *)predicate matched:(BOOL)result;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRDebugEventListener.h 68 /** An input token was consumed; matched by any kind of element.
69 * Trigger after the token was matched by things like match(), matchAny().
74 * Trigger after the token was matched by things like match(), matchAny().
191 * but not matched to anything in grammar. Anything between
197 - (void) semanticPredicate:(NSString *)predicate matched:(BOOL)result;
ANTLRDebugEventProxy.h 93 - (void) semanticPredicate:(NSString *)predicate matched:(BOOL)result;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRDebugEventListener.h 68 /** An input token was consumed; matched by any kind of element.
69 * Trigger after the token was matched by things like match(), matchAny().
74 * Trigger after the token was matched by things like match(), matchAny().
191 * but not matched to anything in grammar. Anything between
197 - (void) semanticPredicate:(NSString *)predicate matched:(BOOL)result;
ANTLRDebugEventProxy.h 93 - (void) semanticPredicate:(NSString *)predicate matched:(BOOL)result;
  /packages/inputmethods/LatinIME/native/jni/src/
proximity_info.cpp 418 const bool matched = (currentChars[j] == baseLowerC || currentChars[j] == c); local
419 if (matched) {
432 const bool matched = (currentChars[j] == baseLowerC || currentChars[j] == c); local
433 if (matched) {
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
regex_grep_matcher.h 62 { _M_results.at(__i).matched = __is_matched; }

Completed in 1330 milliseconds

1 2 3 4