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

  /external/clang/lib/CodeGen/
CGObjC.cpp 396 const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl);
397 bool isCategoryImpl = isa<ObjCCategoryImplDecl>(OMD->getDeclContext());
400 OMD->getClassInterface(),
463 void CodeGenFunction::StartObjCMethod(const ObjCMethodDecl *OMD,
468 if (OMD->hasAttr<NoDebugAttr>())
471 llvm::Function *Fn = CGM.getObjCRuntime().GenerateMethod(OMD, CD);
473 const CGFunctionInfo &FI = CGM.getTypes().arrangeObjCMethodDeclaration(OMD);
474 CGM.SetInternalFunctionAttributes(OMD, Fn, FI);
476 args.push_back(OMD->getSelfDecl());
477 args.push_back(OMD->getCmdDecl())
    [all...]
CGObjCRuntime.h 195 virtual llvm::Function *GenerateMethod(const ObjCMethodDecl *OMD,
CodeGenModule.cpp     [all...]
CGDebugInfo.cpp 191 StringRef CGDebugInfo::getObjCMethodName(const ObjCMethodDecl *OMD) {
194 OS << (OMD->isInstanceMethod() ? '-' : '+') << '[';
195 const DeclContext *DC = OMD->getDeclContext();
208 if (ImplicitParamDecl* SelfDecl = OMD->getSelfDecl()) {
214 OS << ' ' << OMD->getSelector().getAsString() << ']';
    [all...]
CGObjCMac.cpp     [all...]
CGObjCGNU.cpp 505 llvm::Function *GenerateMethod(const ObjCMethodDecl *OMD,
    [all...]
CodeGenFunction.cpp 510 else if (auto *OMD = dyn_cast_or_null<ObjCMethodDecl>(F))
511 Body = OMD->getBody();
    [all...]
CodeGenFunction.h     [all...]
  /external/clang/lib/AST/
DeclPrinter.cpp 917 void DeclPrinter::VisitObjCMethodDecl(ObjCMethodDecl *OMD) {
918 if (OMD->isInstanceMethod())
922 if (!OMD->getReturnType().isNull())
923 Out << '(' << OMD->getASTContext()
924 .getUnqualifiedObjCPointerType(OMD->getReturnType())
927 std::string name = OMD->getSelector().getAsString();
929 for (const auto *PI : OMD->params()) {
938 if (OMD->param_begin() == OMD->param_end())
941 if (OMD->isVariadic()
    [all...]
ASTContext.cpp 465 const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(D);
466 if (OMD && OMD->isPropertyAccessor())
467 if (const ObjCPropertyDecl *PDecl = OMD->findPropertyDecl())
470 if (OMD)
471 addRedeclaredMethods(OMD, Overridden);
    [all...]
  /external/clang/lib/Sema/
SemaExprMember.cpp 401 if (ObjCMethodDecl *OMD = PDecl->getInstanceMethod(Sel))
402 return OMD;
425 if (ObjCMethodDecl *OMD = I->getInstanceMethod(Sel)) {
426 GDecl = OMD;
    [all...]
SemaExprObjC.cpp     [all...]
SemaCodeComplete.cpp     [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteModernObjC.cpp     [all...]
RewriteObjC.cpp     [all...]
  /external/clang/tools/libclang/
CXType.cpp 854 if (const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(D)) {
855 if (Ctx.getObjCEncodingForMethodDecl(OMD, encoding))
CIndex.cpp     [all...]

Completed in 868 milliseconds