Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
HDOSObjectCStyleCast.cpp59 -> decltype(hasType(pointerType())) { in hasTypePointingTo()
60 return hasType(pointerType(pointee(hasDeclaration(DeclM)))); in hasTypePointingTo()
HDPointerIterationChecker.cpp72 auto PointerTypeM = varDecl(hasType(hasCanonicalType(pointerType()))); in matchUnorderedIterWithPointers()
HDPointerSortingChecker.cpp85 pointsTo(hasCanonicalType(pointerType())) in matchSortWithPointers()
HDObjCAutoreleaseWriteChecker.cpp154 parmVarDecl(hasType(hasCanonicalType(pointerType( in checkASTCodeBody()
HDNumberObjectConversionChecker.cpp211 pointerType(pointee(hasCanonicalType( in checkASTCodeBody()
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
HDSemaStmt.cpp1847 const ObjCObjectPointerType *pointerType = in CheckObjCForCollectionOperand() local
1849 if (!pointerType) in CheckObjCForCollectionOperand()
1855 const ObjCObjectType *objectType = pointerType->getObjectType(); in CheckObjCForCollectionOperand()
1885 method = LookupMethodInQualifiedType(selector, pointerType, in CheckObjCForCollectionOperand()
3924 const PointerType *pointerType = type->getAs<PointerType>(); in ActOnObjCAtSynchronizedOperand() local
3925 if (!pointerType || !pointerType->getPointeeType()->isVoidType()) { in ActOnObjCAtSynchronizedOperand()
HDSemaChecking.cpp1852 const PointerType *pointerType = PointerArg->getType()->getAs<PointerType>(); in CheckARMBuiltinExclusiveCall() local
1853 if (!pointerType) { in CheckARMBuiltinExclusiveCall()
1862 QualType ValType = pointerType->getPointeeType(); in CheckARMBuiltinExclusiveCall()
4386 if (auto pointerType = type->getAs<PointerType>()) in CheckNonNullArguments() local
4387 type = pointerType->getPointeeType(); in CheckNonNullArguments()
4813 const PointerType *pointerType = Ptr->getType()->getAs<PointerType>(); in BuildAtomicExpr() local
4814 if (!pointerType) { in BuildAtomicExpr()
4821 QualType AtomTy = pointerType->getPointeeType(); // 'A' in BuildAtomicExpr()
5161 const PointerType *pointerType = FirstArg->getType()->getAs<PointerType>(); in SemaBuiltinAtomicOverloaded() local
5162 if (!pointerType) { in SemaBuiltinAtomicOverloaded()
[all …]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
HDExprMutationAnalyzer.cpp65 pointerType(pointee(unless(isConstQualified())))); in __anon7260055a0302()
/freebsd-11-stable/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
HDRegistry.cpp467 REGISTER_MATCHER(pointerType); in RegistryMaps()
/freebsd-11-stable/contrib/llvm-project/clang/lib/ASTMatchers/
HDASTMatchersInternal.cpp878 const AstTypeMatcher<PointerType> pointerType; variable
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
HDCGExprScalar.cpp3309 const PointerType *pointerType in emitPointerArithmetic() local
3311 if (!pointerType) { in emitPointerArithmetic()
3325 QualType elementType = pointerType->getPointeeType(); in emitPointerArithmetic()
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/ASTMatchers/
HDASTMatchers.h5858 extern const AstTypeMatcher<PointerType> pointerType;