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 850 void DeclPrinter::VisitObjCMethodDecl(ObjCMethodDecl *OMD) {
851 if (OMD->isInstanceMethod())
855 if (!OMD->getResultType().isNull())
856 Out << '(' << OMD->getResultType().getAsString(Policy) << ")";
858 std::string name = OMD->getSelector().getAsString();
860 for (ObjCMethodDecl::param_iterator PI = OMD->param_begin(),
861 E = OMD->param_end(); PI != E; ++PI) {
869 if (OMD->param_begin() == OMD->param_end())
872 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...]
CGObjCRuntime.h 196 virtual llvm::Function *GenerateMethod(const ObjCMethodDecl *OMD,
CodeGenModule.cpp     [all...]
CGObjCMac.cpp 824 void GetNameForMethod(const ObjCMethodDecl *OMD,
    [all...]
CGDebugInfo.cpp 147 StringRef CGDebugInfo::getObjCMethodName(const ObjCMethodDecl *OMD) {
150 OS << (OMD->isInstanceMethod() ? '-' : '+') << '[';
151 const DeclContext *DC = OMD->getDeclContext();
163 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/Frontend/
RewriteModernObjC.cpp     [all...]
RewriteObjC.cpp     [all...]
  /external/clang/tools/libclang/
CXType.cpp 627 if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(D)) {
628 if (Ctx.getObjCEncodingForMethodDecl(OMD, encoding))
CIndex.cpp     [all...]

Completed in 271 milliseconds