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

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

Completed in 286 milliseconds