Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-rtdyld/
Dllvm-rtdyld.cpp425 Expected<SymbolRef::Type> TypeOrErr = Sym.getType(); in printLineInfoForInput() local
426 if (!TypeOrErr) { in printLineInfoForInput()
428 consumeError(TypeOrErr.takeError()); in printLineInfoForInput()
431 SymbolRef::Type Type = *TypeOrErr; in printLineInfoForInput()
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
DASTImporter.cpp3084 ExpectedType TypeOrErr = import(D->getType()); in VisitEnumConstantDecl() local
3085 if (!TypeOrErr) in VisitEnumConstantDecl()
3086 return TypeOrErr.takeError(); in VisitEnumConstantDecl()
3095 Name.getAsIdentifierInfo(), *TypeOrErr, *InitOrErr, D->getInitVal())) in VisitEnumConstantDecl()
3783 auto TypeOrErr = import(D->getType()); in VisitIndirectFieldDecl() local
3784 if (!TypeOrErr) in VisitIndirectFieldDecl()
3785 return TypeOrErr.takeError(); in VisitIndirectFieldDecl()
3800 Loc, Name.getAsIdentifierInfo(), *TypeOrErr, CH)) in VisitIndirectFieldDecl()
5843 ExpectedType TypeOrErr = import(DTemplated->getType()); in VisitVarTemplateDecl() local
5844 if (!TypeOrErr) in VisitVarTemplateDecl()
[all …]