Home
last modified time | relevance | path

Searched refs:AsTypeExpr (Results 1 – 12 of 12) sorted by relevance

/llvm-project-15.0.7/clang/include/clang/AST/
H A DComputeDependence.h48 class AsTypeExpr; variable
134 ExprDependence computeDependence(AsTypeExpr *E);
H A DExpr.h6031 class AsTypeExpr : public Expr {
6038 explicit AsTypeExpr(EmptyShell Empty) : Expr(AsTypeExprClass, Empty) {} in AsTypeExpr() function
6041 AsTypeExpr(Expr *SrcExpr, QualType DstType, ExprValueKind VK, in AsTypeExpr() function
H A DRecursiveASTVisitor.h2924 DEF_TRAVERSE_STMT(AsTypeExpr, {})
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DStmtNodes.td217 def AsTypeExpr : StmtNode<Expr>;
/llvm-project-15.0.7/clang/lib/AST/
H A DComputeDependence.cpp262 ExprDependence clang::computeDependence(AsTypeExpr *E) { in computeDependence()
H A DStmtProfile.cpp1879 void StmtProfiler::VisitAsTypeExpr(const AsTypeExpr *S) { in VisitAsTypeExpr()
H A DStmtPrinter.cpp2711 void StmtPrinter::VisitAsTypeExpr(AsTypeExpr *Node) { in VisitAsTypeExpr()
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTReaderStmt.cpp2261 void ASTStmtReader::VisitAsTypeExpr(AsTypeExpr *E) { in VisitAsTypeExpr()
3960 S = new (Context) AsTypeExpr(Empty); in ReadStmtFromStream()
H A DASTWriterStmt.cpp2107 void ASTStmtWriter::VisitAsTypeExpr(AsTypeExpr *E) { in VisitAsTypeExpr()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGExprScalar.cpp868 Value *VisitAsTypeExpr(AsTypeExpr *CE);
4812 Value *ScalarExprEmitter::VisitAsTypeExpr(AsTypeExpr *E) { in VisitAsTypeExpr()
/llvm-project-15.0.7/clang/lib/Sema/
H A DTreeTransform.h14420 TreeTransform<Derived>::TransformAsTypeExpr(AsTypeExpr *E) { in TransformAsTypeExpr()
H A DSemaExpr.cpp6892 return new (Context) AsTypeExpr(E, DestTy, VK, OK, BuiltinLoc, RParenLoc); in BuildAsTypeExpr()