Home
last modified time | relevance | path

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

/external/clang/lib/AST/
DExprCXX.cpp631 CXXConstCastExpr *CXXConstCastExpr::Create(ASTContext &C, QualType T, in Create()
637 return new (C) CXXConstCastExpr(T, VK, Op, WrittenTy, L, RParenLoc, AngleBrackets); in Create()
640 CXXConstCastExpr *CXXConstCastExpr::CreateEmpty(ASTContext &C) { in CreateEmpty()
641 return new (C) CXXConstCastExpr(EmptyShell()); in CreateEmpty()
DStmtProfile.cpp740 void StmtProfiler::VisitCXXConstCastExpr(const CXXConstCastExpr *S) { in VisitCXXConstCastExpr()
DStmtPrinter.cpp1217 void StmtPrinter::VisitCXXConstCastExpr(CXXConstCastExpr *Node) { in VisitCXXConstCastExpr()
/external/clang/include/clang/Basic/
DStmtNodes.td101 def CXXConstCastExpr : DStmt<CXXNamedCastExpr>;
/external/clang/include/clang/AST/
DExprCXX.h329 class CXXConstCastExpr : public CXXNamedCastExpr {
330 CXXConstCastExpr(QualType ty, ExprValueKind VK, Expr *op, in CXXConstCastExpr() function
336 explicit CXXConstCastExpr(EmptyShell Empty) in CXXConstCastExpr() function
340 static CXXConstCastExpr *Create(ASTContext &Context, QualType T,
345 static CXXConstCastExpr *CreateEmpty(ASTContext &Context);
DRecursiveASTVisitor.h1953 DEF_TRAVERSE_STMT(CXXConstCastExpr, {
/external/clang/lib/Serialization/
DASTReaderStmt.cpp1166 void ASTStmtReader::VisitCXXConstCastExpr(CXXConstCastExpr *E) { in VisitCXXConstCastExpr()
2046 S = CXXConstCastExpr::CreateEmpty(Context); in ReadStmtFromStream()
DASTWriterStmt.cpp1145 void ASTStmtWriter::VisitCXXConstCastExpr(CXXConstCastExpr *E) { in VisitCXXConstCastExpr()
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h1090 CXXConstCastExpr> constCastExpr;
/external/clang/tools/libclang/
DRecursiveASTVisitor.h1877 DEF_TRAVERSE_STMT(CXXConstCastExpr, {
/external/clang/lib/Sema/
DSemaCast.cpp259 return Op.complete(CXXConstCastExpr::Create(Context, Op.ResultType, in BuildCXXNamedCast()
DTreeTransform.h7047 TreeTransform<Derived>::TransformCXXConstCastExpr(CXXConstCastExpr *E) { in TransformCXXConstCastExpr()