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

References

tools/clang/include/clang/AST/ASTContext.h
 1163   QualType getObjCGCQualType(QualType T, Qualifiers::GC gcAttr) const;
 2052   Qualifiers::GC getObjCGCAttrKind(QualType Ty) const;
tools/clang/include/clang/AST/Type.h
  301   GC getObjCGCAttr() const { return GC((Mask & GCAttrMask) >> GCAttrShift); }
  302   void setObjCGCAttr(GC type) {
  306   void addObjCGCAttr(GC type) {
 1053   inline Qualifiers::GC getObjCGCAttr() const;
 1358   Qualifiers::GC getObjCGCAttr() const { return Quals.getObjCGCAttr(); }
 6269 inline Qualifiers::GC QualType::getObjCGCAttr() const {
tools/clang/include/clang/Sema/Sema.h
 1385         const SemaDiagnosticBuilder &Diag, const T &Value) {
tools/clang/lib/AST/ASTContext.cpp
 2785                                        Qualifiers::GC GCAttr) const {
 7902 Qualifiers::GC ASTContext::getObjCGCAttrKind(QualType Ty) const {
 7907   Qualifiers::GC GCAttrs = Ty.getObjCGCAttr();
 8884     Qualifiers::GC GC_L = LQuals.getObjCGCAttr();
 8885     Qualifiers::GC GC_R = RQuals.getObjCGCAttr();
 9269     Qualifiers::GC GC_L = LQuals.getObjCGCAttr();
 9270     Qualifiers::GC GC_R = RQuals.getObjCGCAttr();
tools/clang/lib/AST/TypePrinter.cpp
 1830   if (Qualifiers::GC gc = getObjCGCAttr()) {
tools/clang/lib/CodeGen/CGObjCMac.cpp
 2251 static Qualifiers::GC GetGCAttrTypeForType(ASTContext &Ctx, QualType FQT,
 2424     Qualifiers::GC GCAttr = GetGCAttrTypeForType(CGM.getContext(), type);
 5250   Qualifiers::GC GCAttr = GetGCAttrTypeForType(CGM.getContext(), fieldType);
tools/clang/lib/Sema/SemaType.cpp
 6278   Qualifiers::GC GCAttr;