Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DInitialization.h308 static InitializedEntity InitializeException(SourceLocation ThrowLoc, in InitializeException() argument
310 return InitializedEntity(EK_Exception, ThrowLoc, Type, NRVO); in InitializeException()
H A DSema.h5173 bool CheckCXXThrowOperand(SourceLocation ThrowLoc, QualType ThrowTy, Expr *E);
/freebsd-12.1/contrib/llvm/tools/clang/lib/Parse/
H A DParseExprCXX.cpp1595 SourceLocation ThrowLoc = ConsumeToken(); // Eat the throw token. in ParseThrowExpression() local
1607 return Actions.ActOnCXXThrow(getCurScope(), ThrowLoc, nullptr); in ParseThrowExpression()
1612 return Actions.ActOnCXXThrow(getCurScope(), ThrowLoc, Expr.get()); in ParseThrowExpression()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExprCXX.cpp857 bool Sema::CheckCXXThrowOperand(SourceLocation ThrowLoc, in CheckCXXThrowOperand() argument
868 if (RequireCompleteType(ThrowLoc, Ty, in CheckCXXThrowOperand()
874 if (RequireNonAbstractType(ThrowLoc, ExceptionObjectTy, in CheckCXXThrowOperand()
886 MarkVTableUsed(ThrowLoc, RD); in CheckCXXThrowOperand()
941 if (CheckCXXDefaultArgExpr(ThrowLoc, CD, CD->getParamDecl(I))) in CheckCXXThrowOperand()
H A DTreeTransform.h2671 ExprResult RebuildCXXThrowExpr(SourceLocation ThrowLoc, Expr *Sub, in RebuildCXXThrowExpr() argument
2673 return getSema().BuildCXXThrow(ThrowLoc, Sub, IsThrownVariableInScope); in RebuildCXXThrowExpr()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DExprCXX.h1032 CXXThrowExprBits.ThrowLoc = Loc; in CXXThrowExpr()
1040 SourceLocation getThrowLoc() const { return CXXThrowExprBits.ThrowLoc; } in getThrowLoc()
H A DStmt.h595 SourceLocation ThrowLoc; in alignas() local
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReaderStmt.cpp1479 E->CXXThrowExprBits.ThrowLoc = ReadSourceLocation(); in VisitCXXThrowExpr()