Lines Matching refs:FormatEntity
17 using Definition = FormatEntity::Entry::Definition;
18 using Entry = FormatEntity::Entry;
21 Definition d("foo", FormatEntity::Entry::Type::Invalid); in TEST()
25 EXPECT_EQ(d.type, FormatEntity::Entry::Type::Invalid); in TEST()
37 EXPECT_EQ(d.type, FormatEntity::Entry::Type::EscapeCode); in TEST()
45 Definition d("foo", FormatEntity::Entry::Type::Invalid, 33); in TEST()
49 EXPECT_EQ(d.type, FormatEntity::Entry::Type::Invalid); in TEST()
57 Definition d("foo", FormatEntity::Entry::Type::Invalid, 33); in TEST()
58 Definition parent("parent", FormatEntity::Entry::Type::Invalid, 1, &d); in TEST()
61 EXPECT_EQ(parent.type, FormatEntity::Entry::Type::Invalid); in TEST()
68 EXPECT_EQ(parent.children[0].type, FormatEntity::Entry::Type::Invalid); in TEST()
153 TEST(FormatEntity, LookupAllEntriesInTree) { in TEST() argument
156 EXPECT_TRUE(FormatEntity::Parse(testString, e).Success()) in TEST()