Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DASTImporter.h336 llvm::Expected<TypeSourceInfo *> Import(TypeSourceInfo *FromTSI);
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTImporter.cpp3822 TypeSourceInfo *FromTSI = D->getTypeSourceInfo(); in VisitFunctionDecl() local
3856 FromTSI = Importer.getFromContext().getTrivialTypeSourceInfo( in VisitFunctionDecl()
3862 auto TInfo = importChecked(Err, FromTSI); in VisitFunctionDecl()
9094 Expected<TypeSourceInfo *> ASTImporter::Import(TypeSourceInfo *FromTSI) { in Import() argument
9095 if (!FromTSI) in Import()
9096 return FromTSI; in Import()
9100 ExpectedType TOrErr = Import(FromTSI->getType()); in Import()
9103 ExpectedSLoc BeginLocOrErr = Import(FromTSI->getTypeLoc().getBeginLoc()); in Import()