/external/clang/test/Index/ |
D | annotate-tokens.m | 181 // CHECK: Punctuation: "(" [8:3 - 8:4] CStyleCastExpr= 182 // CHECK: Keyword: "void" [8:4 - 8:8] CStyleCastExpr= 183 // CHECK: Punctuation: ")" [8:8 - 8:9] CStyleCastExpr= 302 // CHECK: Punctuation: "(" [45:3 - 45:4] CStyleCastExpr= 303 // CHECK: Keyword: "void" [45:4 - 45:8] CStyleCastExpr= 304 // CHECK: Punctuation: ")" [45:8 - 45:9] CStyleCastExpr= 445 // CHECK: Punctuation: "(" [88:3 - 88:4] CStyleCastExpr= 446 // CHECK: Keyword: "void" [88:4 - 88:8] CStyleCastExpr= 447 // CHECK: Punctuation: ")" [88:8 - 88:9] CStyleCastExpr=
|
D | c-index-getCursor-test.m | 161 // CHECK: [52:18 - 52:33] CStyleCastExpr=
|
D | c-index-api-loadTU-test.m | 140 // CHECK: c-index-api-loadTU-test.m:54:18: CStyleCastExpr= Extent=[54:18 - 54:36]
|
/external/clang/lib/Analysis/ |
D | ReachableCode.cpp | 223 const CStyleCastExpr *CSC = cast<CStyleCastExpr>(S); in GetUnreachableLoc()
|
D | UninitializedValues.cpp | 394 else if (CStyleCastExpr *CSE = dyn_cast<CStyleCastExpr>(CE)) { in VisitCastExpr()
|
/external/clang/lib/ARCMigrate/ |
D | TransUnbridgedCasts.cpp | 214 if (CStyleCastExpr *CCE = dyn_cast<CStyleCastExpr>(E)) { in rewriteToBridgedCast()
|
/external/clang/lib/Rewrite/Frontend/ |
D | RewriteObjC.cpp | 315 void RewriteCastExpr(CStyleCastExpr *CE); 497 CStyleCastExpr* NoTypeInfoCStyleCastExpr(ASTContext *Ctx, QualType Ty, in NoTypeInfoCStyleCastExpr() 500 return CStyleCastExpr::Create(*Ctx, Ty, VK_RValue, Kind, E, 0, TInfo, in NoTypeInfoCStyleCastExpr() 2120 if (const CStyleCastExpr *ECE = dyn_cast<CStyleCastExpr>(E)) { in RewriteObjCQualifiedInterfaceTypes() 2243 if (const CStyleCastExpr *ECE = dyn_cast<CStyleCastExpr>(E)) in RewriteTypeOfDecl() 2910 while (CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(recExpr)) in SynthMessageExpr() 2968 else if (CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(userExpr)) { in SynthMessageExpr() 2970 while ((CE = dyn_cast<CStyleCastExpr>(userExpr))) in SynthMessageExpr() 3993 void RewriteObjC::RewriteCastExpr(CStyleCastExpr *CE) { in RewriteCastExpr() 4388 if (const CStyleCastExpr *ECE = dyn_cast<CStyleCastExpr>(E)) in RewriteByRefVar() [all …]
|
D | RewriteModernObjC.cpp | 334 void RewriteCastExpr(CStyleCastExpr *CE); 544 CStyleCastExpr* NoTypeInfoCStyleCastExpr(ASTContext *Ctx, QualType Ty, in NoTypeInfoCStyleCastExpr() 547 return CStyleCastExpr::Create(*Ctx, Ty, VK_RValue, Kind, E, 0, TInfo, in NoTypeInfoCStyleCastExpr() 2131 if (const CStyleCastExpr *ECE = dyn_cast<CStyleCastExpr>(E)) { in RewriteObjCQualifiedInterfaceTypes() 2254 if (const CStyleCastExpr *ECE = dyn_cast<CStyleCastExpr>(E)) in RewriteTypeOfDecl() 2735 CStyleCastExpr * ArrayLiteralObjects = in RewriteObjCArrayLiteralExpr() 2881 CStyleCastExpr * DictValueObjects = in RewriteObjCDictionaryLiteralExpr() 2897 CStyleCastExpr * DictKeyObjects = in RewriteObjCDictionaryLiteralExpr() 3409 while (CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(recExpr)) in SynthMessageExpr() 3467 else if (CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(userExpr)) { in SynthMessageExpr() [all …]
|
/external/clang/lib/AST/ |
D | Expr.cpp | 1551 CStyleCastExpr *CStyleCastExpr::Create(ASTContext &C, QualType T, in Create() 1558 C.Allocate(sizeof(CStyleCastExpr) + PathSize * sizeof(CXXBaseSpecifier*)); in Create() 1559 CStyleCastExpr *E = in Create() 1560 new (Buffer) CStyleCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, R); in Create() 1565 CStyleCastExpr *CStyleCastExpr::CreateEmpty(ASTContext &C, unsigned PathSize) { in CreateEmpty() 1567 C.Allocate(sizeof(CStyleCastExpr) + PathSize * sizeof(CXXBaseSpecifier*)); in CreateEmpty() 1568 return new (Buffer) CStyleCastExpr(EmptyShell(), PathSize); in CreateEmpty() 2051 const CStyleCastExpr *CStyleCE = cast<CStyleCastExpr>(this); in isUnusedResultAWarning() 2102 return cast<CStyleCastExpr>(E)->getSubExpr()->isOBJCGCCandidate(Ctx); in isOBJCGCCandidate()
|
D | StmtProfile.cpp | 380 void StmtProfiler::VisitCStyleCastExpr(const CStyleCastExpr *S) { in VisitCStyleCastExpr()
|
D | StmtPrinter.cpp | 909 void StmtPrinter::VisitCStyleCastExpr(CStyleCastExpr *Node) { in VisitCStyleCastExpr()
|
D | ASTImporter.cpp | 175 Expr *VisitCStyleCastExpr(CStyleCastExpr *E); 4086 Expr *ASTNodeImporter::VisitCStyleCastExpr(CStyleCastExpr *E) { in VisitCStyleCastExpr() 4103 return CStyleCastExpr::Create(Importer.getToContext(), T, in VisitCStyleCastExpr()
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 74 def CStyleCastExpr : DStmt<ExplicitCastExpr>;
|
/external/clang/include/clang/AST/ |
D | Expr.h | 2723 class CStyleCastExpr : public ExplicitCastExpr { 2727 CStyleCastExpr(QualType exprTy, ExprValueKind vk, CastKind kind, Expr *op, in CStyleCastExpr() function 2734 explicit CStyleCastExpr(EmptyShell Shell, unsigned PathSize) in CStyleCastExpr() function 2738 static CStyleCastExpr *Create(ASTContext &Context, QualType T, 2744 static CStyleCastExpr *CreateEmpty(ASTContext &Context, unsigned PathSize); 2758 static bool classof(const CStyleCastExpr *) { return true; } in classof() argument
|
D | RecursiveASTVisitor.h | 1947 DEF_TRAVERSE_STMT(CStyleCastExpr, {
|
/external/clang/lib/Sema/ |
D | SemaExprObjC.cpp | 2784 if (CStyleCastExpr *CCE = dyn_cast<CStyleCastExpr>(castedE)) in addFixitForObjCARCConversion() 3040 if (CStyleCastExpr *cast = dyn_cast<CStyleCastExpr>(realCast)) { in diagnoseARCUnbridgedCast()
|
D | Sema.cpp | 1212 return (!isa<CStyleCastExpr>(E) && in IsCallableWithAppend()
|
D | SemaStmt.cpp | 226 else if (const CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(E)) { in DiagnoseUnusedExprResult()
|
D | SemaCast.cpp | 2142 return Op.complete(CStyleCastExpr::Create(Context, Op.ResultType, in BuildCStyleCastExpr()
|
D | SemaChecking.cpp | 2745 if (const CStyleCastExpr *CCast = dyn_cast<CStyleCastExpr>(E)) { in checkFormatExpr()
|
D | SemaTemplate.cpp | 4650 E = CStyleCastExpr::Create(Context, T, VK_RValue, CK_IntegralCast, E, 0, in BuildExpressionFromIntegralTemplateArgument()
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 606 void ASTStmtReader::VisitCStyleCastExpr(CStyleCastExpr *E) { in VisitCStyleCastExpr() 1847 S = CStyleCastExpr::CreateEmpty(Context, in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 582 void ASTStmtWriter::VisitCStyleCastExpr(CStyleCastExpr *E) { in VisitCStyleCastExpr()
|
/external/clang/tools/libclang/ |
D | RecursiveASTVisitor.h | 1865 DEF_TRAVERSE_STMT(CStyleCastExpr, {
|
/external/clang/lib/CodeGen/ |
D | CGExpr.cpp | 1597 if (const CStyleCastExpr *Exp = dyn_cast<CStyleCastExpr>(E)) { in setObjCGCLValueClass()
|