| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/google/ |
| H A D | AvoidCStyleCastsCheck.cpp | 42 while ((SourceType->isPointerType() && DestType->isPointerType()) || in needsConstCast() 47 return (SourceType->isPointerType() == DestType->isPointerType()) && in needsConstCast() 55 while ((T1->isPointerType() && T2->isPointerType()) || in pointedUnqualifiedTypesAreEqual()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/utils/ |
| H A D | FixItHintUtils.cpp | 36 return (QT->isPointerType() && QT->isFunctionPointerType()) || in isMemberOrFunctionPointer() 151 if (QualTarget == QualifierTarget::Pointee && Pointee->isPointerType()) { in changePointer() 207 if (ParenStrippedType->isPointerType()) in addQualifierToVarDecl() 219 if (AT->isPointerType()) in addQualifierToVarDecl()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/readability/ |
| H A D | NonConstParameterCheck.cpp | 107 if ((T->isPointerType() && !T->getPointeeType().isConstQualified()) || in check() 119 if (!T->isPointerType() || T->getPointeeType().isConstQualified() || in addParm() 179 if (T->isPointerType() && T->getPointeeType().isConstQualified()) in markCanNotBeConst() 195 if (T->isPointerType() && !T->getPointeeType().isConstQualified()) in markCanNotBeConst()
|
| H A D | ContainerDataPointerCheck.cpp | 90 if (DCE && !CE->getType()->isPointerType()) in check() 105 if (CE->getType()->isPointerType()) in check()
|
| H A D | StaticAccessedThroughInstanceCheck.cpp | 64 BaseExpr->getType()->isPointerType() in check()
|
| H A D | SuspiciousCallArgumentCheck.cpp | 310 return TypeToCheck->isPointerType() || TypeToCheck->isArrayType(); in isPointerOrArray() 332 TypeToConvert = TypeToConvert->isPointerType() in convertToPointeeOrArrayElementQualType() 382 } while (ParamType->isPointerType() && ArgType->isPointerType()); in arePointerTypesCompatible()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/misc/ |
| H A D | ConstCorrectnessCheck.cpp | 131 if (Variable->getType()->isPointerType()) in check() 135 if (ArrayT->getElementType()->isPointerType()) in check() 146 Variable->getType()->getPointeeType()->isPointerType() && in check()
|
| H A D | MisplacedConstCheck.cpp | 38 if (!QT->isPointerType()) in guessAlternateQualification()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/cppcoreguidelines/ |
| H A D | ProTypeCstyleCastCheck.cpp | 23 while (SourceType->isPointerType() && DestType->isPointerType()) { in needsConstCast()
|
| H A D | AvoidNonConstGlobalVariablesCheck.cpp | 65 << VD->getType()->isPointerType(); // FIXME: Add fix-it hint to Variable in check()
|
| /llvm-project-15.0.7/polly/lib/External/isl/interface/ |
| H A D | generator.cc | 571 if (!type->isPointerType()) in is_isl_ctx() 673 if (type->isPointerType()) { in is_isl_type() 700 if (type->isPointerType()) in is_isl_primitive() 732 if (!type->isPointerType()) in is_callback() 742 if (type->isPointerType()) { in is_string() 771 if (type->isPointerType()) in extract_type()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/bugprone/ |
| H A D | ImplicitWideningOfMultiplicationResultCheck.cpp | 165 if (IndexExpr->getType()->isPointerType()) in handlePointerOffsetting() 168 if (!PointerExpr->getType()->isPointerType() || in handlePointerOffsetting() 169 IndexExpr->getType()->isPointerType()) in handlePointerOffsetting()
|
| H A D | VirtualNearMissCheck.cpp | 61 if (!(BaseReturnTy->isPointerType() && DerivedReturnTy->isPointerType()) && in checkOverridingFunctionReturnType()
|
| /llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | CastValueChecker.cpp | 216 if (CastToTy->isPointerType()) { in addCastTransition() 217 if (!CastFromTy->isPointerType()) in addCastTransition() 290 if (CastFromTy->isPointerType()) in addInstanceOfTransition() 484 if (!(ParamT->isPointerType() && ResultT->isPointerType()) && in evalCall()
|
| H A D | PointerArithChecker.cpp | 298 if (!UOp->isIncrementDecrementOp() || !UOp->getType()->isPointerType()) in checkPreStmt() 327 if (Rhs->getType()->isIntegerType() && Lhs->getType()->isPointerType()) { in checkPreStmt() 334 if (Lhs->getType()->isIntegerType() && Rhs->getType()->isPointerType()) { in checkPreStmt()
|
| H A D | FixedAddressChecker.cpp | 43 if (!T->isPointerType()) in checkPreStmt()
|
| H A D | CheckSizeofPointer.cpp | 55 if (T->isPointerType()) { in VisitUnaryExprOrTypeTraitExpr()
|
| H A D | StringChecker.cpp | 55 if (!Arg1Ty->isPointerType()) in isCharToStringCtor()
|
| H A D | NonnullGlobalConstantsChecker.cpp | 133 if (Ty->isPointerType() && Ty->getPointeeType()->isCharType()) in isNonnullType()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/cert/ |
| H A D | PostfixOperatorCheck.cpp | 70 ReturnType->isPointerType()) in check()
|
| /llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/WebKit/ |
| H A D | UncountedLambdaCapturesChecker.cpp | 83 if (T->isPointerType()) { in reportBug()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/modernize/ |
| H A D | UseNodiscardCheck.cpp | 71 return (Node->isTemplateTypeParmType() || Node->isPointerType() || in AST_MATCHER()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/portability/ |
| H A D | SIMDIntrinsicsCheck.cpp | 33 if (Type->isPointerType()) in AST_MATCHER()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/mpi/ |
| H A D | BufferDerefCheck.cpp | 92 if (BufferType->isPointerType()) { in checkBuffers()
|
| /llvm-project-15.0.7/clang/lib/AST/Interp/ |
| H A D | Context.cpp | 63 if (T->isReferenceType() || T->isPointerType()) { in classify()
|