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

  /external/clang/lib/AST/
DeclPrinter.cpp 851 void DeclPrinter::VisitObjCMethodDecl(ObjCMethodDecl *OMD) {
852 if (OMD->isInstanceMethod())
856 if (!OMD->getResultType().isNull())
857 Out << '(' << OMD->getResultType().getAsString(Policy) << ")";
859 std::string name = OMD->getSelector().getAsString();
861 for (ObjCMethodDecl::param_iterator PI = OMD->param_begin(),
862 E = OMD->param_end(); PI != E; ++PI) {
870 if (OMD->param_begin() == OMD->param_end())
873 if (OMD->isVariadic()
    [all...]
  /external/clang/lib/CodeGen/
CGObjC.cpp 371 const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl);
372 bool isCategoryImpl = isa<ObjCCategoryImplDecl>(OMD->getDeclContext());
375 OMD->getClassInterface(),
438 void CodeGenFunction::StartObjCMethod(const ObjCMethodDecl *OMD,
443 if (CGM.getModuleDebugInfo() && !OMD->hasAttr<NoDebugAttr>())
446 llvm::Function *Fn = CGM.getObjCRuntime().GenerateMethod(OMD, CD);
448 const CGFunctionInfo &FI = CGM.getTypes().arrangeObjCMethodDeclaration(OMD);
449 CGM.SetInternalFunctionAttributes(OMD, Fn, FI);
451 args.push_back(OMD->getSelfDecl());
452 args.push_back(OMD->getCmdDecl())
    [all...]
CodeGenModule.cpp     [all...]
CGObjCRuntime.h 196 virtual llvm::Function *GenerateMethod(const ObjCMethodDecl *OMD,
CGObjCMac.cpp 824 void GetNameForMethod(const ObjCMethodDecl *OMD,
    [all...]
CGDebugInfo.cpp 145 StringRef CGDebugInfo::getObjCMethodName(const ObjCMethodDecl *OMD) {
148 OS << (OMD->isInstanceMethod() ? '-' : '+') << '[';
149 const DeclContext *DC = OMD->getDeclContext();
161 OS << ' ' << OMD->getSelector().getAsString() << ']';
    [all...]
CGObjCGNU.cpp 464 virtual llvm::Function *GenerateMethod(const ObjCMethodDecl *OMD,
    [all...]
CodeGenFunction.h     [all...]
  /external/clang/lib/Sema/
SemaExprMember.cpp 392 if (ObjCMethodDecl *OMD = PDecl->getInstanceMethod(Sel))
393 return OMD;
418 if (ObjCMethodDecl *OMD = (*I)->getInstanceMethod(Sel)) {
419 GDecl = OMD;
    [all...]
SemaObjCProperty.cpp     [all...]
  /external/clang/lib/Rewrite/
RewriteModernObjC.cpp     [all...]
RewriteObjC.cpp     [all...]
  /external/clang/tools/libclang/
CXType.cpp 611 if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(D)) {
612 if (Ctx.getObjCEncodingForMethodDecl(OMD, encoding))
CIndex.cpp     [all...]

Completed in 903 milliseconds