| /netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
| H A D | Mangle.cpp | 445 std::vector<std::string> getAllManglings(const ObjCContainerDecl *OCD) { in getAllManglings() argument 447 if (const auto *OID = dyn_cast<ObjCInterfaceDecl>(OCD)) in getAllManglings() 449 else if (const auto *OID = dyn_cast<ObjCImplementationDecl>(OCD)) in getAllManglings() 457 auto Prefix = getClassSymbolPrefix(Kind, OCD->getASTContext()); in getAllManglings() 469 if (const auto *OCD = dyn_cast<ObjCContainerDecl>(D)) in getAllManglings() local 470 return getAllManglings(OCD); in getAllManglings()
|
| H A D | DeclObjC.cpp | 294 const auto *OCD = cast<ObjCCategoryDecl>(this); in FindPropertyDeclaration() local 296 if (!OCD->IsClassExtension()) in FindPropertyDeclaration() 297 for (const auto *I : OCD->protocols()) in FindPropertyDeclaration()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| H A D | CGObjCGNU.cpp | 272 ObjCCategoryDecl *OCD); 290 const Decl *OCD, in PushProperty() argument 295 Fields.add(MakePropertyEncodingString(property, OCD)); in PushProperty() 459 const ObjCContainerDecl *OCD, 1120 const Decl *OCD, in PushProperty() argument 1135 CGM.getContext().getObjCEncodingForPropertyDecl(property, OCD); in PushProperty() 1190 llvm::Constant *GenerateCategoryProtocolList(const ObjCCategoryDecl *OCD) in GenerateCategoryProtocolList() argument 1192 const auto &ReferencedProtocols = OCD->getReferencedProtocols(); in GenerateCategoryProtocolList() 3244 ObjCCategoryDecl *OCD) { in GenerateCategoryProtocolList() argument 3245 const auto &RefPro = OCD->getReferencedProtocols(); in GenerateCategoryProtocolList() [all …]
|
| H A D | CGObjCMac.cpp | 1013 const ObjCContainerDecl *OCD, 3287 const ObjCContainerDecl *OCD, in EmitPropertyList() argument 3302 if (const ObjCInterfaceDecl *OID = dyn_cast<ObjCInterfaceDecl>(OCD)) in EmitPropertyList() 3313 for (const auto *PD : OCD->properties()) { in EmitPropertyList() 3325 if (const ObjCInterfaceDecl *OID = dyn_cast<ObjCInterfaceDecl>(OCD)) { in EmitPropertyList() 3329 else if (const ObjCCategoryDecl *CD = dyn_cast<ObjCCategoryDecl>(OCD)) { in EmitPropertyList() 3397 void CGObjCMac::GenerateCategory(const ObjCCategoryImplDecl *OCD) { in GenerateCategory() argument 3404 const ObjCInterfaceDecl *Interface = OCD->getClassInterface(); in GenerateCategory() 3406 Interface->FindCategoryDeclaration(OCD->getIdentifier()); in GenerateCategory() 3410 << OCD->getName(); in GenerateCategory() [all …]
|
| H A D | CGObjCRuntime.h | 154 virtual void GenerateCategory(const ObjCCategoryImplDecl *OCD) = 0;
|
| H A D | CGDebugInfo.cpp | 290 } else if (const auto *OCD = dyn_cast<ObjCCategoryImplDecl>(DC)) { in getObjCMethodName() local 291 OS << OCD->getClassInterface()->getName() << '(' << OCD->getName() << ')'; in getObjCMethodName()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Frontend/ |
| H A D | AnalysisConsumer.cpp | 613 } else if (const auto *OCD = dyn_cast<ObjCCategoryImplDecl>(DC)) { in getFunctionName() local 614 OS << OCD->getClassInterface()->getName() << '(' in getFunctionName() 615 << OCD->getName() << ')'; in getFunctionName()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/ |
| H A D | Overload.h | 1126 Sema &S, OverloadCandidateDisplayKind OCD, ArrayRef<Expr *> Args, 1132 PartialDiagnosticAt PA, Sema &S, OverloadCandidateDisplayKind OCD,
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | SemaDeclObjC.cpp | 3832 static void DiagnoseVariableSizedIvars(Sema &S, ObjCContainerDecl *OCD) { in DiagnoseVariableSizedIvars() argument 3836 if ((IntfDecl = dyn_cast<ObjCInterfaceDecl>(OCD))) { in DiagnoseVariableSizedIvars() 3838 } else if (auto *ImplDecl = dyn_cast<ObjCImplementationDecl>(OCD)) { in DiagnoseVariableSizedIvars() 3841 } else if (auto *CategoryDecl = dyn_cast<ObjCCategoryDecl>(OCD)) { in DiagnoseVariableSizedIvars() 3849 if (!isa<ObjCInterfaceDecl>(OCD)) { in DiagnoseVariableSizedIvars() 3972 auto *OCD = cast<ObjCContainerDecl>(CurContext); in ActOnAtEnd() local 3973 Decl *ClassDecl = OCD; in ActOnAtEnd() 4189 DiagnoseVariableSizedIvars(*this, OCD); in ActOnAtEnd()
|
| H A D | SemaOverload.cpp | 11575 Sema &S, OverloadCandidateDisplayKind OCD, ArrayRef<Expr *> Args, in CompleteCandidates() argument 11581 if (OCD == OCD_AllCandidates) Cands.reserve(size()); in CompleteCandidates() 11585 switch (OCD) { in CompleteCandidates() 11638 PartialDiagnosticAt PD, Sema &S, OverloadCandidateDisplayKind OCD, in NoteCandidates() argument 11642 auto Cands = CompleteCandidates(S, OCD, Args, OpLoc, Filter); in NoteCandidates() 11648 if (OCD == OCD_AmbiguousCandidates) in NoteCandidates()
|
| H A D | SemaCodeComplete.cpp | 8913 ObjCContainerDecl *OCD = dyn_cast<ObjCContainerDecl>(CurContext); in CodeCompleteObjCMethodDecl() local 8914 IDecl = OCD; in CodeCompleteObjCMethodDecl()
|
| H A D | SemaDecl.cpp | 16441 DeclContext *OCD = cast<DeclContext>(IDecl); in ActOnObjCContainerStartDefinition() local 16442 assert(OCD->getLexicalParent() == CurContext && in ActOnObjCContainerStartDefinition() 16444 CurContext = OCD; in ActOnObjCContainerStartDefinition()
|
| /netbsd-src/external/gpl3/gdb/dist/gdb/ |
| H A D | ChangeLog-1997 | 1056 Changes to OCD support to support wiggler box as well as 1082 Nomenclature change. BDM is a specific type of OCD 1093 until OCD with that target is supported again. 1155 * ppc-bdm.c: file for ppc-specific OCD code, including target_ops
|
| /netbsd-src/external/gpl3/gdb.old/dist/gdb/ |
| H A D | ChangeLog-1997 | 1056 Changes to OCD support to support wiggler box as well as 1082 Nomenclature change. BDM is a specific type of OCD 1093 until OCD with that target is supported again. 1155 * ppc-bdm.c: file for ppc-specific OCD code, including target_ops
|