/external/libtextclassifier/annotator/duration/ |
D | duration_test.cc | 35 using testing::AllOf; 124 AllOf(Field(&ClassificationResult::collection, "duration"), in TEST_F() 135 AllOf(Field(&ClassificationResult::collection, "duration"), in TEST_F() 149 AllOf(Field(&AnnotatedSpan::span, CodepointSpan(14, 24)), in TEST_F() 151 ElementsAre(AllOf( in TEST_F() 168 AllOf(Field(&AnnotatedSpan::span, CodepointSpan(16, 34)), in TEST_F() 170 ElementsAre(AllOf( in TEST_F() 187 AllOf(Field(&AnnotatedSpan::span, CodepointSpan(14, 35)), in TEST_F() 189 ElementsAre(AllOf( in TEST_F() 205 AllOf(Field(&AnnotatedSpan::span, CodepointSpan(16, 28)), in TEST_F() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/tools/llvm-cfi-verify/ |
D | GraphBuilder.cpp | 43 using ::testing::AllOf; 169 Contains(AllOf(Field(&ConditionalBranchNode::Address, Eq(0xDEADBEEF)), in TEST_F() 195 Contains(AllOf(Field(&ConditionalBranchNode::Address, Eq(0xDEADBEEF)), in TEST_F() 224 Contains(AllOf( in TEST_F() 233 Contains(AllOf( in TEST_F() 262 Contains(AllOf( in TEST_F() 271 Contains(AllOf( in TEST_F() 331 Each(AllOf(Field(&ConditionalBranchNode::CFIProtection, Eq(false)), in TEST_F() 355 AllOf(Field(&ConditionalBranchNode::Address, Eq(0xDEADBEEF)), in TEST_F() 428 Each(AllOf( in TEST_F() [all …]
|
/external/grpc-grpc/test/cpp/ext/filters/census/ |
D | stats_plugin_end2end_test.cc | 199 ::testing::AllOf(::testing::Property(&Distribution::count, 1), in TEST_F() 205 ::testing::AllOf(::testing::Property(&Distribution::count, 1), in TEST_F() 211 ::testing::AllOf(::testing::Property(&Distribution::count, 1), in TEST_F() 217 ::testing::AllOf(::testing::Property(&Distribution::count, 1), in TEST_F() 248 ::testing::AllOf( in TEST_F() 263 ::testing::AllOf( in TEST_F() 279 ::testing::AllOf( in TEST_F() 341 ::testing::AllOf(::testing::Property(&Distribution::count, i + 1), in TEST_F() 348 ::testing::AllOf(::testing::Property(&Distribution::count, i + 1), in TEST_F() 355 ::testing::AllOf(::testing::Property(&Distribution::count, i + 1), in TEST_F() [all …]
|
/external/libtextclassifier/annotator/number/ |
D | number_test.cc | 35 using testing::AllOf; 141 AllOf(Field(&AnnotatedSpan::span, CodepointSpan(8, 9)), in TEST_F() 143 ElementsAre(AllOf( in TEST_F() 157 AllOf(Field(&AnnotatedSpan::span, CodepointSpan(0, 2)), in TEST_F() 159 ElementsAre(AllOf( in TEST_F() 172 AllOf(Field(&ClassificationResult::collection, "number"), in TEST_F() 184 AllOf(Field(&ClassificationResult::collection, "number"), in TEST_F()
|
/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 | IsCollectionContaining.java | 10 import static org.hamcrest.core.AllOf.allOf;
|
D | CombinableMatcher.java | 31 return new CombinableMatcher<T>(new AllOf<T>(templatedListWith(other))); in and()
|
/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/tensorflow/tensorflow/compiler/xla/service/ |
D | hlo_execution_profile_test.cc | 26 using ::testing::AllOf; 70 AllOf(ContainsRegex(StrCat(dot_cycles, R"(\b.*%)", in TEST_F()
|
D | pattern_matcher_test.cc | 371 TEST(PatternMatcherTest, AllOf) { in TEST() argument 372 using match::AllOf; in TEST() 389 EXPECT_TRUE(Match(root, AllOf<HloInstruction>(scalar_pattern, f16_pattern, in TEST() 392 Match(root, AllOf<HloInstruction>(f16_pattern, f16_compatible_pattern, in TEST() 395 Match(root, AllOf<HloInstruction>(Broadcast(Op()), f16_pattern))); in TEST() 397 root, AllOf<HloInstruction>(Broadcast(Op()), f16_compatible_pattern))); in TEST() 399 Match(root, AllOf<HloInstruction>(Broadcast(Op()), scalar_pattern))); in TEST() 403 using match::AllOf; in TEST() 418 Match(root, AllOf<HloInstruction>(Constant(&constant), Broadcast(Op())))); in TEST()
|
D | pattern_matcher.h | 354 detail::AllOfPattern<typename std::remove_const<Item>::type, Patterns...> AllOf( 366 AllOf(const detail::AllOfPattern<Item, InnerPs...>& inner_p, 458 decltype(AllOf<Layout>(std::declval<Impl>(), 460 auto new_allof = AllOf<Layout>(impl_, std::move(new_impl)); 949 -> ShapePattern<ShapeType, decltype(AllOf<Shape>(std::declval<Impl>(), 951 auto new_all_of = AllOf<Shape>(impl_, std::move(new_impl)); 1792 HloInstructionType, decltype(AllOf<HloInstruction>( 1794 auto new_allof = AllOf<HloInstruction>(impl_, std::move(new_impl));
|
/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 …]
|
/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/swiftshader/third_party/llvm-7.0/llvm/unittests/FuzzMutate/ |
D | OperationsTest.cpp | 46 using testing::AllOf; 108 AllOf(SizeIs(Ge(1u)), Each(TypesMatch(i32)))); in TEST() 129 AllOf(SizeIs(Ge(1u)), Each(TypesMatch(i32)))); in TEST() 140 AllOf(SizeIs(Ge(1u)), Each(TypesMatch(f16)))); in TEST() 151 AllOf(SizeIs(Ge(3u)), Each(Truly(isPointer)))); in TEST()
|
/external/googletest/googlemock/test/ |
D | gmock-matchers_test.cc | 2504 m = AllOf(Le(2), Ge(1)); in TEST() 2510 m = AllOf(Gt(0), Ne(1), Ne(2)); in TEST() 2516 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3)); in TEST() 2523 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7)); in TEST() 2532 AllOfMatches(2, AllOf(Ne(1), Ne(2))); in TEST() 2533 AllOfMatches(3, AllOf(Ne(1), Ne(2), Ne(3))); in TEST() 2534 AllOfMatches(4, AllOf(Ne(1), Ne(2), Ne(3), Ne(4))); in TEST() 2535 AllOfMatches(5, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5))); in TEST() 2536 AllOfMatches(6, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6))); in TEST() 2537 AllOfMatches(7, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7))); in TEST() [all …]
|
D | gmock-generated-matchers_test.cc | 66 using testing::AllOf; 1242 EXPECT_THAT(0, testing::AllOf(_, _, _, _, _, _, _, _, _, in TEST() 1243 testing::AllOf(_, _, _, _, _, _, _, _, _, _))); in TEST() 1265 bool AllOf(const T1& /*t1*/, const T2& /*t2*/) { return true; } in AllOf() function 1268 EXPECT_THAT(42, testing::AllOf( in TEST() 1285 EXPECT_THAT(p, AllOf(Pointee(Eq(3)), Pointee(Gt(0)), Pointee(Lt(5)))); in TEST() 1286 EXPECT_THAT(p, Not(AllOf(Pointee(Eq(3)), Pointee(Gt(0)), Pointee(Lt(3))))); in TEST()
|
/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/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/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 …]
|
/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/test/java/org/hamcrest/core/ |
D | AllOfTest.java | 7 import static org.hamcrest.core.AllOf.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/perfetto/src/tracing/core/ |
D | tracing_service_impl_unittest.cc | 742 return Contains(AllOf( in TEST_F() 745 AllOf(Property(&protos::Trigger::trigger_name, Eq(name)), in TEST_F() 820 return Contains(AllOf( in TEST_F() 823 AllOf(Property(&protos::Trigger::trigger_name, Eq(name)), in TEST_F() 866 AllOf(Property(&protos::TracePacket::trigger, in TEST_F() 867 AllOf(Property(&protos::Trigger::trigger_name, Eq(name)), in TEST_F() 2102 Contains(AllOf( in TEST_F() 2109 Contains(AllOf( in TEST_F() 2116 Contains(AllOf( in TEST_F() 2123 Contains(AllOf( in TEST_F() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/tools/llvm-exegesis/ |
D | BenchmarkResultTest.cpp | 19 using ::testing::AllOf;
|