HomeSort by relevance Sort by last modified time
    Searched refs:AllOf (Results 1 - 12 of 12) 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/junit/src/org/junit/internal/matchers/
IsCollectionContaining.java 3 import static org.hamcrest.core.AllOf.allOf;
54 return allOf(all);
64 return allOf(all);
  /external/chromium/testing/gmock/test/
gmock-matchers_test.cc 75 using testing::AllOf;
    [all...]
gmock_link_test.h 95 // AllOf
130 using testing::AllOf;
645 // Tests the linkage of the AllOf matcher.
647 Matcher<int> m = AllOf(_, Eq(1));
gmock-generated-matchers_test.cc     [all...]
  /external/ceres-solver/internal/ceres/
levenberg_marquardt_strategy_test.cc 41 using testing::AllOf;
gradient_checking_cost_function_test.cc 51 using testing::AllOf;
229 AllOf(HasSubstr("(1,0,2) Relative error worse than"),
  /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/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/robolectric/lib/main/
hamcrest-core-1.2.jar 
  /external/ceres-solver/internal/ceres/gmock/
gmock.h     [all...]
  /external/clang/unittests/ASTMatchers/
ASTMatchersTest.cpp 376 TEST(AllOf, AllOverloadsWork) {
382 callExpr(allOf(callee(functionDecl(hasName("f"))),
385 callExpr(allOf(callee(functionDecl(hasName("f"))),
390 callExpr(allOf(callee(functionDecl(hasName("f"))),
396 callExpr(allOf(callee(functionDecl(hasName("f"))),
406 recordDecl(anyOf(hasName("Y"), allOf(isDerivedFrom("X"), hasName("Z"))));
    [all...]

Completed in 740 milliseconds