Home
last modified time | relevance | path

Searched refs:pointerType (Results 1 – 14 of 14) sorted by last modified time

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmt.cpp2237 const ObjCObjectPointerType *pointerType = in CheckObjCForCollectionOperand() local
2239 if (!pointerType) in CheckObjCForCollectionOperand()
2245 const ObjCObjectType *objectType = pointerType->getObjectType(); in CheckObjCForCollectionOperand()
2275 method = LookupMethodInQualifiedType(selector, pointerType, in CheckObjCForCollectionOperand()
4319 const PointerType *pointerType = type->getAs<PointerType>(); in ActOnObjCAtSynchronizedOperand() local
4320 if (!pointerType || !pointerType->getPointeeType()->isVoidType()) { in ActOnObjCAtSynchronizedOperand()
H A DSemaChecking.cpp3460 if (!pointerType) { in CheckARMBuiltinExclusiveCall()
3469 QualType ValType = pointerType->getPointeeType(); in CheckARMBuiltinExclusiveCall()
7341 if (auto pointerType = type->getAs<PointerType>()) in CheckNonNullArguments() local
7342 type = pointerType->getPointeeType(); in CheckNonNullArguments()
8044 const PointerType *pointerType = Ptr->getType()->getAs<PointerType>(); in BuildAtomicExpr() local
8045 if (!pointerType) { in BuildAtomicExpr()
8052 QualType AtomTy = pointerType->getPointeeType(); // 'A' in BuildAtomicExpr()
8466 if (!pointerType) { in SemaBuiltinAtomicOverloaded()
8472 QualType ValType = pointerType->getPointeeType(); in SemaBuiltinAtomicOverloaded()
8846 if (!pointerType) { in SemaBuiltinNontemporalOverloaded()
[all …]
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprScalar.cpp3677 const PointerType *pointerType in emitPointerArithmetic() local
3679 if (!pointerType) { in emitPointerArithmetic()
3693 QualType elementType = pointerType->getPointeeType(); in emitPointerArithmetic()
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DUnsafeBufferUsage.cpp208 return hasType(hasCanonicalType(pointerType())); in hasPointerType()
H A DExprMutationAnalyzer.cpp170 pointerType(pointee(unless(isConstQualified())))); in __anon6308470b0a02()
/freebsd/contrib/llvm-project/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp1064 const AstTypeMatcher<PointerType> pointerType; variable
/freebsd/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DRegistry.cpp541 REGISTER_MATCHER(pointerType); in RegistryMaps()
/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/Models/
H A DUncheckedOptionalAccessModel.cpp98 hasType(pointerType(pointee(optionalOrAliasType())))))), in isOptionalMemberCallWithNameMatcher()
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h7322 extern const AstTypeMatcher<PointerType> pointerType;
8191 integerLiteral(equals(0), hasParent(expr(hasType(pointerType()))))); in AST_MATCHER_FUNCTION()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DNumberObjectConversionChecker.cpp209 pointerType(pointee(hasCanonicalType( in checkASTCodeBody()
H A DObjCAutoreleaseWriteChecker.cpp175 parmVarDecl(hasType(hasCanonicalType(pointerType( in checkASTCodeBody()
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()