/external/libchrome/sandbox/linux/bpf_dsl/ |
D | bpf_dsl.h | 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) { in AllOf() function 324 return AllOf(std::move(first), AllOf(std::forward<Rest>(rest)...)); in AllOf()
|
D | bpf_dsl.cc | 272 BoolExpr AllOf() { in AllOf() function 276 BoolExpr AllOf(BoolExpr lhs, BoolExpr rhs) { in AllOf() function
|
D | bpf_dsl_unittest.cc | 155 return If(AllOf(domain == AF_UNIX, in EvaluateSyscall() 202 .ElseIf(AllOf(ruid == 1, euid == 1, suid == 1), Error(EAGAIN)) in EvaluateSyscall()
|
/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/core/ |
D | AllOf.java | 14 public class AllOf<T> extends DiagnosingMatcher<T> { class 18 public AllOf(Iterable<Matcher<? super T>> matchers) { in AllOf() method in AllOf 45 return new AllOf<>(matchers); in allOf()
|
D | CombinableMatcher.java | 31 return new CombinableMatcher<T>(new AllOf<T>(templatedListWith(other))); in and()
|
D | IsCollectionContaining.java | 10 import static org.hamcrest.core.AllOf.allOf;
|
/external/webrtc/webrtc/modules/video_coding/ |
D | video_coding_robustness_unittest.cc | 24 using ::testing::AllOf; 89 Decode(AllOf(Field(&EncodedImage::_timeStamp, ts), in TEST_F() 167 Decode(AllOf(Field(&EncodedImage::_timeStamp, 0), in TEST_F() 173 Decode(AllOf(Field(&EncodedImage::_timeStamp, 3000), in TEST_F() 179 Decode(AllOf(Field(&EncodedImage::_timeStamp, 6000), in TEST_F() 185 Decode(AllOf(Field(&EncodedImage::_timeStamp, 9000), in TEST_F()
|
/external/google-breakpad/src/testing/test/ |
D | gmock-matchers_test.cc | 77 using testing::AllOf; 1931 m = AllOf(Le(2), Ge(1)); in TEST() 1937 m = AllOf(Gt(0), Ne(1), Ne(2)); in TEST() 1943 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3)); in TEST() 1950 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7)); in TEST() 1959 AllOfMatches(2, AllOf(Ne(1), Ne(2))); in TEST() 1960 AllOfMatches(3, AllOf(Ne(1), Ne(2), Ne(3))); in TEST() 1961 AllOfMatches(4, AllOf(Ne(1), Ne(2), Ne(3), Ne(4))); in TEST() 1962 AllOfMatches(5, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5))); in TEST() 1963 AllOfMatches(6, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6))); in TEST() [all …]
|
D | gmock-generated-matchers_test.cc | 1097 EXPECT_THAT(0, testing::AllOf(_, _, _, _, _, _, _, _, _, in TEST() 1098 testing::AllOf(_, _, _, _, _, _, _, _, _, _))); in TEST() 1120 bool AllOf(const T1& t1, const T2& t2) { return true; } in AllOf() function 1123 EXPECT_THAT(42, testing::AllOf( in TEST()
|
/external/googletest/googlemock/test/ |
D | gmock-matchers_test.cc | 83 using testing::AllOf; 2059 m = AllOf(Le(2), Ge(1)); in TEST() 2065 m = AllOf(Gt(0), Ne(1), Ne(2)); in TEST() 2071 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3)); in TEST() 2078 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7)); in TEST() 2087 AllOfMatches(2, AllOf(Ne(1), Ne(2))); in TEST() 2088 AllOfMatches(3, AllOf(Ne(1), Ne(2), Ne(3))); in TEST() 2089 AllOfMatches(4, AllOf(Ne(1), Ne(2), Ne(3), Ne(4))); in TEST() 2090 AllOfMatches(5, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5))); in TEST() 2091 AllOfMatches(6, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6))); in TEST() [all …]
|
/external/v8/testing/gmock/test/ |
D | gmock-matchers_test.cc | 83 using testing::AllOf; 2055 m = AllOf(Le(2), Ge(1)); in TEST() 2061 m = AllOf(Gt(0), Ne(1), Ne(2)); in TEST() 2067 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3)); in TEST() 2074 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7)); in TEST() 2083 AllOfMatches(2, AllOf(Ne(1), Ne(2))); in TEST() 2084 AllOfMatches(3, AllOf(Ne(1), Ne(2), Ne(3))); in TEST() 2085 AllOfMatches(4, AllOf(Ne(1), Ne(2), Ne(3), Ne(4))); in TEST() 2086 AllOfMatches(5, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5))); in TEST() 2087 AllOfMatches(6, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6))); in TEST() [all …]
|
/external/webrtc/webrtc/modules/audio_processing/agc/ |
D | agc_unittest.cc | 21 using ::testing::AllOf; 151 AllOf(Gt(last_level * 0.95), Lt(last_level * 1.05)))) in TEST_F()
|
/external/google-breakpad/src/testing/include/gmock/ |
D | gmock-generated-matchers.h | 1033 AllOf(M1 m1, M2 m2) { in AllOf() function 1041 AllOf(M1 m1, M2 m2, M3 m3) { in AllOf() function 1044 ::testing::AllOf(m2, m3)); in AllOf() 1049 AllOf(M1 m1, M2 m2, M3 m3, M4 m4) { in AllOf() function 1051 ::testing::AllOf(m1, m2), in AllOf() 1052 ::testing::AllOf(m3, m4)); in AllOf() 1057 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5) { in AllOf() function 1059 ::testing::AllOf(m1, m2), in AllOf() 1060 ::testing::AllOf(m3, m4, m5)); in AllOf() 1066 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6) { in AllOf() function [all …]
|
D | gmock-generated-matchers.h.pump | 245 // A set of metafunctions for computing the result type of AllOf. 246 // AllOf(m1, ..., mN) returns 249 // Although AllOf isn't defined for one argument, AllOfResult1 is defined 365 // AllOf(m1, m2, ..., mk) matches any value that matches all of the given 366 // sub-matchers. AllOf is called fully qualified to prevent ADL from firing. 377 AllOf($for j, [[M$j m$j]]) { 379 $if m == 1 [[m1]] $else [[::testing::AllOf($for k, [[m$k]])]], 380 $if m+1 == i [[m$i]] $else [[::testing::AllOf($for t, [[m$t]])]]);
|
/external/v8/testing/gmock/include/gmock/ |
D | gmock-generated-matchers.h | 1002 AllOf(M1 m1, M2 m2) { in AllOf() function 1010 AllOf(M1 m1, M2 m2, M3 m3) { in AllOf() function 1013 ::testing::AllOf(m2, m3)); in AllOf() 1018 AllOf(M1 m1, M2 m2, M3 m3, M4 m4) { in AllOf() function 1020 ::testing::AllOf(m1, m2), in AllOf() 1021 ::testing::AllOf(m3, m4)); in AllOf() 1026 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5) { in AllOf() function 1028 ::testing::AllOf(m1, m2), in AllOf() 1029 ::testing::AllOf(m3, m4, m5)); in AllOf() 1035 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6) { in AllOf() function [all …]
|
D | gmock-generated-matchers.h.pump | 188 // A set of metafunctions for computing the result type of AllOf. 189 // AllOf(m1, ..., mN) returns 192 // Although AllOf isn't defined for one argument, AllOfResult1 is defined 332 // AllOf(m1, m2, ..., mk) matches any value that matches all of the given 333 // sub-matchers. AllOf is called fully qualified to prevent ADL from firing. 344 AllOf($for j, [[M$j m$j]]) { 346 $if m == 1 [[m1]] $else [[::testing::AllOf($for k, [[m$k]])]], 347 $if m+1 == i [[m$i]] $else [[::testing::AllOf($for t, [[m$t]])]]);
|
/external/googletest/googlemock/include/gmock/ |
D | gmock-generated-matchers.h | 1002 AllOf(M1 m1, M2 m2) { in AllOf() function 1010 AllOf(M1 m1, M2 m2, M3 m3) { in AllOf() function 1013 ::testing::AllOf(m2, m3)); in AllOf() 1018 AllOf(M1 m1, M2 m2, M3 m3, M4 m4) { in AllOf() function 1020 ::testing::AllOf(m1, m2), in AllOf() 1021 ::testing::AllOf(m3, m4)); in AllOf() 1026 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5) { in AllOf() function 1028 ::testing::AllOf(m1, m2), in AllOf() 1029 ::testing::AllOf(m3, m4, m5)); in AllOf() 1035 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6) { in AllOf() function [all …]
|
D | gmock-generated-matchers.h.pump | 188 // A set of metafunctions for computing the result type of AllOf. 189 // AllOf(m1, ..., mN) returns 192 // Although AllOf isn't defined for one argument, AllOfResult1 is defined 332 // AllOf(m1, m2, ..., mk) matches any value that matches all of the given 333 // sub-matchers. AllOf is called fully qualified to prevent ADL from firing. 344 AllOf($for j, [[M$j m$j]]) { 346 $if m == 1 [[m1]] $else [[::testing::AllOf($for k, [[m$k]])]], 347 $if m+1 == i [[m$i]] $else [[::testing::AllOf($for t, [[m$t]])]]);
|
/external/hamcrest/hamcrest-core/src/test/java/org/hamcrest/core/ |
D | AllOfTest.java | 7 import static org.hamcrest.core.AllOf.allOf;
|
/external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/ |
D | Matchers.java | 11 return org.hamcrest.core.AllOf.<T>allOf(matchers); in allOf() 20 return org.hamcrest.core.AllOf.<T>allOf(matchers); in allOf() 29 return org.hamcrest.core.AllOf.<T>allOf(first, second); in allOf() 38 return org.hamcrest.core.AllOf.<T>allOf(first, second, third); in allOf() 47 return org.hamcrest.core.AllOf.<T>allOf(first, second, third, fourth); in allOf() 56 return org.hamcrest.core.AllOf.<T>allOf(first, second, third, fourth, fifth); in allOf() 65 return org.hamcrest.core.AllOf.<T>allOf(first, second, third, fourth, fifth, sixth); in allOf()
|
/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/ |
D | CoreMatchers.java | 12 return org.hamcrest.core.AllOf.<T>allOf(matchers); in allOf() 22 return org.hamcrest.core.AllOf.<T>allOf(matchers); in allOf()
|
/external/webrtc/webrtc/modules/video_coding/codecs/vp8/ |
D | simulcast_unittest.h | 29 using ::testing::AllOf; 333 AllOf(Field(&EncodedImage::_frameType, frame_type), in ExpectStreams() 344 AllOf(Field(&EncodedImage::_frameType, frame_type), in ExpectStreams() 354 Encoded(AllOf(Field(&EncodedImage::_frameType, frame_type), in ExpectStreams() 585 Encoded(AllOf(Field(&EncodedImage::_frameType, kVideoFrameKey), in SwitchingToOneStream()
|
/external/googletest/googlemock/ |
D | CHANGES | 9 * Improvement: when compiled by a C++11 compiler, matchers AllOf() 44 * AllOf() and AnyOf() can handle up-to 10 arguments now.
|
/external/v8/testing/gmock/ |
D | CHANGES | 9 * Improvement: when compiled by a C++11 compiler, matchers AllOf() 44 * AllOf() and AnyOf() can handle up-to 10 arguments now.
|
/external/libchrome/sandbox/linux/seccomp-bpf-helpers/ |
D | baseline_policy.cc | 239 return If(AllOf(level == SOL_SOCKET, optname == SO_PEEK_OFF), Allow()) in EvaluateSyscallImpl()
|