/external/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
D | ObjCPropertyChecker.cpp | 60 } else if (auto *CatD = dyn_cast<ObjCCategoryDecl>(D->getDeclContext())) { in checkCopyMutable() local 61 ImplD = CatD->getClassInterface()->getImplementation(); in checkCopyMutable()
|
/external/clang/lib/Frontend/ |
D | MultiplexConsumer.cpp | 123 void AddedObjCCategoryToInterface(const ObjCCategoryDecl *CatD, 205 const ObjCCategoryDecl *CatD, in AddedObjCCategoryToInterface() argument 208 Listeners[i]->AddedObjCCategoryToInterface(CatD, IFD); in AddedObjCCategoryToInterface()
|
/external/llvm-project/clang/lib/Frontend/ |
D | MultiplexConsumer.cpp | 102 void AddedObjCCategoryToInterface(const ObjCCategoryDecl *CatD, 198 const ObjCCategoryDecl *CatD, in AddedObjCCategoryToInterface() argument 201 Listeners[i]->AddedObjCCategoryToInterface(CatD, IFD); in AddedObjCCategoryToInterface()
|
/external/clang/include/clang/AST/ |
D | ASTMutationListener.h | 97 virtual void AddedObjCCategoryToInterface(const ObjCCategoryDecl *CatD, in AddedObjCCategoryToInterface() argument
|
D | ASTContext.h | 2334 void setObjCImplementation(ObjCCategoryDecl *CatD,
|
/external/llvm-project/clang/include/clang/AST/ |
D | ASTMutationListener.h | 108 virtual void AddedObjCCategoryToInterface(const ObjCCategoryDecl *CatD, in AddedObjCCategoryToInterface() argument
|
D | ASTContext.h | 2763 void setObjCImplementation(ObjCCategoryDecl *CatD,
|
/external/clang/lib/AST/ |
D | DeclObjC.cpp | 868 if (ObjCCategoryDecl *CatD = CImplD->getCategoryDecl()) in getNextRedeclarationImpl() local 869 if (!CatD->isInvalidDecl()) in getNextRedeclarationImpl() 870 Redecl = CatD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclarationImpl() 894 if (ObjCCategoryDecl *CatD = CImplD->getCategoryDecl()) in getCanonicalDecl() local 895 if (ObjCMethodDecl *MD = CatD->getMethod(getSelector(), in getCanonicalDecl() 1195 CatD = dyn_cast<ObjCCategoryDecl>(Method->getDeclContext())) { in collectOverriddenMethodsSlow() local 1196 const ObjCInterfaceDecl *ID = CatD->getClassInterface(); in collectOverriddenMethodsSlow()
|
D | ASTContext.cpp | 2060 void ASTContext::setObjCImplementation(ObjCCategoryDecl *CatD, in setObjCImplementation() argument 2062 assert(CatD && ImplD && "Passed null params"); in setObjCImplementation() 2063 ObjCImpls[CatD] = ImplD; in setObjCImplementation()
|
/external/llvm-project/clang/lib/AST/ |
D | DeclObjC.cpp | 938 if (ObjCCategoryDecl *CatD = CImplD->getCategoryDecl()) in getNextRedeclarationImpl() local 939 if (!CatD->isInvalidDecl()) in getNextRedeclarationImpl() 940 Redecl = CatD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclarationImpl() 979 if (ObjCCategoryDecl *CatD = CImplD->getCategoryDecl()) in getCanonicalDecl() local 980 if (ObjCMethodDecl *MD = CatD->getMethod(Sel, isInstanceMethod())) in getCanonicalDecl() 1288 } else if (const auto *CatD = in collectOverriddenMethodsSlow() local 1290 const ObjCInterfaceDecl *ID = CatD->getClassInterface(); in collectOverriddenMethodsSlow()
|
D | ASTContext.cpp | 2783 void ASTContext::setObjCImplementation(ObjCCategoryDecl *CatD, in setObjCImplementation() argument 2785 assert(CatD && ImplD && "Passed null params"); in setObjCImplementation() 2786 ObjCImpls[CatD] = ImplD; in setObjCImplementation()
|
/external/llvm-project/clang/lib/Index/ |
D | USRGeneration.cpp | 93 const ObjCCategoryDecl *CatD = nullptr); 418 const ObjCCategoryDecl *CatD) { in VisitObjCContainerDecl() argument 425 GetExternalSourceContainer(CatD)); in VisitObjCContainerDecl()
|
D | IndexSymbol.cpp | 209 if (auto *CatD = dyn_cast<ObjCCategoryDecl>(D)) in getSymbolInfo() local 210 ClsD = CatD->getClassInterface(); in getSymbolInfo()
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaAvailability.cpp | 168 else if (const auto *CatD = dyn_cast<ObjCCategoryDecl>(Ctx)) in ShouldDiagnoseAvailabilityInContext() local 169 if (const ObjCInterfaceDecl *Interface = CatD->getClassInterface()) in ShouldDiagnoseAvailabilityInContext()
|
/external/llvm-project/clang/include/clang/Serialization/ |
D | ASTWriter.h | 743 void AddedObjCCategoryToInterface(const ObjCCategoryDecl *CatD,
|
/external/llvm-project/clang/tools/libclang/ |
D | CXIndexDataConsumer.cpp | 776 const ObjCCategoryDecl *CatD = D->getCategoryDecl(); in handleObjCCategoryImpl() local 779 const ObjCInterfaceDecl *IFaceD = CatD->getClassInterface(); in handleObjCCategoryImpl()
|
D | CIndex.cpp | 6586 if (ObjCCategoryDecl *CatD = CatImplD->getCategoryDecl()) in clang_getCanonicalCursor() local 6587 return MakeCXCursor(CatD, getCursorTU(C)); in clang_getCanonicalCursor()
|
/external/clang/tools/libclang/ |
D | CXIndexDataConsumer.cpp | 770 const ObjCCategoryDecl *CatD = D->getCategoryDecl(); in handleObjCCategoryImpl() local 773 const ObjCInterfaceDecl *IFaceD = CatD->getClassInterface(); in handleObjCCategoryImpl()
|
D | CIndex.cpp | 5801 if (ObjCCategoryDecl *CatD = CatImplD->getCategoryDecl()) in clang_getCanonicalCursor() local 5802 return MakeCXCursor(CatD, getCursorTU(C)); in clang_getCanonicalCursor()
|
/external/clang/include/clang/Serialization/ |
D | ASTWriter.h | 681 void AddedObjCCategoryToInterface(const ObjCCategoryDecl *CatD,
|
/external/clang/lib/Sema/ |
D | SemaDeclAttr.cpp | 6202 if (const ObjCCategoryDecl *CatD = dyn_cast<ObjCCategoryDecl>(D)) in isDeclDeprecated() local 6203 if (const ObjCInterfaceDecl *Interface = CatD->getClassInterface()) in isDeclDeprecated() 6214 if (const ObjCCategoryDecl *CatD = dyn_cast<ObjCCategoryDecl>(D)) in isDeclUnavailable() local 6215 if (const ObjCInterfaceDecl *Interface = CatD->getClassInterface()) in isDeclUnavailable()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 9581 if (const ObjCCategoryDecl *CatD = dyn_cast<ObjCCategoryDecl>(DC)) in getCurObjCLexicalContext() local 9582 DC = CatD->getClassInterface(); in getCurObjCLexicalContext()
|
/external/llvm-project/clang/include/clang/Sema/ |
D | Sema.h | 12506 if (const ObjCCategoryDecl *CatD = dyn_cast<ObjCCategoryDecl>(DC)) in getCurObjCLexicalContext() local 12507 DC = CatD->getClassInterface(); in getCurObjCLexicalContext()
|
/external/clang/lib/Serialization/ |
D | ASTWriter.cpp | 5787 void ASTWriter::AddedObjCCategoryToInterface(const ObjCCategoryDecl *CatD, in AddedObjCCategoryToInterface() argument
|
/external/llvm-project/clang/lib/Serialization/ |
D | ASTWriter.cpp | 6095 void ASTWriter::AddedObjCCategoryToInterface(const ObjCCategoryDecl *CatD, in AddedObjCCategoryToInterface() argument
|