Home | History | Annotate | Download | only in Sema

Lines Matching refs:Category

3640   } else if (const ObjCCategoryDecl *Category
3643 for (auto *P : Category->protocols())
5017 /// The container will be a class, protocol, category, or implementation of
5106 // Add methods in category implementations.
5131 if (ObjCCategoryDecl *Category
5133 Class = Category->getClassInterface();
5159 if (ObjCCategoryDecl *Category
5161 Class = Category->getClassInterface();
6103 if (const auto *Category = dyn_cast<ObjCCategoryDecl>(D))
6104 if (CategoryNames.insert(Category->getIdentifier()).second)
6105 Results.AddResult(Result(Category, Results.getBasePriority(Category),
6334 if (ObjCCategoryDecl *Category = dyn_cast<ObjCCategoryDecl>(Container)) {
6337 = Category->getReferencedProtocols();
6344 // If this category is the original class, jump to the interface.
6345 if (InOriginalClass && Category->getClassInterface())
6346 FindImplementableMethods(Context, Category->getClassInterface(),
7196 if (ObjCCategoryDecl *Category = dyn_cast<ObjCCategoryDecl>(SearchDecl))
7197 IFace = Category->getClassInterface();