Searched refs:TypeInfo (Results 1 – 3 of 3) sorted by relevance
34 EXPECT_STR_EQ(fbl::TypeInfo<int>::Name(), "int"); in type_info_test()35 EXPECT_STR_EQ(fbl::TypeInfo<double>::Name(), "double"); in type_info_test()36 EXPECT_STR_EQ(fbl::TypeInfo<test::Struct>::Name(), "test::Struct"); in type_info_test()37 EXPECT_STR_EQ(fbl::TypeInfo<test::StructWithVTable>::Name(), "test::StructWithVTable"); in type_info_test()38 EXPECT_STR_EQ(fbl::TypeInfo<test::IncompleteType>::Name(), "test::IncompleteType"); in type_info_test()43 EXPECT_STR_NE(fbl::TypeInfo<decltype(lambda)>::Name(), ""); in type_info_test()46 EXPECT_STR_EQ(fbl::TypeInfo<decltype(array)>::Name(), "char [10]"); in type_info_test()49 EXPECT_STR_EQ(fbl::TypeInfo<decltype(array_reference)>::Name(), "char (&)[10]"); in type_info_test()
45 class TypeInfo {49 static constexpr TypeInfo type_info; in Name()81 constexpr TypeInfo() in TypeInfo() function82 : TypeInfo(std::make_index_sequence<Size>{}) {} in TypeInfo()84 constexpr TypeInfo(std::index_sequence<Is...>) in TypeInfo() function
65 return fbl::TypeInfo<LockClass>::Name();
Completed in 4 milliseconds