Home
last modified time | relevance | path

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

/external/clang/include/clang/Sema/
DInitialization.h244 static InitializedEntity InitializeException(SourceLocation ThrowLoc, in InitializeException() argument
246 return InitializedEntity(EK_Exception, ThrowLoc, Type, NRVO); in InitializeException()
DSema.h4036 ExprResult CheckCXXThrowOperand(SourceLocation ThrowLoc, Expr *E,
/external/clang/include/clang/AST/
DExprCXX.h799 SourceLocation ThrowLoc; variable
814 Op(expr), ThrowLoc(l), IsThrownVariableInScope(IsThrownVariableInScope) {} in CXXThrowExpr()
820 SourceLocation getThrowLoc() const { return ThrowLoc; } in getThrowLoc()
829 SourceLocation getLocStart() const LLVM_READONLY { return ThrowLoc; } in getLocStart()
832 return ThrowLoc; in getLocEnd()
/external/clang/lib/Parse/
DParseExprCXX.cpp1363 SourceLocation ThrowLoc = ConsumeToken(); // Eat the throw token. in ParseThrowExpression() local
1375 return Actions.ActOnCXXThrow(getCurScope(), ThrowLoc, 0); in ParseThrowExpression()
1380 return Actions.ActOnCXXThrow(getCurScope(), ThrowLoc, Expr.take()); in ParseThrowExpression()
/external/clang/lib/Sema/
DSemaExprCXX.cpp597 ExprResult Sema::CheckCXXThrowOperand(SourceLocation ThrowLoc, Expr *E, in CheckCXXThrowOperand() argument
623 if (RequireCompleteType(ThrowLoc, Ty, in CheckCXXThrowOperand()
629 if (RequireNonAbstractType(ThrowLoc, E->getType(), in CheckCXXThrowOperand()
653 InitializedEntity::InitializeException(ThrowLoc, E->getType(), in CheckCXXThrowOperand()
670 MarkVTableUsed(ThrowLoc, RD); in CheckCXXThrowOperand()
DTreeTransform.h2030 ExprResult RebuildCXXThrowExpr(SourceLocation ThrowLoc, Expr *Sub, in RebuildCXXThrowExpr() argument
2032 return getSema().BuildCXXThrow(ThrowLoc, Sub, IsThrownVariableInScope); in RebuildCXXThrowExpr()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp1306 E->ThrowLoc = ReadSourceLocation(Record, Idx); in VisitCXXThrowExpr()