Home | History | Annotate | Download | only in Serialization

Lines Matching refs:FD

151     void AddFunctionDefinition(const FunctionDecl *FD) {
152 assert(FD->doesThisDeclarationHaveABody());
153 if (auto *CD = dyn_cast<CXXConstructorDecl>(FD)) {
159 Writer.AddStmt(FD->getBody());
270 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
271 Record.push_back(FD->doesThisDeclarationHaveABody());
272 if (FD->doesThisDeclarationHaveABody())
273 AddFunctionDefinition(FD);
2181 void ASTWriter::AddFunctionDefinition(const FunctionDecl *FD,
2185 ASTDeclWriter W(*this, FD->getASTContext(), Record);
2186 W.AddFunctionDefinition(FD);