Searched refs:ImplD (Results 1 – 10 of 10) sorted by relevance
/external/clang/lib/ARCMigrate/ |
D | TransProperties.cpp | 62 ObjCPropertyImplDecl *ImplD; member 64 PropData(ObjCPropertyDecl *propD) : PropD(propD), IvarD(0), ImplD(0) { } in PropData() 123 I->ImplD = implD; in doTransform() 230 if (I->ImplD) in removeAssignForDefaultStrong() 259 if (I->ImplD) in rewriteAssign() 284 if (I->ImplD) { in maybeAddWeakOrUnsafeUnretainedAttr() 291 I->ImplD->getLocation()); in maybeAddWeakOrUnsafeUnretainedAttr()
|
/external/clang/lib/AST/ |
D | DeclObjC.cpp | 559 if (ObjCImplementationDecl *ImplD = Ctx.getObjCImplementation(IFD)) in getNextRedeclaration() local 560 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclaration() 563 if (ObjCCategoryImplDecl *ImplD = Ctx.getObjCImplementation(CD)) in getNextRedeclaration() local 564 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclaration() 566 } else if (ObjCImplementationDecl *ImplD = in getNextRedeclaration() local 568 if (ObjCInterfaceDecl *IFD = ImplD->getClassInterface()) in getNextRedeclaration() 589 if (ObjCImplementationDecl *ImplD = dyn_cast<ObjCImplementationDecl>(CtxD)) { in getCanonicalDecl() local 590 if (ObjCInterfaceDecl *IFD = ImplD->getClassInterface()) in getCanonicalDecl() 1075 void ObjCInterfaceDecl::setImplementation(ObjCImplementationDecl *ImplD) { in setImplementation() argument 1076 getASTContext().setObjCImplementation(getDefinition(), ImplD); in setImplementation() [all …]
|
D | ASTContext.cpp | 1806 ObjCImplementationDecl *ImplD) { in setObjCImplementation() argument 1807 assert(IFaceD && ImplD && "Passed null params"); in setObjCImplementation() 1808 ObjCImpls[IFaceD] = ImplD; in setObjCImplementation() 1812 ObjCCategoryImplDecl *ImplD) { in setObjCImplementation() argument 1813 assert(CatD && ImplD && "Passed null params"); in setObjCImplementation() 1814 ObjCImpls[CatD] = ImplD; in setObjCImplementation()
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | IvarInvalidationChecker.cpp | 376 visit(const ObjCImplementationDecl *ImplD) const { in visit() 383 const ObjCInterfaceDecl *InterfaceD = ImplD->getClassInterface(); in visit() 446 const ObjCMethodDecl *D = ImplD->getMethod(InterfD->getSelector(), in visit() 495 const ObjCMethodDecl *D = ImplD->getMethod(InterfD->getSelector(), in visit()
|
/external/clang/tools/libclang/ |
D | CIndexHigh.cpp | 85 if (const ObjCImplDecl *ImplD = dyn_cast<ObjCImplDecl>(D)) { in getCanonical() local 86 if (ImplD->getClassInterface()) in getCanonical() 87 return getCanonical(ImplD->getClassInterface()); in getCanonical()
|
D | IndexingContext.cpp | 809 ImplD = dyn_cast<ObjCImplementationDecl>(D)) { in getEntityDecl() local 810 return getEntityDecl(ImplD->getClassInterface()); in getEntityDecl()
|
D | CIndex.cpp | 4620 if (const ObjCImplDecl *ImplD = dyn_cast<ObjCImplDecl>(D)) in clang_getCanonicalCursor() local 4621 if (const ObjCInterfaceDecl *IFD = ImplD->getClassInterface()) in clang_getCanonicalCursor()
|
/external/clang/include/clang/AST/ |
D | ASTContext.h | 2001 ObjCImplementationDecl *ImplD); 2004 ObjCCategoryImplDecl *ImplD);
|
D | DeclObjC.h | 734 void setImplementation(ObjCImplementationDecl *ImplD); 1576 void setImplementation(ObjCCategoryImplDecl *ImplD);
|
/external/clang/lib/Serialization/ |
D | ASTReader.cpp | 5619 static void PassObjCImplDeclToConsumer(ObjCImplDecl *ImplD, in PassObjCImplDeclToConsumer() argument 5621 assert(ImplD && Consumer); in PassObjCImplDeclToConsumer() 5624 I = ImplD->meth_begin(), E = ImplD->meth_end(); I != E; ++I) in PassObjCImplDeclToConsumer() 5627 Consumer->HandleInterestingDecl(DeclGroupRef(ImplD)); in PassObjCImplDeclToConsumer() 5641 if (ObjCImplDecl *ImplD = dyn_cast<ObjCImplDecl>(D)) in PassInterestingDeclToConsumer() local 5642 PassObjCImplDeclToConsumer(ImplD, Consumer); in PassInterestingDeclToConsumer()
|