Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:Category

863   /// DefinedCategoryNames - list of category names in form Class_Category.
1434 /// ImplementationIsNonLazy - Check whether the given category or
1803 // Message sent to 'super' in a class method defined in a category
2917 // FIXME: This is poor design, the OCD should have a pointer to the category
2918 // decl. Additionally, note that Category can be null for the @implementation
2922 const ObjCCategoryDecl *Category =
2950 if (Category) {
2953 Category->protocol_begin(),
2954 Category->protocol_end());
2960 // If there is no category @interface then there can be no properties.
2961 if (Category) {
2963 OCD, Category, ObjCTypes);
5237 // struct _objc_property_list *instance_properties;// category's @property
5535 // Build list of all implemented category addresses in array
5946 /// GenerateCategory - Build metadata for a category implementation.
5995 const ObjCCategoryDecl *Category =
5997 if (Category) {
6003 + Category->getName(),
6004 Category->protocol_begin(),
6005 Category->protocol_end());
6007 OCD, Category, ObjCTypes);
6029 // Determine if this category is also "non-lazy".