Home
last modified time | relevance | path

Searched refs:MyType (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/googletest/googletest/test/
H A Dgoogletest-list-tests-unittest_.cc69 class MyType { class
71 explicit MyType(const std::string& a_value) : value_(a_value) {} in MyType() function in MyType
80 void PrintTo(const MyType& x, std::ostream* os) { *os << x.value(); } in PrintTo()
82 class ValueParamTest : public testing::TestWithParam<MyType> {};
91 MyType("one line"), MyType("two\nlines"),
92 MyType("a "
H A Dgtest_unittest.cc567 struct MyType {}; struct
568 inline bool operator==(MyType const&, MyType const&) { return true; } in operator ==()
576 EXPECT_EQ(ConvertToAll{}, MyType{}); in TEST()
577 EXPECT_EQ(ConvertToAllButNoPointers{}, MyType{}); in TEST()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/
H A DIPDBEnumChildren.h23 using MyType = IPDBEnumChildren<ChildType>; variable
/freebsd/contrib/googletest/googlemock/test/
H A Dgmock-matchers-comparisons_test.cc1640 struct MyType { in TEST() struct
1644 EXPECT_THAT((MyType{17, "foo"}), FieldsAre(Eq(17), HasSubstr("oo"))); in TEST()
/freebsd/contrib/googletest/docs/
H A Dadvanced.md1252 enum class MyType { MY_FOO = 0, MY_BAR = 1 };
1254 class MyTestSuite : public testing::TestWithParam<std::tuple<MyType, std::string>> {
1260 testing::Values(MyType::MY_FOO, MyType::MY_BAR),
1264 std::get<0>(info.param) == MyType::MY_FOO ? "Foo" : "Bar",