HomeSort by: relevance | last modified time | path
    Searched refs:ThrowLoc (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Initialization.h 322 static InitializedEntity InitializeException(SourceLocation ThrowLoc,
324 return InitializedEntity(EK_Exception, ThrowLoc, Type, NRVO);
Sema.h 6188 bool CheckCXXThrowOperand(SourceLocation ThrowLoc, QualType ThrowTy, Expr *E);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExprCXX.cpp 945 bool Sema::CheckCXXThrowOperand(SourceLocation ThrowLoc,
956 if (RequireCompleteType(ThrowLoc, Ty,
963 Diag(ThrowLoc, diag::err_throw_sizeless) << Ty << E->getSourceRange();
967 if (RequireNonAbstractType(ThrowLoc, ExceptionObjectTy,
979 MarkVTableUsed(ThrowLoc, RD);
1034 if (CheckCXXDefaultArgExpr(ThrowLoc, CD, CD->getParamDecl(I)))
1048 Diag(ThrowLoc, diag::warn_throw_underaligned_obj);
1049 Diag(ThrowLoc, diag::note_throw_underaligned_obj)
TreeTransform.h 3044 ExprResult RebuildCXXThrowExpr(SourceLocation ThrowLoc, Expr *Sub,
3046 return getSema().BuildCXXThrow(ThrowLoc, Sub, IsThrownVariableInScope);
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseExprCXX.cpp 1789 SourceLocation ThrowLoc = ConsumeToken(); // Eat the throw token.
1801 return Actions.ActOnCXXThrow(getCurScope(), ThrowLoc, nullptr);
1806 return Actions.ActOnCXXThrow(getCurScope(), ThrowLoc, Expr.get());
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ExprCXX.h 1195 CXXThrowExprBits.ThrowLoc = Loc;
1204 SourceLocation getThrowLoc() const { return CXXThrowExprBits.ThrowLoc; }
Stmt.h 677 SourceLocation ThrowLoc;
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderStmt.cpp 1825 E->CXXThrowExprBits.ThrowLoc = readSourceLocation();

Completed in 98 milliseconds