Home
last modified time | relevance | path

Searched refs:isPointerType (Results 1 – 25 of 125) sorted by relevance

12345

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DFixedAddressChecker.cpp43 if (!T->isPointerType()) in checkPreStmt()
49 if (B->getRHS()->IgnoreParenCasts()->getType()->isPointerType()) in checkPreStmt()
H A DPointerSubChecker.cpp63 if (!B->getLHS()->getType()->isPointerType() || in checkPreStmt()
64 !B->getRHS()->getType()->isPointerType()) in checkPreStmt()
H A DCastValueChecker.cpp216 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 DStringChecker.cpp55 if (!Arg1Ty->isPointerType()) in isCharToStringCtor()
H A DBuiltinFunctionChecker.cpp240 !RetTy->isPointerType() && !RetTy->isReferenceType()) in isBuiltinLikeFunction()
244 !ParmTy->isPointerType() && !ParmTy->isReferenceType()) in isBuiltinLikeFunction()
H A DNonnullGlobalConstantsChecker.cpp137 if (Ty->isPointerType() && Ty->getPointeeType()->isCharType()) in isNonnullType()
H A DMallocSizeofChecker.cpp186 if (!CastedType->isPointerType()) in checkASTCodeBody()
H A DNonNullParamChecker.cpp261 if (!Parameter->getType()->isPointerType()) in checkBeginFunction()
H A DNumberObjectConversionChecker.cpp136 assert(ObjT.getCanonicalType()->isPointerType()); in run()
/freebsd/contrib/llvm-project/lldb/tools/lldb-rpc/lldb-rpc-gen/server/
H A DRPCServerSourceEmitter.cpp116 if (ParamType->isPointerType() && !IsSBClass) { in EmitStorageForOneParameter()
213 if (!Iter->Type->isPointerType()) in CreateMethodCall()
215 } else if (Iter->Type->isPointerType() && in CreateMethodCall()
298 if (!Iter->Type->isReferenceType() && !Iter->Type->isPointerType()) in EmitEncodesForMutableParameters()
354 if (method.ReturnType->isPointerType() && in EmitMethodCallAndEncode()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/
H A DPtrTypesSemantics.cpp244 if (!QT->isPointerType()) in visitTypedef()
337 if (T->isPointerType() || T->isReferenceType()) { in isUncountedPtr()
345 if (T->isPointerType() || T->isReferenceType()) { in isUncheckedPtr()
353 if (T->isPointerType() || T->isReferenceType()) { in isUnsafePtr()
398 return T && (T->isPointerType() || T->isReferenceType()); in isGetterOfSafePtr()
406 return T && (T->isPointerType() || T->isReferenceType()); in isGetterOfSafePtr()
414 return T && (T->isPointerType() || T->isReferenceType() || in isGetterOfSafePtr()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaBoundsSafety.cpp72 if (!FieldTy->isArrayType() && !FieldTy->isPointerType()) { in CheckCountedByAttrOnField()
94 if (FieldTy->isPointerType()) { in CheckCountedByAttrOnField()
363 if (!T->isPointerType()) in BoundsSafetyCheckUseOfCountAttrPtr()
H A DCheckExprLifetime.cpp289 return isGLSPointerType(QT) || QT->isPointerType() || QT->isNullPtrType(); in isPointerLikeType()
393 if (FD->getReturnType()->isPointerType() || in shouldTrackFirstArgument()
1059 if (!BO->getType()->isPointerType() || (BOK != BO_Add && BOK != BO_Sub)) in visitLocalsRetainedByInitializer()
1062 if (BO->getLHS()->getType()->isPointerType()) in visitLocalsRetainedByInitializer()
1064 else if (BO->getRHS()->getType()->isPointerType()) in visitLocalsRetainedByInitializer()
1404 << AEntity->LHS->getType()->isPointerType() << AEntity->LHS in checkExprLifetimeImpl()
1659 Entity.LHS->getType()->isPointerType()) || in checkAssignmentLifetime()
H A DSemaOpenCL.cpp116 if (!(*I)->isPointerType() || !(*I)->getPointeeType()->isVoidType() || in checkBlockArgs()
338 !(Arg5->getType()->isPointerType() && in checkBuiltinEnqueueKernel()
543 if (!RT->isPointerType() || in checkBuiltinToAddr()
H A DSemaPPC.cpp264 if (Type->isPointerType() || Type->isArrayType()) in CheckPPCMMAType()
374 (StrippedRVType->isPointerType() || StrippedRVType->isArrayType()))) in BuiltinPPCMMACall()
H A DSemaFixItUtils.cpp186 if (T.isPointerType() || T.isMemberPointerType()) { in getScalarZeroExpressionForType()
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DFixitUtil.cpp28 assert(Ty->isPointerType() && !Ty->isFunctionPointerType() && in getPointeeTypeText()
109 assert(Ty->isPointerType() && !Ty->isFunctionPointerType() && in getPointee2TypeText()
H A DRetainSummaryManager.cpp247 if (RetTy->isPointerType()) { in getSummaryForOSObject()
406 if (RetTy->isPointerType()) { in getSummaryForObjCOrCFObject()
732 } else if (ResultTy->isPointerType()) { in canEval()
/freebsd/contrib/llvm-project/clang/lib/Interpreter/
H A DInterpreterUtils.cpp24 if (!Ty->isPointerType()) in CStyleCastPtrExpr()
H A DValue.cpp124 if ((Canon->isPointerType() || Canon->isObjectType() || in Value()
/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DSmartPointerAccessorCaching.cpp28 if (!RT.isNull() && RT->isPointerType()) { in getLikeReturnType()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/
H A DMips.cpp379 (Ty->isPointerType() && PtrWidth < SlotSizeInBits)) { in EmitVAArg()
407 if (OrigTy->isPointerType()) in EmitVAArg()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/
H A DUninitializedPointee.cpp48 if (getDecl()->getType()->isPointerType()) in printSeparator()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenTBAA.cpp247 if (Ty->isPointerType() || Ty->isReferenceType()) { in getTypeInfoHelper()
270 } while (Ty->isPointerType()); in getTypeInfoHelper()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DSValBuilder.cpp708 if (CastTy->isPointerType() || CastTy->isReferenceType()) in VisitGotoLabel()
784 if (CastTy->isPointerType() && !CastTy->isVoidPointerType()) { in VisitMemRegionVal()
818 if (CastTy->isPointerType() || CastTy->isReferenceType()) { in VisitMemRegionVal()

12345