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

  /src/external/apache2/llvm/dist/clang/lib/Analysis/
BodyFarm.cpp 858 auto *OMD = Ext->getInstanceMethod(D->getSelector());
859 if (OMD && !OMD->isImplicit())
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaObjCProperty.cpp 1440 ObjCMethodDecl *OMD = ClassImpDecl->getMethod(
1442 if (!OMD)
1443 OMD = RedeclarePropertyAccessor(Context, IC, getterMethod, AtLoc,
1445 PIDecl->setGetterMethodDecl(OMD);
1505 ObjCMethodDecl *OMD = ClassImpDecl->getMethod(
1507 if (!OMD)
1508 OMD = RedeclarePropertyAccessor(Context, IC, setterMethod,
1510 PIDecl->setSetterMethodDecl(OMD);
SemaExprObjC.cpp 1749 const ObjCMethodDecl *OMD = SelectorsForTypoCorrection(Sel, ReceiverType);
1750 if (OMD && !OMD->isInvalidDecl()) {
1756 Selector MatchedSel = OMD->getSelector();
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGObjC.cpp 684 const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl);
685 bool isCategoryImpl = isa<ObjCCategoryImplDecl>(OMD->getDeclContext());
688 OMD->getClassInterface(),
750 void CodeGenFunction::StartObjCMethod(const ObjCMethodDecl *OMD,
752 SourceLocation StartLoc = OMD->getBeginLoc();
755 if (OMD->hasAttr<NoDebugAttr>())
758 llvm::Function *Fn = CGM.getObjCRuntime().GenerateMethod(OMD, CD);
760 const CGFunctionInfo &FI = CGM.getTypes().arrangeObjCMethodDeclaration(OMD);
761 if (OMD->isDirectMethod()) {
763 CGM.SetLLVMFunctionAttributes(OMD, FI, Fn, /*IsThunk=*/false)
    [all...]
CGDebugInfo.cpp 274 StringRef CGDebugInfo::getObjCMethodName(const ObjCMethodDecl *OMD) {
277 OS << (OMD->isInstanceMethod() ? '-' : '+') << '[';
278 const DeclContext *DC = OMD->getDeclContext();
293 OS << ' ' << OMD->getSelector().getAsString() << ']';
3776 const auto *OMD = dyn_cast<ObjCMethodDecl>(D);
3777 if (!OMD)
3780 if (CGM.getCodeGenOpts().DwarfVersion < 5 && !OMD->isDirectMethod())
3783 if (OMD->isDirectMethod())
3790 ID = OMD->getClassInterface();
3799 InterfaceType, getObjCMethodName(OMD), StringRef()
    [all...]
CodeGenModule.cpp 5776 auto *OMD = cast<ObjCImplementationDecl>(D);
5777 EmitObjCPropertyImplementations(OMD);
5778 EmitObjCIvarInitializations(OMD);
5779 ObjCRuntime->GenerateClass(OMD);
5784 OMD->getClassInterface()), OMD->getLocation());
5788 auto *OMD = cast<ObjCMethodDecl>(D);
5790 if (OMD->getBody())
5791 CodeGenFunction(*this).GenerateObjCMethod(OMD);
  /src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp 912 auto *OMD = IMP->getInstanceMethod(getter ? PD->getGetterName()
914 return !OMD || OMD->isSynthesizedAccessorStub();
1230 ObjCMethodDecl *OMD,
1235 RewriteTypeIntoString(OMD->getReturnType(), ResultStr, FPRetType);
1241 if (OMD->isInstanceMethod())
1250 dyn_cast<ObjCCategoryImplDecl>(OMD->getDeclContext())) {
1256 std::string selString = OMD->getSelector().getAsString();
1264 MethodInternalNames[OMD] = NameStr;
1271 if (OMD->isInstanceMethod())
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
ASTContext.cpp 577 const auto *OMD = dyn_cast<ObjCMethodDecl>(D);
578 if (OMD && OMD->isPropertyAccessor())
579 if (const ObjCPropertyDecl *PDecl = OMD->findPropertyDecl())
582 if (OMD)
583 addRedeclaredMethods(OMD, Overridden);

Completed in 165 milliseconds