Home
last modified time | relevance | path

Searched refs:PropType (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/
H A DRawPtrRefMemberChecker.cpp187 auto [IsUnsafe, PropType] = isPropImplUnsafePtr(PD); in visitObjCPropertyDecl()
191 if (auto *MemberCXXRD = PropType->getPointeeCXXRecordDecl()) in visitObjCPropertyDecl()
192 reportBug(PD, PropType, MemberCXXRD, CD); in visitObjCPropertyDecl()
193 else if (auto *ObjCDecl = getObjCDecl(PropType)) in visitObjCPropertyDecl()
194 reportBug(PD, PropType, ObjCDecl, CD); in visitObjCPropertyDecl()
211 auto [IsUnsafe, PropType] = isPropImplUnsafePtr(PropDecl); in visitPropImpl()
215 if (auto *MemberCXXRD = PropType->getPointeeCXXRecordDecl()) in visitPropImpl()
216 reportBug(PropDecl, PropType, MemberCXXRD, CD); in visitPropImpl()
217 else if (auto *ObjCDecl = getObjCDecl(PropType)) in visitPropImpl()
218 reportBug(PropDecl, PropType, ObjCDecl, CD); in visitPropImpl()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaObjCProperty.cpp1195 QualType PropType = property->getType(); in ActOnPropertyImplDecl() local
1196 QualType PropertyIvarType = PropType.getNonReferenceType(); in ActOnPropertyImplDecl()
1367 << property->getDeclName() << PropType in ActOnPropertyImplDecl()
1382 << property->getDeclName() << PropType in ActOnPropertyImplDecl()
1389 if ((PropType.isObjCGCWeak() && !IvarType.isObjCGCWeak() && in ActOnPropertyImplDecl()
1398 PropType.isObjCGCStrong()) && IvarType.isObjCGCWeak() && in ActOnPropertyImplDecl()
/freebsd/contrib/llvm-project/clang/lib/ExtractAPI/
H A DDeclarationFragments.cpp1551 auto PropType = Property->getType(); in getFragmentsForObjCProperty() local
1554 .append(getFragmentsForType(PropType, Property->getASTContext(), After)) in getFragmentsForObjCProperty()