Home
last modified time | relevance | path

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

/external/clang/lib/AST/
DExprCXX.cpp617 CXXConstCastExpr *CXXConstCastExpr::Create(const ASTContext &C, QualType T, in Create()
623 return new (C) CXXConstCastExpr(T, VK, Op, WrittenTy, L, RParenLoc, AngleBrackets); in Create()
626 CXXConstCastExpr *CXXConstCastExpr::CreateEmpty(const ASTContext &C) { in CreateEmpty()
627 return new (C) CXXConstCastExpr(EmptyShell()); in CreateEmpty()
DStmtProfile.cpp1238 void StmtProfiler::VisitCXXConstCastExpr(const CXXConstCastExpr *S) { in VisitCXXConstCastExpr()
DStmtPrinter.cpp1885 void StmtPrinter::VisitCXXConstCastExpr(CXXConstCastExpr *Node) { in VisitCXXConstCastExpr()
/external/clang/include/clang/Basic/
DStmtNodes.td109 def CXXConstCastExpr : DStmt<CXXNamedCastExpr>;
/external/clang/include/clang/AST/
DExprCXX.h372 class CXXConstCastExpr final
374 private llvm::TrailingObjects<CXXConstCastExpr, CXXBaseSpecifier *> {
375 CXXConstCastExpr(QualType ty, ExprValueKind VK, Expr *op, in CXXConstCastExpr() function
381 explicit CXXConstCastExpr(EmptyShell Empty) in CXXConstCastExpr() function
385 static CXXConstCastExpr *Create(const ASTContext &Context, QualType T,
390 static CXXConstCastExpr *CreateEmpty(const ASTContext &Context);
DRecursiveASTVisitor.h2107 DEF_TRAVERSE_STMT(CXXConstCastExpr, {
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h1862 CXXConstCastExpr> cxxConstCastExpr;
/external/clang/lib/Serialization/
DASTReaderStmt.cpp1325 void ASTStmtReader::VisitCXXConstCastExpr(CXXConstCastExpr *E) { in VisitCXXConstCastExpr()
3512 S = CXXConstCastExpr::CreateEmpty(Context); in ReadStmtFromStream()
DASTWriterStmt.cpp1298 void ASTStmtWriter::VisitCXXConstCastExpr(CXXConstCastExpr *E) { in VisitCXXConstCastExpr()
/external/clang/lib/Sema/
DSemaCast.cpp260 return Op.complete(CXXConstCastExpr::Create(Context, Op.ResultType, in BuildCXXNamedCast()
DTreeTransform.h9229 TreeTransform<Derived>::TransformCXXConstCastExpr(CXXConstCastExpr *E) { in TransformCXXConstCastExpr()