Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp308 void RewriteCastExpr(CStyleCastExpr *CE);
489 CStyleCastExpr* NoTypeInfoCStyleCastExpr(ASTContext *Ctx, QualType Ty, in NoTypeInfoCStyleCastExpr()
492 return CStyleCastExpr::Create(*Ctx, Ty, VK_PRValue, Kind, E, nullptr, in NoTypeInfoCStyleCastExpr()
2087 if (const CStyleCastExpr *ECE = dyn_cast<CStyleCastExpr>(E)) { in RewriteObjCQualifiedInterfaceTypes()
2210 if (const CStyleCastExpr *ECE = dyn_cast<CStyleCastExpr>(E)) in RewriteTypeOfDecl()
2832 while (CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(recExpr)) in SynthMessageExpr()
2884 else if (CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(userExpr)) { in SynthMessageExpr()
2886 while ((CE = dyn_cast<CStyleCastExpr>(userExpr))) in SynthMessageExpr()
3874 void RewriteObjC::RewriteCastExpr(CStyleCastExpr *CE) { in RewriteCastExpr()
4261 if (const CStyleCastExpr *ECE = dyn_cast<CStyleCastExpr>(E)) in RewriteByRefVar()
[all …]
H A DRewriteModernObjC.cpp366 void RewriteCastExpr(CStyleCastExpr *CE);
584 CStyleCastExpr* NoTypeInfoCStyleCastExpr(ASTContext *Ctx, QualType Ty, in NoTypeInfoCStyleCastExpr()
587 return CStyleCastExpr::Create(*Ctx, Ty, VK_PRValue, Kind, E, nullptr, in NoTypeInfoCStyleCastExpr()
2170 if (const CStyleCastExpr *ECE = dyn_cast<CStyleCastExpr>(E)) { in RewriteObjCQualifiedInterfaceTypes()
2297 if (const CStyleCastExpr *ECE = dyn_cast<CStyleCastExpr>(E)) in RewriteTypeOfDecl()
2748 CStyleCastExpr * ArrayLiteralObjects = in RewriteObjCArrayLiteralExpr()
2877 CStyleCastExpr * DictValueObjects = in RewriteObjCDictionaryLiteralExpr()
2891 CStyleCastExpr * DictKeyObjects = in RewriteObjCDictionaryLiteralExpr()
3403 while (CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(recExpr)) in SynthMessageExpr()
3455 else if (CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(userExpr)) { in SynthMessageExpr()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaBPF.cpp84 const auto *CE = dyn_cast<CStyleCastExpr>(UO->getSubExpr()); in isValidPreserveEnumValueArg()
H A DSemaObjC.cpp2288 if (const CStyleCastExpr *CSCE = dyn_cast<CStyleCastExpr>(FormatExpr)) in DiagnoseCStringFormatDirectiveInCFAPI()
H A DSemaExprObjC.cpp3782 if (CStyleCastExpr *CCE = dyn_cast<CStyleCastExpr>(castedE)) in addFixitForObjCARCConversion()
4525 if (CStyleCastExpr *cast = dyn_cast<CStyleCastExpr>(realCast)) { in diagnoseARCUnbridgedCast()
H A DSemaStmt.cpp382 if (const CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(E)) { in DiagnoseUnused()
H A DSema.cpp2800 return (!isa<CStyleCastExpr>(E) && in IsCallableWithAppend()
H A DSemaCast.cpp3462 return Op.complete(CStyleCastExpr::Create( in BuildCStyleCastExpr()
H A DSemaChecking.cpp8448 if (const CStyleCastExpr *CCast = dyn_cast<CStyleCastExpr>(E)) { in checkFormatExpr()
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DReachableCode.cpp637 const CStyleCastExpr *CSC = cast<CStyleCastExpr>(S); in GetUnreachableLoc()
H A DUninitializedValues.cpp456 else if (const auto *CSE = dyn_cast<CStyleCastExpr>(CE)) { in VisitCastExpr()
H A DCalledOnceCheck.cpp1620 void VisitCStyleCastExpr(const CStyleCastExpr *Cast) { in VisitCStyleCastExpr()
H A DUnsafeBufferUsage.cpp605 if (auto CCast = dyn_cast<CStyleCastExpr>(Arg0)) { in isSafeSpanTwoParamConstruct()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp2059 return static_cast<CStyleCastExpr *>(this) in getTrailingFPFeatures()
2103 CStyleCastExpr *CStyleCastExpr::Create(const ASTContext &C, QualType T, in Create()
2113 CStyleCastExpr *E = in Create()
2114 new (Buffer) CStyleCastExpr(T, VK, K, Op, PathSize, FPO, WrittenTy, L, R); in Create()
2121 CStyleCastExpr *CStyleCastExpr::CreateEmpty(const ASTContext &C, in CreateEmpty()
2127 return new (Buffer) CStyleCastExpr(EmptyShell(), PathSize, HasFPFeatures); in CreateEmpty()
2955 const CStyleCastExpr *CStyleCE = cast<CStyleCastExpr>(this); in isUnusedResultAWarning()
3016 return cast<CStyleCastExpr>(E)->getSubExpr()->isOBJCGCCandidate(Ctx); in isOBJCGCCandidate()
H A DStmtProfile.cpp1533 void StmtProfiler::VisitCStyleCastExpr(const CStyleCastExpr *S) { in VisitCStyleCastExpr()
H A DStmtPrinter.cpp1809 void StmtPrinter::VisitCStyleCastExpr(CStyleCastExpr *Node) { in VisitCStyleCastExpr()
H A DASTImporter.cpp8276 auto *CCE = cast<CStyleCastExpr>(E); in VisitExplicitCastExpr()
8283 return CStyleCastExpr::Create( in VisitExplicitCastExpr()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td87 def CStyleCastExpr : StmtNode<ExplicitCastExpr>;
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DExpr.h3894 class CStyleCastExpr final
3896 private llvm::TrailingObjects<CStyleCastExpr, CXXBaseSpecifier *,
3901 CStyleCastExpr(QualType exprTy, ExprValueKind vk, CastKind kind, Expr *op, in CStyleCastExpr() function
3912 explicit CStyleCastExpr(EmptyShell Shell, unsigned PathSize, in CStyleCastExpr() function
3921 static CStyleCastExpr *
3926 static CStyleCastExpr *CreateEmpty(const ASTContext &Context,
H A DRecursiveASTVisitor.h2551 DEF_TRAVERSE_STMT(CStyleCastExpr, {
/freebsd/contrib/llvm-project/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp1012 const internal::VariadicDynCastAllOfMatcher<Stmt, CStyleCastExpr>
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp1190 void ASTStmtReader::VisitCStyleCastExpr(CStyleCastExpr *E) { in VisitCStyleCastExpr()
3328 S = CStyleCastExpr::CreateEmpty(Context, PathSize, HasFPFeatures); in ReadStmtFromStream()
H A DASTWriterStmt.cpp1148 void ASTStmtWriter::VisitCStyleCastExpr(CStyleCastExpr *E) { in VisitCStyleCastExpr()
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h2758 extern const internal::VariadicDynCastAllOfMatcher<Stmt, CStyleCastExpr>
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExpr.cpp2856 if (const auto *Exp = dyn_cast<CStyleCastExpr>(E)) { in setObjCGCLValueClass()

12