class AsTypeExpr

Declaration

class AsTypeExpr : public Expr { /* full declaration omitted */ };

Description

AsTypeExpr - Clang builtin function __builtin_astype [OpenCL 6.2.4.2] This AST node provides support for reinterpreting a type to another type of the same size.

Declared at: clang/include/clang/AST/Expr.h:6031

Inherits from: Expr

Member Variables

private clang::Stmt* SrcExpr
private clang::SourceLocation BuiltinLoc
private clang::SourceLocation RParenLoc

Inherited from Stmt:

protected

Method Overview

  • private AsTypeExpr(clang::Stmt::EmptyShell Empty)
  • public AsTypeExpr(clang::Expr * SrcExpr, clang::QualType DstType, clang::ExprValueKind VK, clang::ExprObjectKind OK, clang::SourceLocation BuiltinLoc, clang::SourceLocation RParenLoc)
  • public clang::Stmt::child_range children()
  • public clang::Stmt::const_child_range children() const
  • public static bool classof(const clang::Stmt * T)
  • public clang::SourceLocation getBeginLoc() const
  • public clang::SourceLocation getBuiltinLoc() const
  • public clang::SourceLocation getEndLoc() const
  • public clang::SourceLocation getRParenLoc() const
  • public clang::Expr * getSrcExpr() const

Inherited from Expr:

Inherited from ValueStmt:

Inherited from Stmt:

Methods

AsTypeExpr(clang::Stmt::EmptyShell Empty)

Declared at: clang/include/clang/AST/Expr.h:6038

Parameters

clang::Stmt::EmptyShell Empty

AsTypeExpr(clang::Expr* SrcExpr,
           clang::QualType DstType,
           clang::ExprValueKind VK,
           clang::ExprObjectKind OK,
           clang::SourceLocation BuiltinLoc,
           clang::SourceLocation RParenLoc)

Declared at: clang/include/clang/AST/Expr.h:6041

Parameters

clang::Expr* SrcExpr
clang::QualType DstType
clang::ExprValueKind VK
clang::ExprObjectKind OK
clang::SourceLocation BuiltinLoc
clang::SourceLocation RParenLoc

clang::Stmt::child_range children()

Declared at: clang/include/clang/AST/Expr.h:6066

clang::Stmt::const_child_range children() const

Declared at: clang/include/clang/AST/Expr.h:6067

static bool classof(const clang::Stmt* T)

Declared at: clang/include/clang/AST/Expr.h:6061

Parameters

const clang::Stmt* T

clang::SourceLocation getBeginLoc() const

Declared at: clang/include/clang/AST/Expr.h:6058

clang::SourceLocation getBuiltinLoc() const

Description

getBuiltinLoc - Return the location of the __builtin_astype token.

Declared at: clang/include/clang/AST/Expr.h:6053

clang::SourceLocation getEndLoc() const

Declared at: clang/include/clang/AST/Expr.h:6059

clang::SourceLocation getRParenLoc() const

Description

getRParenLoc - Return the location of final right parenthesis.

Declared at: clang/include/clang/AST/Expr.h:6056

clang::Expr* getSrcExpr() const

Description

getSrcExpr - Return the Expr to be converted.

Declared at: clang/include/clang/AST/Expr.h:6050