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.cpp185 [[nodiscard]] Error importInto(ImportT &To, const ImportT &From) { in importInto() function in clang::ASTNodeImporter
186 return Importer.importInto(To, From); in importInto()
191 [[nodiscard]] Error importInto(ImportT *&To, ImportT *From) { in importInto() function in clang::ASTNodeImporter
745 if (Error Err = importInto(std::get<0>(Result), FTSInfo->getTemplate())) in ImportFunctionTemplateWithTemplateArgsFromSpecialization()
1019 if (Error Err = importInto(EllipsisLoc, From.getEllipsisLoc())) in import()
1911 if (Error Err = importInto(Name, D->getDeclName())) in ImportDeclParts()
1915 if (Error Err = importInto(Loc, D->getLocation())) in ImportDeclParts()
1930 if (Error Err = importInto(Name, D->getDeclName())) in ImportDeclParts()
1934 if (Error Err = importInto(Loc, D->getLocation())) in ImportDeclParts()
1950 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