Searched refs:CXXConstCastExpr (Results 1 - 9 of 9) sorted by relevance
/external/clang/lib/AST/ |
H A D | ExprCXX.cpp | 688 CXXConstCastExpr *CXXConstCastExpr::Create(const ASTContext &C, QualType T, 694 return new (C) CXXConstCastExpr(T, VK, Op, WrittenTy, L, RParenLoc, AngleBrackets); 697 CXXConstCastExpr *CXXConstCastExpr::CreateEmpty(const ASTContext &C) { 698 return new (C) CXXConstCastExpr(EmptyShell());
|
H A D | StmtProfile.cpp | 1124 void StmtProfiler::VisitCXXConstCastExpr(const CXXConstCastExpr *S) {
|
/external/clang/include/clang/AST/ |
H A D | ExprCXX.h | 186 /// reinterpret_cast, and CXXConstCastExpr for \c const_cast. 340 class CXXConstCastExpr : public CXXNamedCastExpr { class in namespace:clang 341 CXXConstCastExpr(QualType ty, ExprValueKind VK, Expr *op, function in class:clang::CXXConstCastExpr 347 explicit CXXConstCastExpr(EmptyShell Empty) function in class:clang::CXXConstCastExpr 351 static CXXConstCastExpr *Create(const ASTContext &Context, QualType T, 356 static CXXConstCastExpr *CreateEmpty(const ASTContext &Context);
|
H A D | RecursiveASTVisitor.h | 2009 DEF_TRAVERSE_STMT(CXXConstCastExpr, {
|
/external/clang/include/clang/ASTMatchers/ |
H A D | ASTMatchers.h | 1637 CXXConstCastExpr> cxxConstCastExpr;
|
/external/clang/lib/Serialization/ |
H A D | ASTReaderStmt.cpp | 1309 void ASTStmtReader::VisitCXXConstCastExpr(CXXConstCastExpr *E) { 3145 S = CXXConstCastExpr::CreateEmpty(Context);
|
H A D | ASTWriterStmt.cpp | 1277 void ASTStmtWriter::VisitCXXConstCastExpr(CXXConstCastExpr *E) {
|
/external/clang/lib/Sema/ |
H A D | SemaCast.cpp | 259 return Op.complete(CXXConstCastExpr::Create(Context, Op.ResultType,
|
H A D | TreeTransform.h | 8922 TreeTransform<Derived>::TransformCXXConstCastExpr(CXXConstCastExpr *E) {
|
Completed in 259 milliseconds