Home
last modified time | relevance | path

Searched refs:pointerType (Results 1 – 14 of 14) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
HDPointerIterationChecker.cpp72 auto PointerTypeM = varDecl(hasType(hasCanonicalType(pointerType()))); in matchUnorderedIterWithPointers()
HDPointerSortingChecker.cpp85 pointsTo(hasCanonicalType(pointerType())) in matchSortWithPointers()
HDOSObjectCStyleCast.cpp77 return hasType(pointerType(pointee(hasDeclaration(DeclM)))); in hasTypePointingTo()
HDObjCAutoreleaseWriteChecker.cpp175 parmVarDecl(hasType(hasCanonicalType(pointerType( in checkASTCodeBody()
HDNumberObjectConversionChecker.cpp209 pointerType(pointee(hasCanonicalType( in checkASTCodeBody()
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
HDSemaObjC.cpp143 const ObjCObjectPointerType *pointerType = in CheckObjCForCollectionOperand() local
145 if (!pointerType) in CheckObjCForCollectionOperand()
151 const ObjCObjectType *objectType = pointerType->getObjectType(); in CheckObjCForCollectionOperand()
181 method = LookupMethodInQualifiedType(selector, pointerType, in CheckObjCForCollectionOperand()
296 const PointerType *pointerType = type->getAs<PointerType>(); in ActOnObjCAtSynchronizedOperand() local
297 if (!pointerType || !pointerType->getPointeeType()->isVoidType()) { in ActOnObjCAtSynchronizedOperand()
HDSemaARM.cpp902 const PointerType *pointerType = PointerArg->getType()->getAs<PointerType>(); in CheckARMBuiltinExclusiveCall() local
903 if (!pointerType) { in CheckARMBuiltinExclusiveCall()
912 QualType ValType = pointerType->getPointeeType(); in CheckARMBuiltinExclusiveCall()
HDSemaChecking.cpp3080 if (auto pointerType = type->getAs<PointerType>()) in CheckNonNullArguments() local
3081 type = pointerType->getPointeeType(); in CheckNonNullArguments()
3756 const PointerType *pointerType = Ptr->getType()->getAs<PointerType>(); in BuildAtomicExpr() local
3757 if (!pointerType) { in BuildAtomicExpr()
3764 QualType AtomTy = pointerType->getPointeeType(); // 'A' in BuildAtomicExpr()
4150 const PointerType *pointerType = FirstArg->getType()->getAs<PointerType>(); in BuiltinAtomicOverloaded() local
4151 if (!pointerType) { in BuiltinAtomicOverloaded()
4157 QualType ValType = pointerType->getPointeeType(); in BuiltinAtomicOverloaded()
4524 const PointerType *pointerType = PointerArg->getType()->getAs<PointerType>(); in BuiltinNontemporalOverloaded() local
4525 if (!pointerType) { in BuiltinNontemporalOverloaded()
[all …]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Analysis/
HDExprMutationAnalyzer.cpp170 pointerType(pointee(unless(isConstQualified())))); in __anon9267f75c0a02()
HDUnsafeBufferUsage.cpp216 return hasType(hasCanonicalType(pointerType())); in hasPointerType()
/freebsd-13-stable/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
HDRegistry.cpp542 REGISTER_MATCHER(pointerType); in RegistryMaps()
/freebsd-13-stable/contrib/llvm-project/clang/lib/ASTMatchers/
HDASTMatchersInternal.cpp1064 const AstTypeMatcher<PointerType> pointerType; variable
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/ASTMatchers/
HDASTMatchers.h7352 extern const AstTypeMatcher<PointerType> pointerType;
8221 integerLiteral(equals(0), hasParent(expr(hasType(pointerType()))))); in AST_MATCHER_FUNCTION()
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
HDCGExprScalar.cpp3963 const PointerType *pointerType in emitPointerArithmetic() local
3965 if (!pointerType) { in emitPointerArithmetic()
3979 QualType elementType = pointerType->getPointeeType(); in emitPointerArithmetic()