/external/clang/lib/AST/ |
ExprCXX.cpp | 633 CXXConstCastExpr *CXXConstCastExpr::Create(ASTContext &C, QualType T, 639 return new (C) CXXConstCastExpr(T, VK, Op, WrittenTy, L, RParenLoc, AngleBrackets); 642 CXXConstCastExpr *CXXConstCastExpr::CreateEmpty(ASTContext &C) { 643 return new (C) CXXConstCastExpr(EmptyShell()); [all...] |
StmtProfile.cpp | 778 void StmtProfiler::VisitCXXConstCastExpr(const CXXConstCastExpr *S) { [all...] |
/external/clang/include/clang/AST/ |
ExprCXX.h | 179 /// reinterpret_cast, and CXXConstCastExpr for \c const_cast. 333 class CXXConstCastExpr : public CXXNamedCastExpr { 334 CXXConstCastExpr(QualType ty, ExprValueKind VK, Expr *op, 340 explicit CXXConstCastExpr(EmptyShell Empty) 344 static CXXConstCastExpr *Create(ASTContext &Context, QualType T, 349 static CXXConstCastExpr *CreateEmpty(ASTContext &Context); [all...] |
RecursiveASTVisitor.h | [all...] |
/external/clang/include/clang/ASTMatchers/ |
ASTMatchers.h | 1200 CXXConstCastExpr> constCastExpr; [all...] |
/external/clang/tools/libclang/ |
RecursiveASTVisitor.h | [all...] |
/external/clang/lib/Serialization/ |
ASTReaderStmt.cpp | [all...] |
ASTWriterStmt.cpp | [all...] |
/external/clang/lib/Sema/ |
SemaCast.cpp | 261 return Op.complete(CXXConstCastExpr::Create(Context, Op.ResultType, [all...] |
TreeTransform.h | [all...] |