Home
last modified time | relevance | path

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

/cts/hostsidetests/inputmethodservice/deviceside/devicetest/src/android/inputmethodservice/cts/devicetest/
DSequenceMatcher.java64 SequenceAccumulator(Predicate<E>... predicates) { in SequenceAccumulator() argument
65 mPredicates = predicates; in SequenceAccumulator()
144 static <E> Collector<E, ?, MatchResult<E>> of(Predicate<E>... predicates) { in of() argument
145 if (predicates == null || predicates.length == 0) { in of()
149 () -> new SequenceAccumulator<>(predicates), in of()