Searched defs:ThrowLoc (Results 1 - 5 of 5) sorted by relevance
/external/clang/include/clang/AST/ |
H A D | ExprCXX.h | 803 SourceLocation ThrowLoc; member in class:clang::CXXThrowExpr 818 Op(expr), ThrowLoc(l), IsThrownVariableInScope(IsThrownVariableInScope) {} 824 SourceLocation getThrowLoc() const { return ThrowLoc; } 833 SourceLocation getLocStart() const LLVM_READONLY { return ThrowLoc; } 836 return ThrowLoc;
|
/external/clang/include/clang/Sema/ |
H A D | Initialization.h | 252 static InitializedEntity InitializeException(SourceLocation ThrowLoc, argument 254 return InitializedEntity(EK_Exception, ThrowLoc, Type, NRVO);
|
/external/clang/lib/Parse/ |
H A D | ParseExprCXX.cpp | 1480 SourceLocation ThrowLoc = ConsumeToken(); // Eat the throw token. local 1492 return Actions.ActOnCXXThrow(getCurScope(), ThrowLoc, nullptr); 1497 return Actions.ActOnCXXThrow(getCurScope(), ThrowLoc, Expr.get());
|
/external/clang/lib/Sema/ |
H A D | SemaExprCXX.cpp | 637 ExprResult Sema::CheckCXXThrowOperand(SourceLocation ThrowLoc, Expr *E, argument 663 if (RequireCompleteType(ThrowLoc, Ty, 669 if (RequireNonAbstractType(ThrowLoc, E->getType(), 693 InitializedEntity::InitializeException(ThrowLoc, E->getType(), 710 MarkVTableUsed(ThrowLoc, RD);
|
H A D | TreeTransform.h | 2222 ExprResult RebuildCXXThrowExpr(SourceLocation ThrowLoc, Expr *Sub, argument 2224 return getSema().BuildCXXThrow(ThrowLoc, Sub, IsThrownVariableInScope);
|
Completed in 389 milliseconds