/external/autotest/server/site_tests/firmware_ECHash/ |
firmware_ECHash.py | 44 matched = pattern.match(line) 45 if matched: 46 return matched.group(1)
|
/external/autotest/server/site_tests/firmware_ECThermal/ |
firmware_ECThermal.py | 86 matched = pattern.match(line) 87 if matched is not None: 89 setting.append(int(matched.group(1)) - 273) 182 matched = re.match('Sensor name: (.*)', line) 183 if matched is not None and matched.group(1) == 'PECI': 207 matched = pattern.match(line) 208 if matched is not None: 209 return int(matched.group(1)) - 273 327 matched = pattern.match(line [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...] |
/external/autotest/client/site_tests/security_AccountsBaseline/ |
security_AccountsBaseline.py | 32 matched = True 34 matched = False 39 matched = False 43 return matched
|
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_suppressions.h | 43 void GetMatched(InternalMmapVector<Suppression *> *matched);
|
/external/libcxx/test/std/re/re.submatch/re.submatch.op/ |
stream.pass.cpp | 32 sm.matched = true;
|
/libcore/luni/src/main/java/java/util/concurrent/ |
CopyOnWriteArraySet.java | 269 // Mark matched elements to avoid re-checking 270 final boolean[] matched = new boolean[len]; 272 // j is the largest int with matched[i] true for { i | 0 <= i < j } 276 if (!matched[i] && Objects.equals(x, snapshot[i])) { 277 matched[i] = true; 279 do { j++; } while (j < len && matched[j]);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.submatch/re.submatch.op/ |
stream.pass.cpp | 32 sm.matched = true;
|
/external/autotest/server/cros/faft/utils/ |
faft_checkers.py | 52 matched = re.match(pattern, line.strip()) 53 if not matched: 56 (name, value) = (matched.group(1), matched.group(2)) 63 """Check the crossystem values matched. 66 this function check the current crossystem values are matched or not. 70 @return: True if the crossystem value matched; otherwise, False. 163 @return: True if the correct boot firmware fields matched. Otherwise, 183 """Check the flags from VbSharedData matched. 186 are matched the given value [all...] |
/external/jetty/src/java/org/eclipse/jetty/util/ |
PatternMatcher.java | 28 public abstract void matched (URI uri) throws Exception; method in class:PatternMatcher 100 matched(uris[i]);
|
/external/valgrind/helgrind/tests/ |
filter_xml | 101 my $matched = quotemeta($1); 102 $line =~ s/$matched/$patterns{$key}/g;
|
/bionic/tests/ |
pty_test.cpp | 78 std::atomic<bool> matched; member in struct:PtyReader_28979140_Arg 97 arg->matched = false; 128 arg.matched = true; 144 ASSERT_TRUE(arg.matched) << "failed at count = " << counter; 149 ASSERT_TRUE(arg.matched);
|
/frameworks/base/packages/Keyguard/src/com/android/keyguard/ |
KeyguardAbsKeyInputView.java | 131 onPasswordChecked(userId, false /* matched */, 0, false /* not valid - too short */); 143 onPasswordChecked(userId, true /* matched */, 0 /* timeoutMs */, 148 public void onChecked(boolean matched, int timeoutMs) { 151 if (!matched) { 152 onPasswordChecked(userId, false /* matched */, timeoutMs, 159 private void onPasswordChecked(int userId, boolean matched, int timeoutMs, 162 if (matched) { 181 resetPasswordText(true /* animate */, !matched /* announce deletion if no match */);
|
/hardware/bsp/intel/peripheral/libupm/doxy/node/generators/yuidoc/ |
helper.js | 31 var matched = classDescription.match(pattern); 32 if (matched) { 33 return (matched[0].replace(label, '')).trim();
|
/prebuilts/go/darwin-x86/src/regexp/ |
example_test.go | 29 matched, err := regexp.MatchString("foo.*", "seafood") 30 fmt.Println(matched, err) 31 matched, err = regexp.MatchString("bar.*", "seafood") 32 fmt.Println(matched, err) 33 matched, err = regexp.MatchString("a(b", "seafood") 34 fmt.Println(matched, err)
|
/prebuilts/go/linux-x86/src/regexp/ |
example_test.go | 29 matched, err := regexp.MatchString("foo.*", "seafood") 30 fmt.Println(matched, err) 31 matched, err = regexp.MatchString("bar.*", "seafood") 32 fmt.Println(matched, err) 33 matched, err = regexp.MatchString("a(b", "seafood") 34 fmt.Println(matched, err)
|
/frameworks/base/core/jni/ |
android_net_TrafficStats.cpp | 89 int matched = sscanf(buffer, "%31s %" SCNu64 " %" SCNu64 " %" SCNu64 local 93 if (matched >= 5) { 94 if (matched == 7) { 102 if (matched == 7) {
|
/libcore/ojluni/src/main/java/sun/security/util/ |
Debug.java | 203 String matched = matcher.group(); local 204 target.append(matched.replaceFirst(keyReg, keyStr)); 207 // delete the matched sequence 227 String matched = matcher.group(); local 228 target.append(matched.replaceFirst(keyReg, keyStr)); 231 // delete the matched sequence
|
/external/libcxx/test/std/re/re.submatch/ |
types.pass.cpp | 22 // bool matched; 43 sm.matched = false; 56 sm.matched = false;
|
/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;
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/diff/ |
fsuse.py | 46 self.added_fs_uses, self.removed_fs_uses, matched = self._set_diff( 52 for left_rule, right_rule in matched:
|
genfscon.py | 46 self.added_genfscons, self.removed_genfscons, matched = self._set_diff( 52 for left_rule, right_rule in matched:
|
/external/autotest/server/site_tests/firmware_Mosys/ |
firmware_Mosys.py | 138 matched = pattern.match(line) 139 if matched: 140 actual = matched.group(1) 163 matched = pattern.search(line) 164 if matched: 165 actual = matched.group(1)
|
/external/icu/icu4c/source/common/ |
uloc_keytype.cpp | 502 UBool matched = FALSE; local 504 matched = isSpecialTypeCodepoints(type); 506 if (!matched && keyData->specialTypes & SPECIALTYPE_REORDER_CODE) { 507 matched = isSpecialTypeReorderCode(type); 509 if (matched) { 544 UBool matched = FALSE; local 546 matched = isSpecialTypeCodepoints(type); 548 if (!matched && keyData->specialTypes & SPECIALTYPE_REORDER_CODE) { 549 matched = isSpecialTypeReorderCode(type); 551 if (matched) { [all...] |