Home
last modified time | relevance | path

Searched refs:IgnoreCasts (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/clang/lib/Analysis/
H A DReachableCode.cpp78 return CE->getCallee()->IgnoreCasts() == S && CE->isBuiltinAssumeFalse(C); in isBuiltinAssumeFalse()
198 S = Ex->IgnoreCasts(); in isConfigurationValue()
207 S = Ex->IgnoreCasts(); in isConfigurationValue()
262 UO->getSubExpr()->IgnoreCasts()->getSourceRange()) in isConfigurationValue()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/cert/
H A DProperlySeededRandomGeneratorCheck.cpp114 Func->getArg(0)->IgnoreCasts()->getType().getAsString()); in checkSeed()
/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DHover.cpp473 const auto *ME = llvm::dyn_cast<MemberExpr>(E->IgnoreCasts()); in fieldName()
474 if (!ME || !llvm::isa<CXXThisExpr>(ME->getBase()->IgnoreCasts())) in fieldName()
518 const Expr *RetVal = Ret->getRetValue()->IgnoreCasts(); in setterVariableName()
522 RetVal = UO->getSubExpr()->IgnoreCasts(); in setterVariableName()
545 if (auto *CE = llvm::dyn_cast<CallExpr>(RHS->IgnoreCasts())) { in setterVariableName()
555 auto *DRE = llvm::dyn_cast<DeclRefExpr>(RHS->IgnoreCasts()); in setterVariableName()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGOpenCLRuntime.cpp139 E = E->IgnoreCasts(); in getBlockExpr()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/readability/
H A DImplicitBoolConversionCheck.cpp171 if (isa<StringLiteral>(Expression->IgnoreCasts())) { in getEquivalentBoolLiteralForExpr()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DExpr.h836 Expr *IgnoreCasts() LLVM_READONLY;
837 const Expr *IgnoreCasts() const { in IgnoreCasts() function
838 return const_cast<Expr *>(this)->IgnoreCasts(); in IgnoreCasts()
/llvm-project-15.0.7/clang/lib/AST/
H A DExpr.cpp2937 Expr *Expr::IgnoreCasts() { in IgnoreCasts() function in Expr