Searched refs:AllOf (Results 1 - 25 of 36) sorted by relevance

12

/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/core/
H A DAllOf.java14 public class AllOf<T> extends DiagnosingMatcher<T> { class in inherits:DiagnosingMatcher
18 public AllOf(Iterable<Matcher<? super T>> matchers) { method in class:AllOf
45 return new AllOf<>(matchers);
H A DCombinableMatcher.java31 return new CombinableMatcher<T>(new AllOf<T>(templatedListWith(other)));
H A DIsCollectionContaining.java10 import static org.hamcrest.core.AllOf.allOf;
/external/libchrome/sandbox/linux/bpf_dsl/
H A Dbpf_dsl.h43 // return If(AllOf(fd == 0,
65 // bool = BoolConst(boolean) | Not(bool) | AllOf(bool...) | AnyOf(bool...)
126 // AllOf returns a BoolExpr representing the logical conjunction ("and")
128 SANDBOX_EXPORT BoolExpr AllOf();
129 SANDBOX_EXPORT BoolExpr AllOf(BoolExpr lhs, BoolExpr rhs);
131 SANDBOX_EXPORT BoolExpr AllOf(BoolExpr first, Rest&&... rest);
260 using bpf_dsl::AllOf;
323 BoolExpr AllOf(BoolExpr first, Rest&&... rest) { function in namespace:sandbox::bpf_dsl
324 return AllOf(std::move(first), AllOf(st
[all...]
H A Dbpf_dsl.cc272 BoolExpr AllOf() { function in namespace:sandbox::bpf_dsl
276 BoolExpr AllOf(BoolExpr lhs, BoolExpr rhs) { function in namespace:sandbox::bpf_dsl
H A Dbpf_dsl_unittest.cc155 return If(AllOf(domain == AF_UNIX,
202 .ElseIf(AllOf(ruid == 1, euid == 1, suid == 1), Error(EAGAIN))
/external/webrtc/webrtc/modules/video_coding/
H A Dvideo_coding_robustness_unittest.cc24 using ::testing::AllOf;
89 Decode(AllOf(Field(&EncodedImage::_timeStamp, ts),
167 Decode(AllOf(Field(&EncodedImage::_timeStamp, 0),
173 Decode(AllOf(Field(&EncodedImage::_timeStamp, 3000),
179 Decode(AllOf(Field(&EncodedImage::_timeStamp, 6000),
185 Decode(AllOf(Field(&EncodedImage::_timeStamp, 9000),
/external/hamcrest/hamcrest-core/src/test/java/org/hamcrest/core/
H A DAllOfTest.java7 import static org.hamcrest.core.AllOf.allOf;
/external/webrtc/webrtc/modules/audio_processing/agc/
H A Dagc_unittest.cc21 using ::testing::AllOf;
151 AllOf(Gt(last_level * 0.95), Lt(last_level * 1.05))))
/external/google-breakpad/src/testing/test/
H A Dgmock-matchers_test.cc77 using testing::AllOf;
1917 // Helper to allow easy testing of AllOf matchers with num parameters.
1927 // Tests that AllOf(m1, ..., mn) matches any value that matches all of
1931 m = AllOf(Le(2), Ge(1));
1937 m = AllOf(Gt(0), Ne(1), Ne(2));
1943 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3));
1950 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7));
1959 AllOfMatches(2, AllOf(Ne(1), Ne(2)));
1960 AllOfMatches(3, AllOf(Ne(1), Ne(2), Ne(3)));
1961 AllOfMatches(4, AllOf(N
[all...]
H A Dgmock_link_test.h95 // AllOf
130 using testing::AllOf;
645 // Tests the linkage of the AllOf matcher.
647 Matcher<int> m = AllOf(_, Eq(1));
H A Dgmock-generated-matchers_test.cc1095 // Verify that using AllOf with many arguments doesn't cause
1097 EXPECT_THAT(0, testing::AllOf(_, _, _, _, _, _, _, _, _,
1098 testing::AllOf(_, _, _, _, _, _, _, _, _, _)));
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
1120 bool AllOf(const T1& t1, const T2& t2) { return true; } function in namespace:__anon6904::adl_test
1123 EXPECT_THAT(42, testing::AllOf(
/external/googletest/googlemock/test/
H A Dgmock-matchers_test.cc83 using testing::AllOf;
2041 // Helper to allow easy testing of AllOf matchers with num parameters.
2051 // Tests that AllOf(m1, ..., mn) matches any value that matches all of
2055 m = AllOf(Le(2), Ge(1));
2061 m = AllOf(Gt(0), Ne(1), Ne(2));
2067 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3));
2074 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7));
2083 AllOfMatches(2, AllOf(Ne(1), Ne(2)));
2084 AllOfMatches(3, AllOf(Ne(1), Ne(2), Ne(3)));
2085 AllOfMatches(4, AllOf(N
[all...]
H A Dgmock_link_test.h95 // AllOf
130 using testing::AllOf;
645 // Tests the linkage of the AllOf matcher.
647 Matcher<int> m = AllOf(_, Eq(1));
H A Dgmock-generated-matchers_test.cc1240 // Verify that using AllOf with many arguments doesn't cause
1242 EXPECT_THAT(0, testing::AllOf(_, _, _, _, _, _, _, _, _,
1243 testing::AllOf(_, _, _, _, _, _, _, _, _, _)));
1255 // Verifies that the implementation of ::testing::AllOf and ::testing::AnyOf
1257 // name lookup will cause AllOf/AnyOf in the 'adl_test' namespace to be found
1260 // The matcher must be in the same namespace as AllOf/AnyOf to make argument
1265 bool AllOf(const T1& t1, const T2& t2) { return true; } function in namespace:__anon6992::adl_test
1268 EXPECT_THAT(42, testing::AllOf(
/external/v8/testing/gmock/test/
H A Dgmock-matchers_test.cc83 using testing::AllOf;
2041 // Helper to allow easy testing of AllOf matchers with num parameters.
2051 // Tests that AllOf(m1, ..., mn) matches any value that matches all of
2055 m = AllOf(Le(2), Ge(1));
2061 m = AllOf(Gt(0), Ne(1), Ne(2));
2067 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3));
2074 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7));
2083 AllOfMatches(2, AllOf(Ne(1), Ne(2)));
2084 AllOfMatches(3, AllOf(Ne(1), Ne(2), Ne(3)));
2085 AllOfMatches(4, AllOf(N
[all...]
H A Dgmock_link_test.h95 // AllOf
130 using testing::AllOf;
645 // Tests the linkage of the AllOf matcher.
647 Matcher<int> m = AllOf(_, Eq(1));
H A Dgmock-generated-matchers_test.cc1240 // Verify that using AllOf with many arguments doesn't cause
1242 EXPECT_THAT(0, testing::AllOf(_, _, _, _, _, _, _, _, _,
1243 testing::AllOf(_, _, _, _, _, _, _, _, _, _)));
1255 // Verifies that the implementation of ::testing::AllOf and ::testing::AnyOf
1257 // name lookup will cause AllOf/AnyOf in the 'adl_test' namespace to be found
1260 // The matcher must be in the same namespace as AllOf/AnyOf to make argument
1265 bool AllOf(const T1& t1, const T2& t2) { return true; } function in namespace:__anon21887::adl_test
1268 EXPECT_THAT(42, testing::AllOf(
/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/
H A DCoreMatchers.java12 return org.hamcrest.core.AllOf.<T>allOf(matchers);
22 return org.hamcrest.core.AllOf.<T>allOf(matchers);
/external/google-breakpad/src/testing/include/gmock/
H A Dgmock-generated-matchers.h664 // A set of metafunctions for computing the result type of AllOf.
665 // AllOf(m1, ..., mN) returns
668 // Although AllOf isn't defined for one argument, AllOfResult1 is defined
1028 // AllOf(m1, m2, ..., mk) matches any value that matches all of the given
1029 // sub-matchers. AllOf is called fully qualified to prevent ADL from firing.
1033 AllOf(M1 m1, M2 m2) { function in namespace:testing
1041 AllOf(M1 m1, M2 m2, M3 m3) { function in namespace:testing
1044 ::testing::AllOf(m2, m3));
1049 AllOf(M1 m1, M2 m2, M3 m3, M4 m4) { function in namespace:testing
1051 ::testing::AllOf(m
1057 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5) { function in namespace:testing
1066 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6) { function in namespace:testing
1075 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7) { function in namespace:testing
1084 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7, M8 m8) { function in namespace:testing
1093 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7, M8 m8, M9 m9) { function in namespace:testing
1104 AllOf(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/googletest/googlemock/include/gmock/
H A Dgmock-generated-matchers.h298 // A set of metafunctions for computing the result type of AllOf.
299 // AllOf(m1, ..., mN) returns
302 // Although AllOf isn't defined for one argument, AllOfResult1 is defined
997 // AllOf(m1, m2, ..., mk) matches any value that matches all of the given
998 // sub-matchers. AllOf is called fully qualified to prevent ADL from firing.
1002 AllOf(M1 m1, M2 m2) { function in namespace:testing
1010 AllOf(M1 m1, M2 m2, M3 m3) { function in namespace:testing
1013 ::testing::AllOf(m2, m3));
1018 AllOf(M1 m1, M2 m2, M3 m3, M4 m4) { function in namespace:testing
1020 ::testing::AllOf(m
1026 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5) { function in namespace:testing
1035 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6) { function in namespace:testing
1044 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7) { function in namespace:testing
1053 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7, M8 m8) { function in namespace:testing
1062 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7, M8 m8, M9 m9) { function in namespace:testing
1073 AllOf(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/v8/testing/gmock/include/gmock/
H A Dgmock-generated-matchers.h298 // A set of metafunctions for computing the result type of AllOf.
299 // AllOf(m1, ..., mN) returns
302 // Although AllOf isn't defined for one argument, AllOfResult1 is defined
997 // AllOf(m1, m2, ..., mk) matches any value that matches all of the given
998 // sub-matchers. AllOf is called fully qualified to prevent ADL from firing.
1002 AllOf(M1 m1, M2 m2) { function in namespace:testing
1010 AllOf(M1 m1, M2 m2, M3 m3) { function in namespace:testing
1013 ::testing::AllOf(m2, m3));
1018 AllOf(M1 m1, M2 m2, M3 m3, M4 m4) { function in namespace:testing
1020 ::testing::AllOf(m
1026 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5) { function in namespace:testing
1035 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6) { function in namespace:testing
1044 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7) { function in namespace:testing
1053 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7, M8 m8) { function in namespace:testing
1062 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7, M8 m8, M9 m9) { function in namespace:testing
1073 AllOf(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/hamcrest/hamcrest-library/src/main/java/org/hamcrest/
H A DMatchers.java11 return org.hamcrest.core.AllOf.<T>allOf(matchers);
20 return org.hamcrest.core.AllOf.<T>allOf(matchers);
29 return org.hamcrest.core.AllOf.<T>allOf(first, second);
38 return org.hamcrest.core.AllOf.<T>allOf(first, second, third);
47 return org.hamcrest.core.AllOf.<T>allOf(first, second, third, fourth);
56 return org.hamcrest.core.AllOf.<T>allOf(first, second, third, fourth, fifth);
65 return org.hamcrest.core.AllOf.<T>allOf(first, second, third, fourth, fifth, sixth);
/external/webrtc/webrtc/modules/video_coding/codecs/vp8/
H A Dsimulcast_unittest.h29 using ::testing::AllOf;
333 AllOf(Field(&EncodedImage::_frameType, frame_type),
344 AllOf(Field(&EncodedImage::_frameType, frame_type),
354 Encoded(AllOf(Field(&EncodedImage::_frameType, frame_type),
585 Encoded(AllOf(Field(&EncodedImage::_frameType, kVideoFrameKey),
/external/libchrome/sandbox/linux/seccomp-bpf-helpers/
H A Dbaseline_policy.cc239 return If(AllOf(level == SOL_SOCKET, optname == SO_PEEK_OFF), Allow())

Completed in 556 milliseconds

12