HomeSort by relevance Sort by last modified time
    Searched defs:AllOf (Results 1 - 5 of 5) 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/chromium/testing/gmock/include/gmock/
gmock-generated-matchers.h 852 // AllOf(m1, m2, ..., mk) matches any value that matches all of the given
853 // sub-matchers. AllOf is called fully qualified to prevent ADL from firing.
857 AllOf(Matcher1 m1, Matcher2 m2) {
864 AllOf(Matcher1 m1, Matcher2 m2, Matcher3 m3) {
865 return ::testing::AllOf(m1, ::testing::AllOf(m2, m3));
872 AllOf(Matcher1 m1, Matcher2 m2, Matcher3 m3, Matcher4 m4) {
873 return ::testing::AllOf(m1, ::testing::AllOf(m2, m3, m4));
881 AllOf(Matcher1 m1, Matcher2 m2, Matcher3 m3, Matcher4 m4, Matcher5 m5)
    [all...]
  /external/chromium/testing/gmock/test/
gmock-generated-matchers_test.cc     [all...]
  /external/robolectric/lib/main/
hamcrest-core-1.2.jar 
  /prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar 

Completed in 119 milliseconds