Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTImporter.cpp1646 ExpectedExpr ToExprOrErr = import(T->getUnderlyingExpr()); in VisitTypeOfExprType() local
1647 if (!ToExprOrErr) in VisitTypeOfExprType()
1648 return ToExprOrErr.takeError(); in VisitTypeOfExprType()
1649 return Importer.getToContext().getTypeOfExprType(*ToExprOrErr, T->getKind()); in VisitTypeOfExprType()
1673 ExpectedExpr ToExprOrErr = import(T->getUnderlyingExpr()); in VisitDecltypeType() local
1674 if (!ToExprOrErr) in VisitDecltypeType()
1675 return ToExprOrErr.takeError(); in VisitDecltypeType()
1682 *ToExprOrErr, *ToUnderlyingTypeOrErr); in VisitDecltypeType()
10385 ExpectedExpr ToExprOrErr = Import(From->getInit()); in Import() local
10386 if (!ToExprOrErr) in Import()
[all …]