Home
last modified time | relevance | path

Searched refs:CStyleCastExpr (Results 1 – 25 of 29) sorted by relevance

12

/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DIdenticalExprChecker.cpp363 const CStyleCastExpr* CastExpr1 = cast<CStyleCastExpr>(Stmt1); in isIdenticalStmt()
364 const CStyleCastExpr* CastExpr2 = cast<CStyleCastExpr>(Stmt2); in isIdenticalStmt()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp310 void RewriteCastExpr(CStyleCastExpr *CE);
491 CStyleCastExpr* NoTypeInfoCStyleCastExpr(ASTContext *Ctx, QualType Ty, in NoTypeInfoCStyleCastExpr()
494 return CStyleCastExpr::Create(*Ctx, Ty, VK_RValue, Kind, E, nullptr, in NoTypeInfoCStyleCastExpr()
2089 if (const CStyleCastExpr *ECE = dyn_cast<CStyleCastExpr>(E)) { in RewriteObjCQualifiedInterfaceTypes()
2212 if (const CStyleCastExpr *ECE = dyn_cast<CStyleCastExpr>(E)) in RewriteTypeOfDecl()
2844 while (CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(recExpr)) in SynthMessageExpr()
2896 else if (CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(userExpr)) { in SynthMessageExpr()
2898 while ((CE = dyn_cast<CStyleCastExpr>(userExpr))) in SynthMessageExpr()
3896 void RewriteObjC::RewriteCastExpr(CStyleCastExpr *CE) { in RewriteCastExpr()
4284 if (const CStyleCastExpr *ECE = dyn_cast<CStyleCastExpr>(E)) in RewriteByRefVar()
[all …]
H A DRewriteModernObjC.cpp367 void RewriteCastExpr(CStyleCastExpr *CE);
585 CStyleCastExpr* NoTypeInfoCStyleCastExpr(ASTContext *Ctx, QualType Ty, in NoTypeInfoCStyleCastExpr()
588 return CStyleCastExpr::Create(*Ctx, Ty, VK_RValue, Kind, E, nullptr, in NoTypeInfoCStyleCastExpr()
2171 if (const CStyleCastExpr *ECE = dyn_cast<CStyleCastExpr>(E)) { in RewriteObjCQualifiedInterfaceTypes()
2298 if (const CStyleCastExpr *ECE = dyn_cast<CStyleCastExpr>(E)) in RewriteTypeOfDecl()
2749 CStyleCastExpr * ArrayLiteralObjects = in RewriteObjCArrayLiteralExpr()
2878 CStyleCastExpr * DictValueObjects = in RewriteObjCDictionaryLiteralExpr()
2892 CStyleCastExpr * DictKeyObjects = in RewriteObjCDictionaryLiteralExpr()
3414 while (CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(recExpr)) in SynthMessageExpr()
3466 else if (CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(userExpr)) { in SynthMessageExpr()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
H A DTransUnbridgedCasts.cpp229 if (CStyleCastExpr *CCE = dyn_cast<CStyleCastExpr>(E)) { in rewriteToBridgedCast()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/
H A DReachableCode.cpp588 const CStyleCastExpr *CSC = cast<CStyleCastExpr>(S); in GetUnreachableLoc()
H A DUninitializedValues.cpp449 else if (const auto *CSE = dyn_cast<CStyleCastExpr>(CE)) { in VisitCastExpr()
H A DCalledOnceCheck.cpp1621 void VisitCStyleCastExpr(const CStyleCastExpr *Cast) { in VisitCStyleCastExpr()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DExpr.cpp1924 return static_cast<CStyleCastExpr *>(this) in getTrailingFPFeatures()
1968 CStyleCastExpr *CStyleCastExpr::Create(const ASTContext &C, QualType T, in Create()
1978 CStyleCastExpr *E = in Create()
1979 new (Buffer) CStyleCastExpr(T, VK, K, Op, PathSize, FPO, WrittenTy, L, R); in Create()
1986 CStyleCastExpr *CStyleCastExpr::CreateEmpty(const ASTContext &C, in CreateEmpty()
1992 return new (Buffer) CStyleCastExpr(EmptyShell(), PathSize, HasFPFeatures); in CreateEmpty()
2724 const CStyleCastExpr *CStyleCE = cast<CStyleCastExpr>(this); in isUnusedResultAWarning()
2782 return cast<CStyleCastExpr>(E)->getSubExpr()->isOBJCGCCandidate(Ctx); in isOBJCGCCandidate()
H A DStmtProfile.cpp1335 void StmtProfiler::VisitCStyleCastExpr(const CStyleCastExpr *S) { in VisitCStyleCastExpr()
H A DStmtPrinter.cpp1438 void StmtPrinter::VisitCStyleCastExpr(CStyleCastExpr *Node) { in VisitCStyleCastExpr()
H A DASTImporter.cpp7128 auto *CCE = cast<CStyleCastExpr>(E); in VisitExplicitCastExpr()
7135 return CStyleCastExpr::Create( in VisitExplicitCastExpr()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DStmtNodes.td85 def CStyleCastExpr : StmtNode<ExplicitCastExpr>;
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DExpr.h3657 class CStyleCastExpr final
3659 private llvm::TrailingObjects<CStyleCastExpr, CXXBaseSpecifier *,
3664 CStyleCastExpr(QualType exprTy, ExprValueKind vk, CastKind kind, Expr *op, in CStyleCastExpr() function
3675 explicit CStyleCastExpr(EmptyShell Shell, unsigned PathSize, in CStyleCastExpr() function
3684 static CStyleCastExpr *
3689 static CStyleCastExpr *CreateEmpty(const ASTContext &Context,
H A DRecursiveASTVisitor.h2330 DEF_TRAVERSE_STMT(CStyleCastExpr, {
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaExprObjC.cpp3784 if (CStyleCastExpr *CCE = dyn_cast<CStyleCastExpr>(castedE)) in addFixitForObjCARCConversion()
4521 if (CStyleCastExpr *cast = dyn_cast<CStyleCastExpr>(realCast)) { in diagnoseARCUnbridgedCast()
H A DSema.cpp2373 return (!isa<CStyleCastExpr>(E) && in IsCallableWithAppend()
H A DSemaStmt.cpp360 else if (const CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(E)) { in DiagnoseUnusedExprResult()
H A DSemaCast.cpp3201 return Op.complete(CStyleCastExpr::Create( in BuildCStyleCastExpr()
H A DSemaChecking.cpp2649 const auto *CE = dyn_cast<CStyleCastExpr>(UO->getSubExpr()); in isValidBPFPreserveEnumValueArg()
4428 if (const CStyleCastExpr *CSCE = dyn_cast<CStyleCastExpr>(FormatExpr)) in DiagnoseCStringFormatDirectiveInCFAPI()
8950 if (const CStyleCastExpr *CCast = dyn_cast<CStyleCastExpr>(E)) { in checkFormatExpr()
/netbsd-src/external/apache2/llvm/dist/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp954 const internal::VariadicDynCastAllOfMatcher<Stmt, CStyleCastExpr>
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReaderStmt.cpp1152 void ASTStmtReader::VisitCStyleCastExpr(CStyleCastExpr *E) { in VisitCStyleCastExpr()
2940 S = CStyleCastExpr::CreateEmpty( in ReadStmtFromStream()
H A DASTWriterStmt.cpp1022 void ASTStmtWriter::VisitCStyleCastExpr(CStyleCastExpr *E) { in VisitCStyleCastExpr()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
H A DASTMatchers.h2584 extern const internal::VariadicDynCastAllOfMatcher<Stmt, CStyleCastExpr>
/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/
H A DCIndex.cpp4028 CStyleCastExpr *CC = static_cast<CStyleCastExpr *>(expr); in evaluateExpr()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGExpr.cpp2399 if (const auto *Exp = dyn_cast<CStyleCastExpr>(E)) { in setObjCGCLValueClass()

12