Searched defs:AnyOf (Results 1 - 11 of 11) sorted by relevance

/external/hamcrest/src/org/hamcrest/core/
H A DAnyOf.java15 public class AnyOf<T> extends BaseMatcher<T> { class in inherits:BaseMatcher
19 public AnyOf(Iterable<Matcher<? extends T>> matchers) { method in class:AnyOf
49 return new AnyOf<T>(matchers);
/external/libchrome/sandbox/linux/bpf_dsl/
H A Dbpf_dsl.h47 // .ElseIf(AnyOf(cmd == F_DUPFD, cmd == F_DUPFD_CLOEXEC),
65 // bool = BoolConst(boolean) | Not(bool) | AllOf(bool...) | AnyOf(bool...)
133 // AnyOf returns a BoolExpr representing the logical disjunction ("or")
135 SANDBOX_EXPORT BoolExpr AnyOf();
136 SANDBOX_EXPORT BoolExpr AnyOf(const BoolExpr& lhs, const BoolExpr& rhs);
138 SANDBOX_EXPORT BoolExpr AnyOf(const BoolExpr& first, const Rest&... rest);
261 using bpf_dsl::AnyOf;
314 return Caser<T>(arg_, elser_.ElseIf(AnyOf((arg_ == values)...), result));
328 BoolExpr AnyOf(const BoolExpr& first, const Rest&... rest) { function in namespace:sandbox::bpf_dsl
329 return AnyOf(firs
[all...]
H A Dbpf_dsl.cc288 BoolExpr AnyOf() { function in namespace:sandbox::bpf_dsl
292 BoolExpr AnyOf(const BoolExpr& lhs, const BoolExpr& rhs) { function in namespace:sandbox::bpf_dsl
/external/google-breakpad/src/testing/test/
H A Dgmock-generated-matchers_test.cc1102 // Verify that using AnyOf with many arguments doesn't cause
1104 EXPECT_THAT(0, testing::AnyOf(_, _, _, _, _, _, _, _, _,
1105 testing::AnyOf(_, _, _, _, _, _, _, _, _, _)));
1110 // Verifies that the implementation of ::testing::AllOf and ::testing::AnyOf
1112 // name lookup will cause AllOf/AnyOf in the 'adl_test' namespace to be found
1115 // The matcher must be in the same namespace as AllOf/AnyOf to make argument
1128 AnyOf(const T1& t1, const T2& t2) { return true; } function in namespace:__anon6446::adl_test
1131 EXPECT_THAT(42, testing::AnyOf(
/external/gmock/include/gmock/
H A Dgmock-generated-matchers.h397 // A set of metafunctions for computing the result type of AnyOf.
398 // AnyOf(m1, ..., mN) returns
401 // Although AnyOf isn't defined for one argument, AnyOfResult1 is defined
1091 // AnyOf(m1, m2, ..., mk) matches any value that matches any of the given
1092 // sub-matchers. AnyOf is called fully qualified to prevent ADL from firing.
1096 AnyOf(M1 m1, M2 m2) { function in namespace:testing
1104 AnyOf(M1 m1, M2 m2, M3 m3) { function in namespace:testing
1107 ::testing::AnyOf(m2, m3));
1112 AnyOf(M1 m1, M2 m2, M3 m3, M4 m4) { function in namespace:testing
1114 ::testing::AnyOf(m
1120 AnyOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5) { function in namespace:testing
1129 AnyOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6) { function in namespace:testing
1138 AnyOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7) { function in namespace:testing
1147 AnyOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7, M8 m8) { function in namespace:testing
1156 AnyOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7, M8 m8, M9 m9) { function in namespace:testing
1167 AnyOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7, M8 m8, M9 m9, M10 m10) { function in namespace:testing
[all...]
H A Dgmock-matchers.h1529 // AllOf(m_1, m_2, ...) and AnyOf(m_1, m_2, ...).
1584 // Implements the AnyOf(m1, m2) matcher for a particular argument type
1648 // AnyOfMatcher is used for the variadic implementation of AnyOf(m_1, m_2, ...).
1654 // Used for implementing the AnyOf(m_1, ..., m_n) matcher, which
3959 inline internal::AnyOfMatcher<Args...> AnyOf(const Args&... matchers) { function in namespace:testing
/external/gmock/test/
H A Dgmock-generated-matchers_test.cc1250 // Verify that using AnyOf with many arguments doesn't cause
1252 EXPECT_THAT(0, testing::AnyOf(_, _, _, _, _, _, _, _, _,
1253 testing::AnyOf(_, _, _, _, _, _, _, _, _, _)));
1258 // Verifies that the implementation of ::testing::AllOf and ::testing::AnyOf
1260 // name lookup will cause AllOf/AnyOf in the 'adl_test' namespace to be found
1263 // The matcher must be in the same namespace as AllOf/AnyOf to make argument
1276 AnyOf(const T1& t1, const T2& t2) { return true; } function in namespace:__anon6201::adl_test
1279 EXPECT_THAT(42, testing::AnyOf(
/external/google-breakpad/src/testing/include/gmock/
H A Dgmock-generated-matchers.h752 // A set of metafunctions for computing the result type of AnyOf.
753 // AnyOf(m1, ..., mN) returns
756 // Although AnyOf isn't defined for one argument, AnyOfResult1 is defined
1111 // AnyOf(m1, m2, ..., mk) matches any value that matches any of the given
1112 // sub-matchers. AnyOf is called fully qualified to prevent ADL from firing.
1116 AnyOf(M1 m1, M2 m2) { function in namespace:testing
1124 AnyOf(M1 m1, M2 m2, M3 m3) { function in namespace:testing
1127 ::testing::AnyOf(m2, m3));
1132 AnyOf(M1 m1, M2 m2, M3 m3, M4 m4) { function in namespace:testing
1134 ::testing::AnyOf(m
1140 AnyOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5) { function in namespace:testing
1149 AnyOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6) { function in namespace:testing
1158 AnyOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7) { function in namespace:testing
1167 AnyOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7, M8 m8) { function in namespace:testing
1176 AnyOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7, M8 m8, M9 m9) { function in namespace:testing
1187 AnyOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7, M8 m8, M9 m9, M10 m10) { function in namespace:testing
[all...]
/external/libphonenumber/lib/
H A Djunit-4.8.1.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...
/external/opencv3/modules/java/pure_test/lib/
H A Djunit-4.11.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...
/external/owasp/sanitizer/lib/junit/
H A Djunit.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...

Completed in 370 milliseconds