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

/external/clang/include/clang/Sema/
H A DInitialization.h252 static InitializedEntity InitializeException(SourceLocation ThrowLoc, argument
254 return InitializedEntity(EK_Exception, ThrowLoc, Type, NRVO);
H A DSema.h4273 ExprResult CheckCXXThrowOperand(SourceLocation ThrowLoc, Expr *E,
/external/clang/include/clang/AST/
H A DExprCXX.h803 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/lib/Parse/
H A DParseExprCXX.cpp1480 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 DSemaExprCXX.cpp637 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 DTreeTransform.h2222 ExprResult RebuildCXXThrowExpr(SourceLocation ThrowLoc, Expr *Sub, argument
2224 return getSema().BuildCXXThrow(ThrowLoc, Sub, IsThrownVariableInScope);
/external/clang/lib/Serialization/
H A DASTReaderStmt.cpp1313 E->ThrowLoc = ReadSourceLocation(Record, Idx);

Completed in 500 milliseconds