Home
last modified time | relevance | path

Searched refs:importInto (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTImporter.cpp184 [[nodiscard]] Error importInto(ImportT &To, const ImportT &From) { in importInto() function in clang::ASTNodeImporter
185 return Importer.importInto(To, From); in importInto()
190 [[nodiscard]] Error importInto(ImportT *&To, ImportT *From) { in importInto() function in clang::ASTNodeImporter
799 if (Error Err = importInto(std::get<0>(Result), FTSInfo->getTemplate())) in ImportFunctionTemplateWithTemplateArgsFromSpecialization()
1244 if (Error Err = importInto(EllipsisLoc, From.getEllipsisLoc())) in import()
2179 if (Error Err = importInto(Name, D->getDeclName())) in ImportDeclParts()
2183 if (Error Err = importInto(Loc, D->getLocation())) in ImportDeclParts()
2198 if (Error Err = importInto(Name, D->getDeclName())) in ImportDeclParts()
2202 if (Error Err = importInto(Loc, D->getLocation())) in ImportDeclParts()
2218 if (Error Err = importInto(ToD, FromD)) in ImportDefinitionIfNeeded()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DASTImporter.h308 [[nodiscard]] llvm::Error importInto(ImportT &To, const ImportT &From) { in importInto() function