Lines Matching defs:ToFD
2773 auto *ToFD = LastDeclMatcher<FunctionDecl>().match(ToTU, Pattern);
2774 EXPECT_FALSE(ToFD->doesThisDeclarationHaveABody());
2775 EXPECT_EQ(ToFD->getPreviousDecl(), ImportedD);
2791 auto *ToFD = LastDeclMatcher<FunctionDecl>().match(ToTU, Pattern);
2792 EXPECT_FALSE(ToFD->doesThisDeclarationHaveABody());
2793 EXPECT_EQ(ToFD->getPreviousDecl(), ImportedD);
2808 auto *ToFD = LastDeclMatcher<FunctionDecl>().match(ToTU, Pattern);
2809 EXPECT_FALSE(ToFD->doesThisDeclarationHaveABody());
2810 EXPECT_EQ(ToFD->getPreviousDecl(), ImportedD);
2826 auto *ToFD = LastDeclMatcher<FunctionDecl>().match(ToTU, Pattern);
2827 EXPECT_TRUE(ToFD->doesThisDeclarationHaveABody());
2828 EXPECT_EQ(ToFD->getPreviousDecl(), ImportedD);
8348 auto *ToFD = Import(FromFD, Lang_CXX14);
8349 EXPECT_TRUE(ToFD);
8350 EXPECT_TRUE(ToFD->hasCapturedVLAType());
8351 EXPECT_NE(FromFD->getCapturedVLAType(), ToFD->getCapturedVLAType());