Lines Matching refs:decl_names
40 std::vector<std::string> decl_names; member in __anonff6a0b330111::TestASTFrontendAction
52 decl_names); in CreateASTConsumer()
59 std::vector<std::string> &decl_names) : in Visitor() argument
61 decl_names_(decl_names) {} in Visitor()
97 ASSERT_EQ(2U, test_action.decl_names.size()); in TEST()
98 EXPECT_EQ("main", test_action.decl_names[0]); in TEST()
99 EXPECT_EQ("x", test_action.decl_names[1]); in TEST()
117 ASSERT_EQ(2U, test_action.decl_names.size()); in TEST()
118 EXPECT_EQ("main", test_action.decl_names[0]); in TEST()
119 EXPECT_EQ("x", test_action.decl_names[1]); in TEST()
145 ASSERT_EQ(13U, test_action.decl_names.size()); in TEST()
146 EXPECT_EQ("A", test_action.decl_names[0]); in TEST()
147 EXPECT_EQ("c", test_action.decl_names[12]); in TEST()