Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:Category

856   /// DefinedCategoryNames - list of category names in form Class_Category.
1431 /// ImplementationIsNonLazy - Check whether the given category or
1807 // Message sent to 'super' in a class method defined in a category
2934 // FIXME: This is poor design, the OCD should have a pointer to the category
2935 // decl. Additionally, note that Category can be null for the @implementation
2939 const ObjCCategoryDecl *Category =
2970 if (Category) {
2973 Category->protocol_begin(),
2974 Category->protocol_end());
2980 // If there is no category @interface then there can be no properties.
2981 if (Category) {
2983 OCD, Category, ObjCTypes);
5254 // struct _objc_property_list *instance_properties;// category's @property
5555 // Build list of all implemented category addresses in array
5956 /// GenerateCategory - Build metadata for a category implementation.
6010 const ObjCCategoryDecl *Category =
6012 if (Category) {
6018 + Category->getName(),
6019 Category->protocol_begin(),
6020 Category->protocol_end());
6022 OCD, Category, ObjCTypes);
6043 // Determine if this category is also "non-lazy".