HomeSort by: relevance | last modified time | path
    Searched defs:ImplD (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
ObjCPropertyChecker.cpp 56 const ObjCImplDecl *ImplD = nullptr;
59 ImplD = IntD->getImplementation();
61 ImplD = CatD->getClassInterface()->getImplementation();
64 if (!ImplD || ImplD->HasUserDeclaredSetterMethod(D))
  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
CompileOnDemandLayer.h 103 PerDylibResources(JITDylib &ImplD,
105 : ImplD(ImplD), ISMgr(std::move(ISMgr)) {}
106 JITDylib &getImplDylib() { return ImplD; }
110 JITDylib &ImplD;
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
CompileOnDemandLayer.cpp 189 auto &ImplD =
202 {&ImplD, JITDylibLookupFlags::MatchAllSymbols});
203 ImplD.setLinkOrder(NewLinkOrder, false);
206 PerDylibResources PDR(ImplD, BuildIndirectStubsManager());
  /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
TransProperties.cpp 61 ObjCPropertyImplDecl *ImplD;
64 : PropD(propD), IvarD(nullptr), ImplD(nullptr) {}
107 ObjCPropertyImplDecl *implD = *I;
108 if (implD->getPropertyImplementation() != ObjCPropertyImplDecl::Synthesize)
110 ObjCPropertyDecl *propD = implD->getPropertyDecl();
113 ObjCIvarDecl *ivarD = implD->getPropertyIvarDecl();
124 I->ImplD = implD;
205 if (I->ImplD)
234 if (I->ImplD)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
DeclObjC.cpp 499 if (const auto *ImplD = D->getImplementation()) {
500 for (const auto *MD : ImplD->instance_methods()) {
924 if (ObjCImplementationDecl *ImplD = Ctx.getObjCImplementation(IFD))
925 if (!ImplD->isInvalidDecl())
926 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod());
929 if (ObjCCategoryImplDecl *ImplD = Ctx.getObjCImplementation(CD))
930 if (!ImplD->isInvalidDecl())
931 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod());
933 } else if (auto *ImplD = dyn_cast<ObjCImplementationDecl>(CtxD)) {
934 if (ObjCInterfaceDecl *IFD = ImplD->getClassInterface()
    [all...]

Completed in 26 milliseconds