HomeSort by relevance Sort by last modified time
    Searched defs:allOf (Results 1 - 8 of 8) sorted by null

  /external/hamcrest/src/org/hamcrest/core/
AllOf.java 15 public class AllOf<T> extends BaseMatcher<T> {
18 public AllOf(Iterable<Matcher<? extends T>> matchers) {
39 public static <T> Matcher<T> allOf(Matcher<? extends T>... matchers) {
40 return allOf(Arrays.asList(matchers));
47 public static <T> Matcher<T> allOf(Iterable<Matcher<? extends T>> matchers) {
48 return new AllOf<T>(matchers);
  /external/hamcrest/src/org/hamcrest/
CoreMatchers.java 72 public static <T> org.hamcrest.Matcher<T> allOf(org.hamcrest.Matcher<? extends T>... matchers) {
73 return org.hamcrest.core.AllOf.allOf(matchers);
79 public static <T> org.hamcrest.Matcher<T> allOf(java.lang.Iterable<org.hamcrest.Matcher<? extends T>> matchers) {
80 return org.hamcrest.core.AllOf.allOf(matchers);
  /external/droiddriver/src/com/google/android/droiddriver/finders/
By.java 105 * {@link #allOf}. For complex cases like below, XPath is superior:
146 * allOf(second, withAncesor(first)) may work.
169 public static MatchFinder allOf(final MatchFinder... finders) {
170 return new MatchFinder(Predicates.allOf(getPredicates(finders)));
  /external/droiddriver/src/com/google/android/droiddriver/scroll/
SentinelStrategy.java 149 super(Predicates.allOf(original.predicate, extraPredicate));
  /external/hamcrest/library/src/org/hamcrest/
Matchers.java 72 public static <T> org.hamcrest.Matcher<T> allOf(org.hamcrest.Matcher<? extends T>... matchers) {
73 return org.hamcrest.core.AllOf.allOf(matchers);
79 public static <T> org.hamcrest.Matcher<T> allOf(java.lang.Iterable<org.hamcrest.Matcher<? extends T>> matchers) {
80 return org.hamcrest.core.AllOf.allOf(matchers);
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h     [all...]
  /external/owasp/sanitizer/lib/junit/
junit.jar 
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 

Completed in 358 milliseconds