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

  /external/clang/lib/AST/
ExprCXX.cpp 571 CXXReinterpretCastExpr *
572 CXXReinterpretCastExpr::Create(ASTContext &C, QualType T, ExprValueKind VK,
579 C.Allocate(sizeof(CXXReinterpretCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
580 CXXReinterpretCastExpr *E =
581 new (Buffer) CXXReinterpretCastExpr(T, VK, K, Op, PathSize, WrittenTy, L,
587 CXXReinterpretCastExpr *
588 CXXReinterpretCastExpr::CreateEmpty(ASTContext &C, unsigned PathSize) {
589 void *Buffer = C.Allocate(sizeof(CXXReinterpretCastExpr)
591 return new (Buffer) CXXReinterpretCastExpr(EmptyShell(), PathSize);
    [all...]
StmtProfile.cpp 731 StmtProfiler::VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr *S) {
StmtPrinter.cpp     [all...]
ExprConstant.cpp     [all...]
  /external/clang/include/clang/AST/
ExprCXX.h 158 /// CXXDynamicCastExpr, CXXReinterpretCastExpr, and CXXConstCastExpr.
268 /// CXXReinterpretCastExpr - A C++ @c reinterpret_cast expression (C++
274 class CXXReinterpretCastExpr : public CXXNamedCastExpr {
275 CXXReinterpretCastExpr(QualType ty, ExprValueKind vk, CastKind kind,
282 CXXReinterpretCastExpr(EmptyShell Empty, unsigned pathSize)
286 static CXXReinterpretCastExpr *Create(ASTContext &Context, QualType T,
291 static CXXReinterpretCastExpr *CreateEmpty(ASTContext &Context,
297 static bool classof(const CXXReinterpretCastExpr *) { return true; }
    [all...]
RecursiveASTVisitor.h     [all...]
  /external/clang/lib/Sema/
SemaCast.cpp 280 return Op.complete(CXXReinterpretCastExpr::Create(Context, Op.ResultType,
    [all...]
SemaExpr.cpp     [all...]
TreeTransform.h     [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp     [all...]
ASTWriterStmt.cpp     [all...]

Completed in 74 milliseconds