HomeSort by relevance Sort by last modified time
    Searched refs:OMD (Results 1 - 21 of 21) sorted by null

  /external/clang/lib/AST/
Mangle.cpp 143 if (const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(D))
144 mangleObjCMethodName(OMD, Out);
158 else if (const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(D))
159 mangleObjCMethodName(OMD, Out);
DeclPrinter.cpp 1055 void DeclPrinter::VisitObjCMethodDecl(ObjCMethodDecl *OMD) {
1056 if (OMD->isInstanceMethod())
1060 if (!OMD->getReturnType().isNull()) {
1061 PrintObjCMethodType(OMD->getASTContext(), OMD->getObjCDeclQualifier()
    [all...]
ASTContext.cpp 467 const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(D);
468 if (OMD && OMD->isPropertyAccessor())
469 if (const ObjCPropertyDecl *PDecl = OMD->findPropertyDecl())
472 if (OMD)
473 addRedeclaredMethods(OMD, Overridden);
    [all...]
  /external/clang/lib/CodeGen/
CGObjC.cpp 452 const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl);
453 bool isCategoryImpl = isa<ObjCCategoryImplDecl>(OMD->getDeclContext());
456 OMD->getClassInterface(),
518 void CodeGenFunction::StartObjCMethod(const ObjCMethodDecl *OMD,
520 SourceLocation StartLoc = OMD->getLocStart();
523 if (OMD->hasAttr<NoDebugAttr>())
526 llvm::Function *Fn = CGM.getObjCRuntime().GenerateMethod(OMD, CD);
528 const CGFunctionInfo &FI = CGM.getTypes().arrangeObjCMethodDeclaration(OMD);
529 CGM.SetInternalFunctionAttributes(OMD, Fn, FI);
531 args.push_back(OMD->getSelfDecl())
    [all...]
CGObjCRuntime.h 204 virtual llvm::Function *GenerateMethod(const ObjCMethodDecl *OMD,
CGDebugInfo.cpp 220 StringRef CGDebugInfo::getObjCMethodName(const ObjCMethodDecl *OMD) {
223 OS << (OMD->isInstanceMethod() ? '-' : '+') << '[';
224 const DeclContext *DC = OMD->getDeclContext();
244 if (ImplicitParamDecl *SelfDecl = OMD->getSelfDecl()) {
250 OS << ' ' << OMD->getSelector().getAsString() << ']';
    [all...]
CodeGenModule.cpp     [all...]
CGObjCMac.cpp     [all...]
CGObjCGNU.cpp 534 llvm::Function *GenerateMethod(const ObjCMethodDecl *OMD,
    [all...]
CGDecl.cpp 177 else if (const auto *OMD = dyn_cast<ObjCMethodDecl>(DC))
178 ContextName = OMD->getSelector().getAsString();
    [all...]
CodeGenFunction.cpp 642 else if (auto *OMD = dyn_cast_or_null<ObjCMethodDecl>(F))
643 Body = OMD->getBody();
    [all...]
CodeGenFunction.h     [all...]
  /external/clang/lib/Frontend/Rewrite/
RewriteObjC.cpp     [all...]
RewriteModernObjC.cpp     [all...]
  /external/clang/lib/Sema/
SemaExprMember.cpp 415 if (ObjCMethodDecl *OMD = PDecl->getInstanceMethod(Sel))
416 return OMD;
440 if (ObjCMethodDecl *OMD = I->getInstanceMethod(Sel)) {
441 GDecl = OMD;
    [all...]
SemaExprObjC.cpp     [all...]
SemaCodeComplete.cpp     [all...]
SemaExpr.cpp 91 const auto *OMD = dyn_cast<ObjCMethodDecl>(D);
92 if (!OMD)
94 const ObjCInterfaceDecl *OID = OMD->getClassInterface();
100 Cat->getMethod(OMD->getSelector(), OMD->isInstanceMethod()))
    [all...]
SemaDeclCXX.cpp     [all...]
  /external/clang/tools/libclang/
CXType.cpp 903 if (const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(D)) {
904 if (Ctx.getObjCEncodingForMethodDecl(OMD, encoding))
CIndex.cpp     [all...]

Completed in 1073 milliseconds