Home
last modified time | relevance | path

Searched refs:CXXConstCastExpr (Results 1 – 11 of 11) sorted by relevance

/trueos/contrib/llvm/tools/clang/lib/AST/
HDExprCXX.cpp696 CXXConstCastExpr *CXXConstCastExpr::Create(const ASTContext &C, QualType T, in Create()
702 return new (C) CXXConstCastExpr(T, VK, Op, WrittenTy, L, RParenLoc, AngleBrackets); in Create()
705 CXXConstCastExpr *CXXConstCastExpr::CreateEmpty(const ASTContext &C) { in CreateEmpty()
706 return new (C) CXXConstCastExpr(EmptyShell()); in CreateEmpty()
HDStmtProfile.cpp794 void StmtProfiler::VisitCXXConstCastExpr(const CXXConstCastExpr *S) { in VisitCXXConstCastExpr()
HDStmtPrinter.cpp1316 void StmtPrinter::VisitCXXConstCastExpr(CXXConstCastExpr *Node) { in VisitCXXConstCastExpr()
/trueos/contrib/llvm/tools/clang/include/clang/Basic/
HDStmtNodes.td102 def CXXConstCastExpr : DStmt<CXXNamedCastExpr>;
/trueos/contrib/llvm/tools/clang/include/clang/AST/
HDExprCXX.h333 class CXXConstCastExpr : public CXXNamedCastExpr {
334 CXXConstCastExpr(QualType ty, ExprValueKind VK, Expr *op, in CXXConstCastExpr() function
340 explicit CXXConstCastExpr(EmptyShell Empty) in CXXConstCastExpr() function
344 static CXXConstCastExpr *Create(const ASTContext &Context, QualType T,
349 static CXXConstCastExpr *CreateEmpty(const ASTContext &Context);
HDRecursiveASTVisitor.h2026 DEF_TRAVERSE_STMT(CXXConstCastExpr, {
/trueos/contrib/llvm/tools/clang/include/clang/ASTMatchers/
HDASTMatchers.h1210 CXXConstCastExpr> constCastExpr;
/trueos/contrib/llvm/tools/clang/lib/Serialization/
HDASTReaderStmt.cpp1268 void ASTStmtReader::VisitCXXConstCastExpr(CXXConstCastExpr *E) { in VisitCXXConstCastExpr()
2282 S = CXXConstCastExpr::CreateEmpty(Context); in ReadStmtFromStream()
HDASTWriterStmt.cpp1231 void ASTStmtWriter::VisitCXXConstCastExpr(CXXConstCastExpr *E) { in VisitCXXConstCastExpr()
/trueos/contrib/llvm/tools/clang/lib/Sema/
HDSemaCast.cpp263 return Op.complete(CXXConstCastExpr::Create(Context, Op.ResultType, in BuildCXXNamedCast()
HDTreeTransform.h7376 TreeTransform<Derived>::TransformCXXConstCastExpr(CXXConstCastExpr *E) { in TransformCXXConstCastExpr()