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

References

tools/clang/lib/AST/ASTContext.cpp
 6563     switch (PD->getSetterKind()) {
tools/clang/lib/CodeGen/CGObjC.cpp
  826   ObjCPropertyDecl::SetterKind setterKind = prop->getSetterKind();
tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp
  565     assert(PropDecl->getSetterKind() == ObjCPropertyDecl::Copy ||
  566            PropDecl->getSetterKind() == ObjCPropertyDecl::Retain);
  571     if (PropDecl->getSetterKind() == ObjCPropertyDecl::Retain)
  677   assert(PropDecl->getSetterKind() == ObjCPropertyDecl::Weak ||
  678          (PropDecl->getSetterKind() == ObjCPropertyDecl::Assign &&
  693     if (PropDecl->getSetterKind() == ObjCPropertyDecl::Weak)
  892   ObjCPropertyDecl::SetterKind SK = PropDecl->getSetterKind();
tools/clang/lib/StaticAnalyzer/Checkers/ObjCPropertyChecker.cpp
   43   if (D->isReadOnly() || D->getSetterKind() != ObjCPropertyDecl::Copy)