Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DPointerIterationChecker.cpp72 auto PointerTypeM = varDecl(hasType(hasCanonicalType(pointerType()))); in matchUnorderedIterWithPointers()
H A DPointerSortingChecker.cpp85 pointsTo(hasCanonicalType(pointerType())) in matchSortWithPointers()
H A DOSObjectCStyleCast.cpp77 return hasType(pointerType(pointee(hasDeclaration(DeclM)))); in hasTypePointingTo()
H A DObjCAutoreleaseWriteChecker.cpp175 parmVarDecl(hasType(hasCanonicalType(pointerType( in checkASTCodeBody()
H A DNumberObjectConversionChecker.cpp209 pointerType(pointee(hasCanonicalType( in checkASTCodeBody()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaObjC.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()
H A DSemaARM.cpp902 const PointerType *pointerType = PointerArg->getType()->getAs<PointerType>(); in CheckARMBuiltinExclusiveCall() local
903 if (!pointerType) { in CheckARMBuiltinExclusiveCall()
912 QualType ValType = pointerType->getPointeeType(); in CheckARMBuiltinExclusiveCall()
H A DSemaChecking.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/contrib/llvm-project/clang/lib/Analysis/
H A DExprMutationAnalyzer.cpp170 pointerType(pointee(unless(isConstQualified())))); in __anon2875c4430a02()
H A DUnsafeBufferUsage.cpp216 return hasType(hasCanonicalType(pointerType())); in hasPointerType()
/freebsd/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DRegistry.cpp542 REGISTER_MATCHER(pointerType); in RegistryMaps()
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h7352 extern const AstTypeMatcher<PointerType> pointerType;
8221 integerLiteral(equals(0), hasParent(expr(hasType(pointerType()))))); in AST_MATCHER_FUNCTION()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprScalar.cpp3963 const PointerType *pointerType in emitPointerArithmetic() local
3965 if (!pointerType) { in emitPointerArithmetic()
3979 QualType elementType = pointerType->getPointeeType(); in emitPointerArithmetic()