Home
last modified time | relevance | path

Searched refs:CXXDynamicCastExpr (Results 1 – 20 of 20) sorted by relevance

/external/clang/lib/AST/
DExprCXX.cpp527 CXXDynamicCastExpr *CXXDynamicCastExpr::Create(ASTContext &C, QualType T, in Create()
535 void *Buffer = C.Allocate(sizeof(CXXDynamicCastExpr) in Create()
537 CXXDynamicCastExpr *E = in Create()
538 new (Buffer) CXXDynamicCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, in Create()
544 CXXDynamicCastExpr *CXXDynamicCastExpr::CreateEmpty(ASTContext &C, in CreateEmpty()
547 C.Allocate(sizeof(CXXDynamicCastExpr) + PathSize * sizeof(CXXBaseSpecifier*)); in CreateEmpty()
548 return new (Buffer) CXXDynamicCastExpr(EmptyShell(), PathSize); in CreateEmpty()
559 bool CXXDynamicCastExpr::isAlwaysNull() const in isAlwaysNull()
DStmtProfile.cpp731 void StmtProfiler::VisitCXXDynamicCastExpr(const CXXDynamicCastExpr *S) { in VisitCXXDynamicCastExpr()
DStmtPrinter.cpp1164 void StmtPrinter::VisitCXXDynamicCastExpr(CXXDynamicCastExpr *Node) { in VisitCXXDynamicCastExpr()
DExpr.cpp2747 const CXXDynamicCastExpr *DCE = cast<CXXDynamicCastExpr>(this); in HasSideEffects()
DExprConstant.cpp2400 RetTy VisitCXXDynamicCastExpr(const CXXDynamicCastExpr *E) { in VisitCXXDynamicCastExpr()
/external/clang/include/clang/Basic/
DStmtNodes.td99 def CXXDynamicCastExpr : DStmt<CXXNamedCastExpr>;
/external/clang/include/clang/AST/
DExprCXX.h246 class CXXDynamicCastExpr : public CXXNamedCastExpr {
247 CXXDynamicCastExpr(QualType ty, ExprValueKind VK, CastKind kind, in CXXDynamicCastExpr() function
253 explicit CXXDynamicCastExpr(EmptyShell Empty, unsigned pathSize) in CXXDynamicCastExpr() function
257 static CXXDynamicCastExpr *Create(ASTContext &Context, QualType T,
263 static CXXDynamicCastExpr *CreateEmpty(ASTContext &Context,
271 static bool classof(const CXXDynamicCastExpr *) { return true; } in classof() argument
DRecursiveASTVisitor.h1959 DEF_TRAVERSE_STMT(CXXDynamicCastExpr, {
/external/clang/lib/Sema/
DSemaExceptionSpec.cpp815 static CanThrowResult canDynamicCastThrow(const CXXDynamicCastExpr *DC) { in canDynamicCastThrow()
861 CanThrowResult CT = canDynamicCastThrow(cast<CXXDynamicCastExpr>(E)); in canThrow()
DSemaCast.cpp269 return Op.complete(CXXDynamicCastExpr::Create(Context, Op.ResultType, in BuildCXXNamedCast()
DTreeTransform.h6987 TreeTransform<Derived>::TransformCXXDynamicCastExpr(CXXDynamicCastExpr *E) { in TransformCXXDynamicCastExpr()
/external/clang/lib/CodeGen/
DCGExprAgg.cpp553 assert(isa<CXXDynamicCastExpr>(E) && "CK_Dynamic without a dynamic_cast?"); in VisitCastExpr()
558 CGF.EmitDynamicCast(LV.getAddress(), cast<CXXDynamicCastExpr>(E)); in VisitCastExpr()
DCGExprScalar.cpp1078 const CXXDynamicCastExpr *DCE = cast<CXXDynamicCastExpr>(CE); in VisitCastExpr()
DCGExprCXX.cpp1786 const CXXDynamicCastExpr *DCE) { in EmitDynamicCast()
DCGExpr.cpp2460 const CXXDynamicCastExpr *DCE = cast<CXXDynamicCastExpr>(E); in EmitCastLValue()
DCodeGenFunction.h1830 llvm::Value *EmitDynamicCast(llvm::Value *V, const CXXDynamicCastExpr *DCE);
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h852 CXXDynamicCastExpr> dynamicCastExpr;
/external/clang/lib/Serialization/
DASTReaderStmt.cpp1152 void ASTStmtReader::VisitCXXDynamicCastExpr(CXXDynamicCastExpr *E) { in VisitCXXDynamicCastExpr()
2031 S = CXXDynamicCastExpr::CreateEmpty(Context, in ReadStmtFromStream()
DASTWriterStmt.cpp1130 void ASTStmtWriter::VisitCXXDynamicCastExpr(CXXDynamicCastExpr *E) { in VisitCXXDynamicCastExpr()
/external/clang/tools/libclang/
DRecursiveASTVisitor.h1877 DEF_TRAVERSE_STMT(CXXDynamicCastExpr, {