Home
last modified time | relevance | path

Searched refs:matched (Results 1 – 5 of 5) sorted by relevance

/libcore/ojluni/src/main/java/java/util/concurrent/
DCopyOnWriteArraySet.java298 final boolean[] matched = new boolean[len]; in compareSets()
304 if (!matched[i] && Objects.equals(x, snapshot[i])) { in compareSets()
305 matched[i] = true; in compareSets()
307 do { j++; } while (j < len && matched[j]); in compareSets()
/libcore/ojluni/src/main/java/sun/security/util/
DDebug.java289 String matched = matcher.group(); in marshal() local
290 target.append(matched.replaceFirst(keyReg, keyStr)); in marshal()
313 String matched = matcher.group(); in marshal() local
314 target.append(matched.replaceFirst(keyReg, keyStr)); in marshal()
/libcore/ojluni/src/test/java/time/tck/java/time/
DAbstractTCKTest.java166 boolean matched = false; in assertSerializedBySer()
167 while (matched == false) { in assertSerializedBySer()
173 matched = true; in assertSerializedBySer()
/libcore/ojluni/src/main/java/sun/security/provider/certpath/
DDistributionPointFetcher.java735 boolean matched = false; in issues()
762 matched = issuerSelector.match(cert); in issues()
765 if (matched && (crlAKID == null || in issues()
769 matched = true; in issues()
771 matched = false; in issues()
775 return matched; in issues()
/libcore/ojluni/src/test/java/util/Scanner/
Dinput.txt28 * advances past the input that matched the pattern.