Lines Matching refs:ToFD
2553 auto *ToFD = LastDeclMatcher<FunctionDecl>().match(ToTU, Pattern); in TEST_P() local
2554 EXPECT_FALSE(ToFD->doesThisDeclarationHaveABody()); in TEST_P()
2555 EXPECT_EQ(ToFD->getPreviousDecl(), ImportedD); in TEST_P()
2571 auto *ToFD = LastDeclMatcher<FunctionDecl>().match(ToTU, Pattern); in TEST_P() local
2572 EXPECT_FALSE(ToFD->doesThisDeclarationHaveABody()); in TEST_P()
2573 EXPECT_EQ(ToFD->getPreviousDecl(), ImportedD); in TEST_P()
2588 auto *ToFD = LastDeclMatcher<FunctionDecl>().match(ToTU, Pattern); in TEST_P() local
2589 EXPECT_FALSE(ToFD->doesThisDeclarationHaveABody()); in TEST_P()
2590 EXPECT_EQ(ToFD->getPreviousDecl(), ImportedD); in TEST_P()
2606 auto *ToFD = LastDeclMatcher<FunctionDecl>().match(ToTU, Pattern); in TEST_P() local
2607 EXPECT_TRUE(ToFD->doesThisDeclarationHaveABody()); in TEST_P()
2608 EXPECT_EQ(ToFD->getPreviousDecl(), ImportedD); in TEST_P()
7278 auto *ToFD = Import(FromFD, Lang_CXX14); in TEST_P() local
7279 EXPECT_TRUE(ToFD); in TEST_P()
7280 EXPECT_TRUE(ToFD->hasCapturedVLAType()); in TEST_P()
7281 EXPECT_NE(FromFD->getCapturedVLAType(), ToFD->getCapturedVLAType()); in TEST_P()