HomeSort by relevance Sort by last modified time
    Searched refs:CXXReinterpretCastExpr (Results 1 - 10 of 10) sorted by null

  /external/clang/lib/AST/
ExprCXX.cpp 548 CXXReinterpretCastExpr *
549 CXXReinterpretCastExpr::Create(ASTContext &C, QualType T, ExprValueKind VK,
556 C.Allocate(sizeof(CXXReinterpretCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
557 CXXReinterpretCastExpr *E =
558 new (Buffer) CXXReinterpretCastExpr(T, VK, K, Op, PathSize, WrittenTy, L,
564 CXXReinterpretCastExpr *
565 CXXReinterpretCastExpr::CreateEmpty(ASTContext &C, unsigned PathSize) {
566 void *Buffer = C.Allocate(sizeof(CXXReinterpretCastExpr)
568 return new (Buffer) CXXReinterpretCastExpr(EmptyShell(), PathSize);
    [all...]
StmtProfile.cpp 714 StmtProfiler::VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr *S) {
StmtPrinter.cpp 1140 void StmtPrinter::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *Node) {
    [all...]
  /external/clang/include/clang/AST/
ExprCXX.h 156 /// CXXDynamicCastExpr, CXXReinterpretCastExpr, and CXXConstCastExpr.
265 /// CXXReinterpretCastExpr - A C++ @c reinterpret_cast expression (C++
271 class CXXReinterpretCastExpr : public CXXNamedCastExpr {
272 CXXReinterpretCastExpr(QualType ty, ExprValueKind vk, CastKind kind,
279 CXXReinterpretCastExpr(EmptyShell Empty, unsigned pathSize)
283 static CXXReinterpretCastExpr *Create(ASTContext &Context, QualType T,
288 static CXXReinterpretCastExpr *CreateEmpty(ASTContext &Context,
294 static bool classof(const CXXReinterpretCastExpr *) { return true; }
    [all...]
RecursiveASTVisitor.h     [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp     [all...]
ASTWriterStmt.cpp     [all...]
  /external/clang/lib/Sema/
SemaCast.cpp 280 return Op.complete(CXXReinterpretCastExpr::Create(Context, Op.ResultType,
    [all...]
SemaExpr.cpp     [all...]
TreeTransform.h     [all...]

Completed in 3247 milliseconds