Searched refs:CStyleCastExpr (Results 1 - 24 of 24) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DIdenticalExprChecker.cpp363 const CStyleCastExpr* CastExpr1 = cast<CStyleCastExpr>(Stmt1);
364 const CStyleCastExpr* CastExpr2 = cast<CStyleCastExpr>(Stmt2);
/freebsd-13-stable/contrib/llvm-project/clang/lib/ARCMigrate/
H A DTransUnbridgedCasts.cpp229 if (CStyleCastExpr *CCE = dyn_cast<CStyleCastExpr>(E)) {
/freebsd-13-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp367 void RewriteCastExpr(CStyleCastExpr *CE);
584 // Helper function: create a CStyleCastExpr with trivial type source info.
585 CStyleCastExpr* NoTypeInfoCStyleCastExpr(ASTContext *Ctx, QualType Ty,
588 return CStyleCastExpr::Create(*Ctx, Ty, VK_RValue, Kind, E, nullptr,
2169 if (const CStyleCastExpr *ECE = dyn_cast<CStyleCastExpr>(E)) {
2296 if (const CStyleCastExpr *ECE = dyn_cast<CStyleCastExpr>(E))
2747 CStyleCastExpr * ArrayLiteralObjects =
2876 CStyleCastExpr * DictValueObject
[all...]
H A DRewriteObjC.cpp310 void RewriteCastExpr(CStyleCastExpr *CE);
490 // Helper function: create a CStyleCastExpr with trivial type source info.
491 CStyleCastExpr* NoTypeInfoCStyleCastExpr(ASTContext *Ctx, QualType Ty,
494 return CStyleCastExpr::Create(*Ctx, Ty, VK_RValue, Kind, E, nullptr,
2087 if (const CStyleCastExpr *ECE = dyn_cast<CStyleCastExpr>(E)) {
2210 if (const CStyleCastExpr *ECE = dyn_cast<CStyleCastExpr>(E))
2839 while (CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(recExp
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Analysis/
H A DReachableCode.cpp588 const CStyleCastExpr *CSC = cast<CStyleCastExpr>(S);
H A DUninitializedValues.cpp449 else if (const auto *CSE = dyn_cast<CStyleCastExpr>(CE)) {
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp1913 CStyleCastExpr *CStyleCastExpr::Create(const ASTContext &C, QualType T,
1920 CStyleCastExpr *E =
1921 new (Buffer) CStyleCastExpr(T, VK, K, Op, PathSize, WrittenTy, L, R);
1928 CStyleCastExpr *CStyleCastExpr::CreateEmpty(const ASTContext &C,
1931 return new (Buffer) CStyleCastExpr(EmptyShell(), PathSize);
2661 const CStyleCastExpr *CStyleCE = cast<CStyleCastExpr>(this);
2719 return cast<CStyleCastExpr>(
[all...]
H A DStmtProfile.cpp1274 void StmtProfiler::VisitCStyleCastExpr(const CStyleCastExpr *S) {
H A DASTImporter.cpp6946 auto *CCE = cast<CStyleCastExpr>(E);
6953 return CStyleCastExpr::Create(
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DExpr.h3578 /// CStyleCastExpr - An explicit cast in C (C99 6.5.4) or a C-style
3581 class CStyleCastExpr final
3583 private llvm::TrailingObjects<CStyleCastExpr, CXXBaseSpecifier *> {
3587 CStyleCastExpr(QualType exprTy, ExprValueKind vk, CastKind kind, Expr *op, function in class:clang::final::final
3594 explicit CStyleCastExpr(EmptyShell Shell, unsigned PathSize) function in class:clang::final::final
3598 static CStyleCastExpr *Create(const ASTContext &Context, QualType T,
3604 static CStyleCastExpr *CreateEmpty(const ASTContext &Context,
H A DRecursiveASTVisitor.h2289 DEF_TRAVERSE_STMT(CStyleCastExpr, {
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprObjC.cpp3777 if (CStyleCastExpr *CCE = dyn_cast<CStyleCastExpr>(castedE))
4511 if (CStyleCastExpr *cast = dyn_cast<CStyleCastExpr>(realCast)) {
H A DSemaStmt.cpp359 else if (const CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(E)) {
H A DSema.cpp2267 return (!isa<CStyleCastExpr>(E) &&
H A DSemaCast.cpp3030 return Op.complete(CStyleCastExpr::Create(Context, Op.ResultType,
H A DSemaChecking.cpp4134 if (const CStyleCastExpr *CSCE = dyn_cast<CStyleCastExpr>(FormatExpr))
8467 if (const CStyleCastExpr *CCast = dyn_cast<CStyleCastExpr>(E)) {
H A DSemaTemplate.cpp7478 E = CStyleCastExpr::Create(Context, OrigT, VK_RValue, CK_IntegralCast, E,
H A DTreeTransform.h10708 TreeTransform<Derived>::TransformCStyleCastExpr(CStyleCastExpr *E) {
H A DSemaExpr.cpp11392 } else if (const auto *CE = dyn_cast<CStyleCastExpr>(E.get())) {
/freebsd-13-stable/contrib/llvm-project/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp910 const internal::VariadicDynCastAllOfMatcher<Stmt, CStyleCastExpr>
/freebsd-13-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp1136 void ASTStmtReader::VisitCStyleCastExpr(CStyleCastExpr *E) {
3019 S = CStyleCastExpr::CreateEmpty(Context,
H A DASTWriterStmt.cpp1010 void ASTStmtWriter::VisitCStyleCastExpr(CStyleCastExpr *E) {
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h2467 extern const internal::VariadicDynCastAllOfMatcher<Stmt, CStyleCastExpr>
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExpr.cpp2358 if (const auto *Exp = dyn_cast<CStyleCastExpr>(E)) {

Completed in 541 milliseconds