/external/hamcrest/src/org/hamcrest/core/ |
AnyOf.java | 15 public class AnyOf<T> extends BaseMatcher<T> { 19 public AnyOf(Iterable<Matcher<? extends T>> matchers) { 40 public static <T> Matcher<T> anyOf(Matcher<? extends T>... matchers) { 41 return anyOf(Arrays.asList(matchers)); 48 public static <T> Matcher<T> anyOf(Iterable<Matcher<? extends T>> matchers) { 49 return new AnyOf<T>(matchers);
|
/external/libchrome/sandbox/linux/bpf_dsl/ |
bpf_dsl.h | 47 // .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) { 329 return AnyOf(first, AnyOf(rest...)) [all...] |
bpf_dsl.cc | 288 BoolExpr AnyOf() { 292 BoolExpr AnyOf(const BoolExpr& lhs, const BoolExpr& rhs) {
|
bpf_dsl_unittest.cc | 156 AnyOf(type == SOCK_STREAM, type == SOCK_DGRAM), 201 return If(AnyOf(ruid == 0, euid == 0, suid == 0), Error(EPERM))
|
/external/libchrome/base/ |
gmock_unittest.cc | 13 using testing::AnyOf; 114 EXPECT_CALL(mock, ReturnSecond(_, AnyOf(Eq(4), Eq(5)))) 128 EXPECT_CALL(mock, ReturnSecond(_, AnyOf(Eq(4), Eq(5))))
|
/external/hamcrest/library/src/org/hamcrest/number/ |
OrderingComparisons.java | 3 import static org.hamcrest.core.AnyOf.anyOf; 21 anyOf(greaterThan(value), equalTo(value)),
|
/external/v8/test/unittests/compiler/ |
node-properties-unittest.cc | 10 using testing::AnyOf; 118 EXPECT_THAT(result[0], AnyOf(if_value1, if_value2)); 119 EXPECT_THAT(result[1], AnyOf(if_value1, if_value2));
|
/external/google-breakpad/src/testing/test/ |
gmock-matchers_test.cc | 79 using testing::AnyOf; [all...] |
gmock_link_test.h | 96 // AnyOf 131 using testing::AnyOf; 651 // Tests the linkage of the AnyOf matcher. 653 Matcher<int> m = AnyOf(_, Eq(1));
|
gmock-generated-matchers_test.cc | [all...] |
/external/hamcrest/src/org/hamcrest/ |
CoreMatchers.java | 86 public static <T> org.hamcrest.Matcher<T> anyOf(org.hamcrest.Matcher<? extends T>... matchers) { 87 return org.hamcrest.core.AnyOf.anyOf(matchers); 93 public static <T> org.hamcrest.Matcher<T> anyOf(java.lang.Iterable<org.hamcrest.Matcher<? extends T>> matchers) { 94 return org.hamcrest.core.AnyOf.anyOf(matchers);
|
/external/libweave/src/ |
access_api_handler_unittest.cc | 17 using testing::AnyOf; 65 AddCommandHandler(_, AnyOf("_accessControlBlackList.block",
|
base_api_handler_unittest.cc | 22 using testing::AnyOf; 52 AddCommandHandler(_, AnyOf("base.updateBaseConfiguration",
|
/external/gmock/test/ |
gmock-matchers_test.cc | 84 using testing::AnyOf; [all...] |
gmock_link_test.h | 96 // AnyOf 131 using testing::AnyOf; 651 // Tests the linkage of the AnyOf matcher. 653 Matcher<int> m = AnyOf(_, Eq(1));
|
gmock-generated-matchers_test.cc | [all...] |
/prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-core/1.1/ |
hamcrest-core-1.1.jar | |
/system/connectivity/shill/ |
crypto_util_proxy_unittest.cc | 36 using testing::AnyOf; 135 AnyOf(
|
/external/gmock/include/gmock/ |
gmock-generated-matchers.h | 397 // 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 [all...] |
/external/google-breakpad/src/testing/include/gmock/ |
gmock-generated-matchers.h | 752 // 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 [all...] |
/external/hamcrest/library/src/org/hamcrest/ |
Matchers.java | 86 public static <T> org.hamcrest.Matcher<T> anyOf(org.hamcrest.Matcher<? extends T>... matchers) { 87 return org.hamcrest.core.AnyOf.anyOf(matchers); 93 public static <T> org.hamcrest.Matcher<T> anyOf(java.lang.Iterable<org.hamcrest.Matcher<? extends T>> matchers) { 94 return org.hamcrest.core.AnyOf.anyOf(matchers);
|
/external/libchrome/sandbox/linux/seccomp-bpf-helpers/ |
syscall_parameters_restrictions.cc | 130 AnyOf(flags == kAndroidCloneMask, flags == kObsoleteAndroidCloneMask,
|
/prebuilts/devtools/tools/lib/ |
hamcrest-core-1.3.jar | |
/prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-core/1.3/ |
hamcrest-core-1.3.jar | |
/prebuilts/tools/common/m2/repository/org/parboiled/parboiled-java/1.0.2/ |
parboiled-java-1.0.2.jar | |