Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DComputeDependence.h47 class AsTypeExpr; variable
131 ExprDependence computeDependence(AsTypeExpr *E);
H A DExpr.h6019 class AsTypeExpr : public Expr {
6026 explicit AsTypeExpr(EmptyShell Empty) : Expr(AsTypeExprClass, Empty) {} in AsTypeExpr() function
6029 AsTypeExpr(Expr *SrcExpr, QualType DstType, ExprValueKind VK, in AsTypeExpr() function
H A DRecursiveASTVisitor.h2819 DEF_TRAVERSE_STMT(AsTypeExpr, {})
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td217 def AsTypeExpr : StmtNode<Expr>;
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DComputeDependence.cpp244 ExprDependence clang::computeDependence(AsTypeExpr *E) { in computeDependence()
H A DStmtProfile.cpp1804 void StmtProfiler::VisitAsTypeExpr(const AsTypeExpr *S) { in VisitAsTypeExpr()
H A DStmtPrinter.cpp2551 void StmtPrinter::VisitAsTypeExpr(AsTypeExpr *Node) { in VisitAsTypeExpr()
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2276 void ASTStmtReader::VisitAsTypeExpr(AsTypeExpr *E) { in VisitAsTypeExpr()
3823 S = new (Context) AsTypeExpr(Empty); in ReadStmtFromStream()
H A DASTWriterStmt.cpp2109 void ASTStmtWriter::VisitAsTypeExpr(AsTypeExpr *E) { in VisitAsTypeExpr()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprScalar.cpp866 Value *VisitAsTypeExpr(AsTypeExpr *CE);
4748 Value *ScalarExprEmitter::VisitAsTypeExpr(AsTypeExpr *E) { in VisitAsTypeExpr()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h14125 TreeTransform<Derived>::TransformAsTypeExpr(AsTypeExpr *E) { in TransformAsTypeExpr()
H A DSemaExpr.cpp6613 return new (Context) AsTypeExpr(E, DestTy, VK, OK, BuiltinLoc, RParenLoc); in BuildAsTypeExpr()