Searched refs:Each (Results 1 - 8 of 8) sorted by relevance

/gem5/tests/test-progs/asmtest/src/riscv/isa/rv64ui/
H A Dbeq.S20 # Each test checks both forward and backward branches
H A Dbge.S20 # Each test checks both forward and backward branches
H A Dblt.S20 # Each test checks both forward and backward branches
H A Dbne.S20 # Each test checks both forward and backward branches
H A Dbgeu.S20 # Each test checks both forward and backward branches
H A Dbltu.S20 # Each test checks both forward and backward branches
/gem5/ext/googletest/googlemock/test/
H A Dgmock-matchers_test.cc5323 // Tests Each().
5328 Matcher<set<int> > m = Each(2);
5331 Matcher<const int(&)[1]> n = Each(1); // NOLINT
5336 n = Each(3);
5342 m = Each(GreaterThan(0));
5345 m = Each(GreaterThan(10));
5351 Matcher<vector<int> > m = Each(1);
5360 EXPECT_THAT(some_vector, Each(1));
5362 EXPECT_THAT(some_vector, Not(Each(1)));
5363 EXPECT_THAT(some_vector, Each(
[all...]
/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h2871 // Implements Each(element_matcher) for the given argument type Container.
2917 // Implements polymorphic Each(element_matcher).
3291 // Each element is a char interpreted as bool. They are stored as a
4289 // Each(m) is semantically equivalent to Not(Contains(Not(m))). Only
4294 // // Each(m) matches an empty container, regardless of what m is.
4295 // EXPECT_THAT(page_ids, Each(Eq(1)));
4296 // EXPECT_THAT(page_ids, Each(Eq(77)));
4299 // EXPECT_THAT(page_ids, Each(Gt(0)));
4300 // EXPECT_THAT(page_ids, Not(Each(Gt(4))));
4302 // EXPECT_THAT(page_ids, Not(Each(L
4314 inline internal::EachMatcher<M> Each(M matcher) { function in namespace:testing
[all...]

Completed in 47 milliseconds