/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)) {
|
/external/regex-re2/re2/testing/ |
dfa_test.cc | 208 bool matched, failed = false; local 209 matched = prog->SearchDFA(match, NULL, 213 CHECK(matched); 214 matched = prog->SearchDFA(no_match, NULL, 218 CHECK(!matched); 243 bool matched, failed = false; local 244 matched = prog_->SearchDFA(match_, NULL, 248 CHECK(matched); 249 matched = prog_->SearchDFA(no_match_, NULL, 253 CHECK(!matched); 333 bool matched = prog->SearchDFA(t.text, NULL, Prog::kUnanchored, Prog::kFirstMatch, NULL, &failed, NULL); local [all...] |
tester.cc | 81 bool matched; // found a match member in struct:re2::TestInstance::Result 305 result->matched = 316 result->matched = 327 result->matched = prog_->SearchDFA(text, context, anchor, kind_, NULL, 336 result->matched = 341 if (result->matched) { 348 result->matched = false; 362 result->matched = prog_->SearchOnePass(text, context, anchor, kind_, 372 result->matched = prog_->SearchBitState(text, context, anchor, kind_, 393 result->matched = re2_->Match(context [all...] |
/libcore/luni/src/main/java/java/util/concurrent/ |
CopyOnWriteArraySet.java | 338 // Mark matched elements to avoid re-checking 339 boolean[] matched = new boolean[len]; 346 if (!matched[i] && eq(x, elements[i])) { 347 matched[i] = true;
|
/ndk/sources/cxx-stl/llvm-libc++/test/re/re.submatch/re.submatch.op/ |
stream.pass.cpp | 32 sm.matched = true;
|
compare.pass.cpp | 228 sm1.matched = true; 232 sm2.matched = 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 | 214 * @param matched The event to check. 215 * @return True if expectations are matched. 217 private static AccessibilityEvent eqAccessibilityEvent(AccessibilityEvent matched) { 218 reportMatcher(new AccessibilityEventMather(matched)); 243 public boolean matches(Object matched) { 244 if (!(matched instanceof AccessibilityEvent)) { 247 AccessibilityEvent receivedEvent = (AccessibilityEvent) matched; 263 public boolean matches(Object matched) { 264 if (!(matched instanceof IAccessibilityManagerClient)) {
|
/frameworks/compile/mclinker/lib/Object/ |
SectionMap.cpp | 56 if (matched(*name_hash, pFrom, pHash)) { 68 if (matched(*name_hash, pFrom, pHash)) { 91 bool SectionMap::matched(const NamePair& pNamePair, function in class:SectionMap
|
/frameworks/base/core/jni/ |
android_net_TrafficStats.cpp | 89 int matched = sscanf(buffer, "%31s %llu %llu %llu %llu " local 93 if (matched >= 5) { 94 if (matched == 7) { 102 if (matched == 7) {
|
/ndk/sources/cxx-stl/llvm-libc++/test/re/re.submatch/ |
types.pass.cpp | 22 // bool matched; 43 sm.matched = false; 56 sm.matched = false;
|
/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;
|
/frameworks/compile/mclinker/include/mcld/Object/ |
SectionMap.h | 80 bool matched(const NamePair& pNamePair,
|
/packages/inputmethods/LatinIME/native/jni/src/ |
proximity_info_state.cpp | 225 const bool matched = (currentCodePoints[j] == baseLowerC local 227 if (matched) { 240 const bool matched = (currentCodePoints[j] == baseLowerC local 242 if (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;
|
/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;
|
/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;
|
/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;
|