reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/ARCMigrate/ObjCMT.cpp
  634           if ((ClassProperty->getPropertyAttributes()
  635               != Property->getPropertyAttributes()) ||
tools/clang/lib/ARCMigrate/TransZeroOutPropsInDealloc.cpp
  122             PD->getPropertyAttributes();
tools/clang/lib/AST/ASTContext.cpp
 6556     if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_copy)
 6558     if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_retain)
 6560     if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_weak)
 6576   if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_nonatomic)
 6579   if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_getter) {
 6584   if (PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_setter) {
tools/clang/lib/AST/ASTImporter.cpp
 4855   ToProperty->setPropertyAttributes(D->getPropertyAttributes());
tools/clang/lib/AST/DeclObjC.cpp
  149           if (P->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_readwrite)
tools/clang/lib/AST/DeclPrinter.cpp
 1464   if (PDecl->getPropertyAttributes() != ObjCPropertyDecl::OBJC_PR_noattr) {
 1467     if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_class) {
 1472     if (PDecl->getPropertyAttributes() &
 1477     if (PDecl->getPropertyAttributes() &
 1483     if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_assign) {
 1487     if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_retain) {
 1492     if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_strong) {
 1496     if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_copy) {
 1500     if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_weak) {
 1504     if (PDecl->getPropertyAttributes()
 1510     if (PDecl->getPropertyAttributes() &
 1515     if (PDecl->getPropertyAttributes() &
 1521     if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_getter) {
 1526     if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_setter) {
 1532     if (PDecl->getPropertyAttributes() &
 1536             (PDecl->getPropertyAttributes() &
tools/clang/lib/AST/JSONNodeDumper.cpp
  996   ObjCPropertyDecl::PropertyAttributeKind Attrs = D->getPropertyAttributes();
tools/clang/lib/AST/TextNodeDumper.cpp
 1900   ObjCPropertyDecl::PropertyAttributeKind Attrs = D->getPropertyAttributes();
tools/clang/lib/Analysis/BodyFarm.cpp
  747   if (Prop->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_weak)
tools/clang/lib/CodeGen/CGDebugInfo.cpp
 2499         PD->getPropertyAttributes(), getOrCreateType(PD->getType(), PUnit));
 2590               PD->getPropertyAttributes(),
tools/clang/lib/CodeGen/CGObjC.cpp
 3493   if ((!(PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_atomic)))
 3577   if ((!(PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_atomic)))
tools/clang/lib/CodeGen/CGObjCGNU.cpp
  254     int attrs = property->getPropertyAttributes();
tools/clang/lib/Frontend/Rewrite/RewriteModernObjC.cpp
  942   unsigned Attributes = PD->getPropertyAttributes();
tools/clang/lib/Frontend/Rewrite/RewriteObjC.cpp
  789   unsigned Attributes = PD->getPropertyAttributes();
tools/clang/lib/Sema/SemaChecking.cpp
13980     unsigned Attributes = PD->getPropertyAttributes();
tools/clang/lib/Sema/SemaExprObjC.cpp
 1923         if (!(PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_setter))
 3182           Prop->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_weak;
tools/clang/lib/Sema/SemaObjCProperty.cpp
   70     = property->getPropertyAttributes();
  349     (OldProperty->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_nonatomic)
  352     (NewProperty->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_nonatomic)
  360     auto Attrs = Property->getPropertyAttributes();
  380     unsigned Attrs = NewProperty->getPropertyAttributes();
  492       = getOwnershipRule(PIDecl->getPropertyAttributes());
  724     getImpliedARCOwnership(property->getPropertyAttributes(),
  797     getImpliedARCOwnership(property->getPropertyAttributes(),
 1200       = property->getPropertyAttributes();
 1488       if (property->getPropertyAttributes() &
 1581     Property->getPropertyAttributes();
 1583     SuperProperty->getPropertyAttributes();
 1814   if (Prop->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_readonly)
 1856       if (Prop->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_readonly)
 1892       if ((Prop->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_readwrite) &&
 1893           (PropInSuperClass->getPropertyAttributes() &
 2091         (property->getPropertyAttributes() &
 2130     unsigned Attributes = Property->getPropertyAttributes();
 2389     if (property->getPropertyAttributes() &
 2463       if (property->getPropertyAttributes() &
tools/clang/lib/Sema/SemaPseudoObject.cpp
  593     if (Prop->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_weak)
tools/clang/lib/Serialization/ASTWriterDecl.cpp
  840   Record.push_back((unsigned)D->getPropertyAttributes());