/external/clang/lib/AST/ |
ExprCXX.cpp | 526 CXXStaticCastExpr *CXXStaticCastExpr::Create(ASTContext &C, QualType T, 535 void *Buffer = C.Allocate(sizeof(CXXStaticCastExpr) 537 CXXStaticCastExpr *E = 538 new (Buffer) CXXStaticCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, 544 CXXStaticCastExpr *CXXStaticCastExpr::CreateEmpty(ASTContext &C, 547 C.Allocate(sizeof(CXXStaticCastExpr) + PathSize * sizeof(CXXBaseSpecifier*)); 548 return new (Buffer) CXXStaticCastExpr(EmptyShell(), PathSize); [all...] |
StmtProfile.cpp | 765 void StmtProfiler::VisitCXXStaticCastExpr(const CXXStaticCastExpr *S) { [all...] |
/external/clang/include/clang/AST/ |
ExprCXX.h | 177 /// representing "named" casts: CXXStaticCastExpr for \c static_cast, 231 class CXXStaticCastExpr : public CXXNamedCastExpr { 232 CXXStaticCastExpr(QualType ty, ExprValueKind vk, CastKind kind, Expr *op, 239 explicit CXXStaticCastExpr(EmptyShell Empty, unsigned PathSize) 243 static CXXStaticCastExpr *Create(ASTContext &Context, QualType T, 249 static CXXStaticCastExpr *CreateEmpty(ASTContext &Context, [all...] |
RecursiveASTVisitor.h | [all...] |
/external/clang/include/clang/ASTMatchers/ |
ASTMatchers.h | 1172 CXXStaticCastExpr> staticCastExpr; [all...] |
/external/clang/tools/libclang/ |
RecursiveASTVisitor.h | [all...] |
/external/clang/lib/Serialization/ |
ASTReaderStmt.cpp | [all...] |
ASTWriterStmt.cpp | [all...] |
/external/clang/lib/Sema/ |
SemaCast.cpp | 297 return Op.complete(CXXStaticCastExpr::Create(Context, Op.ResultType, [all...] |
TreeTransform.h | [all...] |