Searched defs:ThrowLoc (Results 1 - 5 of 5) sorted by relevance

/external/clang/include/clang/AST/
H A DExprCXX.h673 SourceLocation ThrowLoc; member in class:clang::CXXThrowExpr
688 Op(expr), ThrowLoc(l), IsThrownVariableInScope(IsThrownVariableInScope) {}
694 SourceLocation getThrowLoc() const { return ThrowLoc; }
705 return SourceRange(ThrowLoc, ThrowLoc);
706 return SourceRange(ThrowLoc, getSubExpr()->getSourceRange().getEnd());
/external/clang/include/clang/Sema/
H A DInitialization.h217 static InitializedEntity InitializeException(SourceLocation ThrowLoc, argument
219 return InitializedEntity(EK_Exception, ThrowLoc, Type, NRVO);
/external/clang/lib/Parse/
H A DParseExprCXX.cpp1188 SourceLocation ThrowLoc = ConsumeToken(); // Eat the throw token. local
1200 return Actions.ActOnCXXThrow(getCurScope(), ThrowLoc, 0);
1205 return Actions.ActOnCXXThrow(getCurScope(), ThrowLoc, Expr.take());
/external/clang/lib/Sema/
H A DSemaExprCXX.cpp571 ExprResult Sema::CheckCXXThrowOperand(SourceLocation ThrowLoc, Expr *E, argument
597 if (RequireCompleteType(ThrowLoc, Ty,
603 if (RequireNonAbstractType(ThrowLoc, E->getType(),
627 InitializedEntity::InitializeException(ThrowLoc, E->getType(),
644 MarkVTableUsed(ThrowLoc, RD);
H A DTreeTransform.h1943 ExprResult RebuildCXXThrowExpr(SourceLocation ThrowLoc, Expr *Sub, argument
1945 return getSema().BuildCXXThrow(ThrowLoc, Sub, IsThrownVariableInScope);

Completed in 120 milliseconds