Home
last modified time | relevance | path

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

/external/clang/lib/AST/
DExprCXX.cpp695 CXXConstCastExpr *CXXConstCastExpr::Create(const ASTContext &C, QualType T, in Create()
701 return new (C) CXXConstCastExpr(T, VK, Op, WrittenTy, L, RParenLoc, AngleBrackets); in Create()
704 CXXConstCastExpr *CXXConstCastExpr::CreateEmpty(const ASTContext &C) { in CreateEmpty()
705 return new (C) CXXConstCastExpr(EmptyShell()); in CreateEmpty()
DStmtProfile.cpp886 void StmtProfiler::VisitCXXConstCastExpr(const CXXConstCastExpr *S) { in VisitCXXConstCastExpr()
DStmtPrinter.cpp1492 void StmtPrinter::VisitCXXConstCastExpr(CXXConstCastExpr *Node) { in VisitCXXConstCastExpr()
/external/clang/include/clang/Basic/
DStmtNodes.td102 def CXXConstCastExpr : DStmt<CXXNamedCastExpr>;
/external/clang/include/clang/AST/
DExprCXX.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);
DDataRecursiveASTVisitor.h1978 DEF_TRAVERSE_STMT(CXXConstCastExpr, {
DRecursiveASTVisitor.h2003 DEF_TRAVERSE_STMT(CXXConstCastExpr, {
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h1294 CXXConstCastExpr> constCastExpr;
/external/clang/lib/Serialization/
DASTReaderStmt.cpp1266 void ASTStmtReader::VisitCXXConstCastExpr(CXXConstCastExpr *E) { in VisitCXXConstCastExpr()
2518 S = CXXConstCastExpr::CreateEmpty(Context); in ReadStmtFromStream()
DASTWriterStmt.cpp1226 void ASTStmtWriter::VisitCXXConstCastExpr(CXXConstCastExpr *E) { in VisitCXXConstCastExpr()
/external/clang/lib/Sema/
DSemaCast.cpp264 return Op.complete(CXXConstCastExpr::Create(Context, Op.ResultType, in BuildCXXNamedCast()
DTreeTransform.h7743 TreeTransform<Derived>::TransformCXXConstCastExpr(CXXConstCastExpr *E) { in TransformCXXConstCastExpr()