HomeSort by relevance Sort by last modified time
    Searched refs:AllOf (Results 1 - 25 of 49) sorted by null

1 2

  /external/libtextclassifier/annotator/duration/
duration_test.cc 35 using testing::AllOf;
124 AllOf(Field(&ClassificationResult::collection, "duration"),
135 AllOf(Field(&ClassificationResult::collection, "duration"),
149 AllOf(Field(&AnnotatedSpan::span, CodepointSpan(14, 24)),
151 ElementsAre(AllOf(
168 AllOf(Field(&AnnotatedSpan::span, CodepointSpan(16, 34)),
170 ElementsAre(AllOf(
187 AllOf(Field(&AnnotatedSpan::span, CodepointSpan(14, 35)),
189 ElementsAre(AllOf(
205 AllOf(Field(&AnnotatedSpan::span, CodepointSpan(16, 28))
    [all...]
  /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/core/
AllOf.java 14 public class AllOf<T> extends DiagnosingMatcher<T> {
18 public AllOf(Iterable<Matcher<? super T>> matchers) {
42 * <pre>assertThat("myValue", allOf(startsWith("my"), containsString("Val")))</pre>
44 public static <T> Matcher<T> allOf(Iterable<Matcher<? super T>> matchers) {
45 return new AllOf<>(matchers);
51 * <pre>assertThat("myValue", allOf(startsWith("my"), containsString("Val")))</pre>
54 public static <T> Matcher<T> allOf(Matcher<? super T>... matchers) {
55 return allOf((List) Arrays.asList(matchers));
CombinableMatcher.java 31 return new CombinableMatcher<T>(new AllOf<T>(templatedListWith(other)));
IsCollectionContaining.java 10 import static org.hamcrest.core.AllOf.allOf;
109 return allOf(all);
130 return allOf(all);
  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_execution_profile_test.cc 26 using ::testing::AllOf;
70 AllOf(ContainsRegex(StrCat(dot_cycles, R"(\b.*%)",
pattern_matcher_test.cc 371 TEST(PatternMatcherTest, AllOf) {
372 using match::AllOf;
389 EXPECT_TRUE(Match(root, AllOf<HloInstruction>(scalar_pattern, f16_pattern,
392 Match(root, AllOf<HloInstruction>(f16_pattern, f16_compatible_pattern,
395 Match(root, AllOf<HloInstruction>(Broadcast(Op()), f16_pattern)));
397 root, AllOf<HloInstruction>(Broadcast(Op()), f16_compatible_pattern)));
399 Match(root, AllOf<HloInstruction>(Broadcast(Op()), scalar_pattern)));
403 using match::AllOf;
418 Match(root, AllOf<HloInstruction>(Constant(&constant), Broadcast(Op()))));
    [all...]
  /external/libtextclassifier/annotator/number/
number_test.cc 35 using testing::AllOf;
141 AllOf(Field(&AnnotatedSpan::span, CodepointSpan(8, 9)),
143 ElementsAre(AllOf(
157 AllOf(Field(&AnnotatedSpan::span, CodepointSpan(0, 2)),
159 ElementsAre(AllOf(
172 AllOf(Field(&ClassificationResult::collection, "number"),
184 AllOf(Field(&ClassificationResult::collection, "number"),
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/tools/llvm-cfi-verify/
GraphBuilder.cpp 43 using ::testing::AllOf;
169 Contains(AllOf(Field(&ConditionalBranchNode::Address, Eq(0xDEADBEEF)),
195 Contains(AllOf(Field(&ConditionalBranchNode::Address, Eq(0xDEADBEEF)),
224 Contains(AllOf(
233 Contains(AllOf(
262 Contains(AllOf(
271 Contains(AllOf(
331 Each(AllOf(Field(&ConditionalBranchNode::CFIProtection, Eq(false)),
355 AllOf(Field(&ConditionalBranchNode::Address, Eq(0xDEADBEEF)),
428 Each(AllOf(
    [all...]
  /external/grpc-grpc/test/cpp/ext/filters/census/
stats_plugin_end2end_test.cc 199 ::testing::AllOf(::testing::Property(&Distribution::count, 1),
205 ::testing::AllOf(::testing::Property(&Distribution::count, 1),
211 ::testing::AllOf(::testing::Property(&Distribution::count, 1),
217 ::testing::AllOf(::testing::Property(&Distribution::count, 1),
248 ::testing::AllOf(
263 ::testing::AllOf(
279 ::testing::AllOf(
341 ::testing::AllOf(::testing::Property(&Distribution::count, i + 1),
348 ::testing::AllOf(::testing::Property(&Distribution::count, i + 1),
355 ::testing::AllOf(::testing::Property(&Distribution::count, i + 1)
    [all...]
  /external/webrtc/webrtc/modules/video_coding/
video_coding_robustness_unittest.cc 24 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/
AllOfTest.java 7 import static org.hamcrest.core.AllOf.allOf;
18 Matcher<String> matcher = allOf(equalTo("irrelevant"), startsWith("irr"));
26 Matcher<String> matcher = allOf(startsWith("goo"), endsWith("ood"));
36 Matcher<String> matcher = allOf(startsWith("g"), startsWith("go"), endsWith("d"), startsWith("go"), startsWith("goo"));
44 final Matcher<SampleSubClass> matcher = allOf(
56 allOf(equalTo("good"), equalTo("bad"), equalTo("ugly")));
61 assertMismatchDescription("\"good\" was \"bad\"", allOf(equalTo("bad"), equalTo("good")), "bad");
  /external/webrtc/webrtc/modules/audio_processing/agc/
agc_unittest.cc 21 using ::testing::AllOf;
151 AllOf(Gt(last_level * 0.95), Lt(last_level * 1.05))))
  /external/google-breakpad/src/testing/test/
gmock-matchers_test.cc 77 using testing::AllOf;
    [all...]
  /developers/samples/android/ui/graphics/PdfRendererBasic/Application/src/androidTest/java/com/example/android/pdfrendererbasic/
PdfRendererBasicTest.java 36 import static org.hamcrest.core.AllOf.allOf;
51 onView(withId(R.id.previous)).check(matches(allOf(isDisplayed(), not(isEnabled()))));
52 onView(withId(R.id.next)).check(matches(allOf(isDisplayed(), isEnabled())));
56 onView(withId(R.id.previous)).check(matches(allOf(isDisplayed(), isEnabled())));
57 onView(withId(R.id.next)).check(matches(allOf(isDisplayed(), isEnabled())));
62 onView(withId(R.id.previous)).check(matches(allOf(isDisplayed(), isEnabled())));
63 onView(withId(R.id.next)).check(matches(allOf(isDisplayed(), not(isEnabled()))));
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/FuzzMutate/
OperationsTest.cpp 46 using testing::AllOf;
108 AllOf(SizeIs(Ge(1u)), Each(TypesMatch(i32))));
129 AllOf(SizeIs(Ge(1u)), Each(TypesMatch(i32))));
140 AllOf(SizeIs(Ge(1u)), Each(TypesMatch(f16))));
151 AllOf(SizeIs(Ge(3u)), Each(Truly(isPointer))));
  /external/googletest/googlemock/test/
gmock-matchers_test.cc     [all...]
gmock-generated-matchers_test.cc 66 using testing::AllOf;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/tools/llvm-exegesis/
BenchmarkResultTest.cpp 19 using ::testing::AllOf;
  /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/
CoreMatchers.java 9 * <pre>assertThat("myValue", allOf(startsWith("my"), containsString("Val")))</pre>
11 public static <T> org.hamcrest.Matcher<T> allOf(java.lang.Iterable<org.hamcrest.Matcher<? super T>> matchers) {
12 return org.hamcrest.core.AllOf.<T>allOf(matchers);
18 * <pre>assertThat("myValue", allOf(startsWith("my"), containsString("Val")))</pre>
21 public static <T> org.hamcrest.Matcher<T> allOf(org.hamcrest.Matcher<? super T>... matchers) {
22 return org.hamcrest.core.AllOf.<T>allOf(matchers);
  /external/google-breakpad/src/testing/include/gmock/
gmock-generated-matchers.h 664 // 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
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googlemock/include/gmock/
gmock-generated-matchers.h 298 // 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
    [all...]
  /external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/
Matchers.java 8 * <pre>assertThat("myValue", allOf(startsWith("my"), containsString("Val")))</pre>
10 public static <T> org.hamcrest.Matcher<T> allOf(java.lang.Iterable<org.hamcrest.Matcher<? super T>> matchers) {
11 return org.hamcrest.core.AllOf.<T>allOf(matchers);
17 * <pre>assertThat("myValue", allOf(startsWith("my"), containsString("Val")))</pre>
19 public static <T> org.hamcrest.Matcher<T> allOf(org.hamcrest.Matcher<? super T>... matchers) {
20 return org.hamcrest.core.AllOf.<T>allOf(matchers);
26 * <pre>assertThat("myValue", allOf(startsWith("my"), containsString("Val")))</pre>
28 public static <T> org.hamcrest.Matcher<T> allOf(org.hamcrest.Matcher<? super T> first, org.hamcrest.Matcher<? super T> second)
    [all...]
  /external/webrtc/webrtc/modules/video_coding/codecs/vp8/
simulcast_unittest.h 29 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),
    [all...]
  /developers/build/prebuilts/gradle/PictureInPicture/kotlinApp/app/src/androidTest/java/com/example/android/pictureinpicture/
MainActivityTest.kt 37 import org.hamcrest.core.AllOf.allOf
56 .check(matches(allOf(isDisplayed(), isPlaying())))
76 .check(matches(allOf(isDisplayed(), isPlaying())))
MediaSessionPlaybackActivityTest.kt 38 import org.hamcrest.core.AllOf.allOf
59 .check(matches(allOf(isDisplayed(), isPlaying())))
82 .check(matches(allOf(isDisplayed(), isPlaying())))

Completed in 581 milliseconds

1 2