Home
last modified time | relevance | path

Searched refs:CXXReinterpretCastExpr (Results 1 – 15 of 15) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DExprCXX.cpp790 CXXReinterpretCastExpr *
791 CXXReinterpretCastExpr::Create(const ASTContext &C, QualType T, in Create()
800 new (Buffer) CXXReinterpretCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, in Create()
808 CXXReinterpretCastExpr *
809 CXXReinterpretCastExpr::CreateEmpty(const ASTContext &C, unsigned PathSize) { in CreateEmpty()
811 return new (Buffer) CXXReinterpretCastExpr(EmptyShell(), PathSize); in CreateEmpty()
H A DStmtProfile.cpp1804 StmtProfiler::VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr *S) { in VisitCXXReinterpretCastExpr()
H A DStmtPrinter.cpp1767 void StmtPrinter::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *Node) { in VisitCXXReinterpretCastExpr()
H A DASTImporter.cpp8005 } else if (isa<CXXReinterpretCastExpr>(E)) { in VisitCXXNamedCastExpr()
8006 return CXXReinterpretCastExpr::Create( in VisitCXXNamedCastExpr()
H A DExprConstant.cpp7393 bool VisitCXXReinterpretCastExpr(const CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DExprCXX.h521 class CXXReinterpretCastExpr final
523 private llvm::TrailingObjects<CXXReinterpretCastExpr,
525 CXXReinterpretCastExpr(QualType ty, ExprValueKind vk, CastKind kind, Expr *op, in CXXReinterpretCastExpr() function
533 CXXReinterpretCastExpr(EmptyShell Empty, unsigned pathSize) in CXXReinterpretCastExpr() function
541 static CXXReinterpretCastExpr *Create(const ASTContext &Context, QualType T,
547 static CXXReinterpretCastExpr *CreateEmpty(const ASTContext &Context,
H A DRecursiveASTVisitor.h2350 DEF_TRAVERSE_STMT(CXXReinterpretCastExpr, {
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DStmtNodes.td122 def CXXReinterpretCastExpr : StmtNode<CXXNamedCastExpr>;
/netbsd-src/external/apache2/llvm/dist/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp946 const internal::VariadicDynCastAllOfMatcher<Stmt, CXXReinterpretCastExpr>
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReaderStmt.cpp1768 void ASTStmtReader::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr()
3583 S = CXXReinterpretCastExpr::CreateEmpty(Context, in ReadStmtFromStream()
H A DASTWriterStmt.cpp1661 void ASTStmtWriter::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *E) { in VisitCXXReinterpretCastExpr()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaCast.cpp351 return Op.complete(CXXReinterpretCastExpr::Create(Context, Op.ResultType, in BuildCXXNamedCast()
H A DTreeTransform.h11505 CXXReinterpretCastExpr *E) { in TransformCXXReinterpretCastExpr()
H A DSemaExpr.cpp13668 if (isa<CXXReinterpretCastExpr>(Op)) { in CheckIndirectionOperand()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
H A DASTMatchers.h2533 extern const internal::VariadicDynCastAllOfMatcher<Stmt, CXXReinterpretCastExpr>