/external/skia/gm/viewer/ |
module.js | 55 var matched = imageNameRegex.exec(imageName); 57 test: matched[1], config: matched[2],
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.alg/re.alg.match/ |
basic.pass.cpp | 38 assert(!m.prefix().matched); 41 assert(!m.suffix().matched); 53 assert(!m.prefix().matched); 56 assert(!m.suffix().matched); 94 assert(!m.prefix().matched); 97 assert(!m.suffix().matched); 109 assert(!m.prefix().matched); 112 assert(!m.suffix().matched); 134 assert(!m.prefix().matched); 137 assert(!m.suffix().matched); [all...] |
ecma.pass.cpp | 32 assert(!m.prefix().matched); 35 assert(!m.suffix().matched); 47 assert(!m.prefix().matched); 50 assert(!m.suffix().matched); 88 assert(!m.prefix().matched); 91 assert(!m.suffix().matched); 103 assert(!m.prefix().matched); 106 assert(!m.suffix().matched); 127 assert(!m.prefix().matched); 130 assert(!m.suffix().matched); [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.alg/re.alg.search/ |
ecma.pass.cpp | 32 assert(!m.prefix().matched); 35 assert(!m.suffix().matched); 47 assert(!m.prefix().matched); 50 assert(!m.suffix().matched); 69 assert(m.prefix().matched); 72 assert(!m.suffix().matched); 91 assert(m.prefix().matched); 94 assert(m.suffix().matched); 106 assert(!m.prefix().matched); 109 assert(!m.suffix().matched); [all...] |
awk.pass.cpp | 32 assert(!m.prefix().matched); 35 assert(!m.suffix().matched); 47 assert(!m.prefix().matched); 50 assert(!m.suffix().matched); 69 assert(m.prefix().matched); 72 assert(!m.suffix().matched); 91 assert(m.prefix().matched); 94 assert(m.suffix().matched); 106 assert(!m.prefix().matched); 109 assert(!m.suffix().matched); [all...] |
extended.pass.cpp | 32 assert(!m.prefix().matched); 35 assert(!m.suffix().matched); 47 assert(!m.prefix().matched); 50 assert(!m.suffix().matched); 69 assert(m.prefix().matched); 72 assert(!m.suffix().matched); 91 assert(m.prefix().matched); 94 assert(m.suffix().matched); 106 assert(!m.prefix().matched); 109 assert(!m.suffix().matched); [all...] |
basic.pass.cpp | 38 assert(!m.prefix().matched); 41 assert(!m.suffix().matched); 53 assert(!m.prefix().matched); 56 assert(!m.suffix().matched); 75 assert(m.prefix().matched); 78 assert(!m.suffix().matched); 97 assert(m.prefix().matched); 100 assert(m.suffix().matched); 112 assert(!m.prefix().matched); 115 assert(!m.suffix().matched); [all...] |
/external/chromium_org/tools/find_runtime_symbols/ |
static_symbols.py | 176 matched = _READELF_SECTION_HEADER_PATTER.match(line) 177 if matched: 179 int(matched.group(1), 10), # number 180 matched.group(2), # name 181 matched.group(3), # stype 182 int(matched.group(4), 16), # address 183 int(matched.group(5), 16), # offset 184 int(matched.group(6), 16), # size 185 matched.group(7), # es 186 matched.group(8), # fl [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)) {
|
/external/chromium_org/third_party/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...] |
/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;
|
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_suppressions.h | 44 void GetMatched(InternalMmapVector<Suppression *> *matched);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.submatch/re.submatch.op/ |
stream.pass.cpp | 32 sm.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/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
|
/external/chromium_org/tools/deep_memory_profiler/lib/ |
dump.py | 70 matched = self._PATH_PATTERN.match(path) 71 self._pid = int(matched.group(2)) 72 self._count = int(matched.group(3)) 314 matched = self._HOOK_PATTERN.match(self._lines[ln]) 315 if not matched: 321 if matched.group(7) == 'hooked': 322 submatched = self._HOOKED_PATTERN.match(matched.group(8)) 324 submatched = self._OLD_HOOKED_PATTERN.match(matched.group(8)) 325 elif matched.group(7) == 'unhooked': 326 submatched = self._UNHOOKED_PATTERN.match(matched.group(8) [all...] |
/frameworks/base/core/jni/ |
android_net_TrafficStats.cpp | 88 int matched = sscanf(buffer, "%31s %llu %llu %llu %llu " local 92 if (matched >= 5) { 93 if (matched == 7) { 101 if (matched == 7) {
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.submatch/ |
types.pass.cpp | 22 // bool matched; 43 sm.matched = false; 56 sm.matched = false;
|
/external/chromium_org/chrome/test/functional/ |
youtube.py | 68 matched = re.search('droppedFrames=([\d\.]+)', video_data) 69 if matched: 70 return int(matched.group(1)) 81 matched = re.search('videoFps=([\d\.]+)', video_data) 82 if matched: 83 return int(matched.group(1))
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/ |
cpp.py | 178 matched = search(pattern, s) 179 if not matched: 181 start_match_index = matched.start(0) 182 end_match_index = matched.end(0) 195 # Start with the given row and trim off everything before what should be matched. 221 # Start with the given row and trim off everything past what may be matched. [all...] |