Searched defs:allOf (Results 1 - 5 of 5) sorted by relevance

/external/hamcrest/src/org/hamcrest/core/
H A DAllOf.java39 public static <T> Matcher<T> allOf(Matcher<? extends T>... matchers) { method in class:AllOf
40 return allOf(Arrays.asList(matchers));
47 public static <T> Matcher<T> allOf(Iterable<Matcher<? extends T>> matchers) { method in class:AllOf
/external/hamcrest/src/org/hamcrest/
H A DCoreMatchers.java72 public static <T> org.hamcrest.Matcher<T> allOf(org.hamcrest.Matcher<? extends T>... matchers) { method in class:CoreMatchers
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) { method in class:CoreMatchers
80 return org.hamcrest.core.AllOf.allOf(matchers);
/external/droiddriver/src/com/google/android/droiddriver/finders/
H A DBy.java185 * {@link #allOf}. For complex cases like below, XPath is superior:
235 public static MatchFinder allOf(final MatchFinder... finders) { method in class:By
249 return "allOf(" + Joiner.on(",").join(finders) + ")";
/external/robolectric/lib/main/
H A Dhamcrest-core-1.2.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/hamcrest/ org/hamcrest/core/ org/hamcrest/internal/ LICENSE ...
/external/clang/include/clang/ASTMatchers/
H A DASTMatchers.h1345 /// \brief Various overloads for the allOf matcher.
1353 allOf(const M1 &P1, const M2 &P2) { function in namespace:clang::ast_matchers
1361 allOf(const M1 &P1, const M2 &P2, const M3 &P3) { function in namespace:clang::ast_matchers
1362 return allOf(P1, allOf(P2, P3));
1370 allOf(const M1 &P1, const M2 &P2, const M3 &P3, const M4 &P4) { function in namespace:clang::ast_matchers
1371 return allOf(P1, allOf(P2, P3, P4));
1382 allOf(const M1 &P1, const M2 &P2, const M3 &P3, const M4 &P4, const M5 &P5) { function in namespace:clang::ast_matchers
1383 return allOf(P
[all...]

Completed in 383 milliseconds