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

  /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 (!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 195 virtual llvm::Function *GenerateMethod(const ObjCMethodDecl *OMD,
CodeGenModule.cpp     [all...]
CGObjCMac.cpp     [all...]
CGDebugInfo.cpp 150 StringRef CGDebugInfo::getObjCMethodName(const ObjCMethodDecl *OMD) {
153 OS << (OMD->isInstanceMethod() ? '-' : '+') << '[';
154 const DeclContext *DC = OMD->getDeclContext();
166 OS << ' ' << OMD->getSelector().getAsString() << ']';
    [all...]
CGObjCGNU.cpp 510 virtual llvm::Function *GenerateMethod(const ObjCMethodDecl *OMD,
    [all...]
CodeGenFunction.h     [all...]
  /external/clang/lib/AST/
DeclPrinter.cpp 893 void DeclPrinter::VisitObjCMethodDecl(ObjCMethodDecl *OMD) {
894 if (OMD->isInstanceMethod())
898 if (!OMD->getResultType().isNull())
899 Out << '(' << OMD->getResultType().getAsString(Policy) << ")";
901 std::string name = OMD->getSelector().getAsString();
903 for (ObjCMethodDecl::param_iterator PI = OMD->param_begin(),
904 E = OMD->param_end(); PI != E; ++PI) {
912 if (OMD->param_begin() == OMD->param_end())
915 if (OMD->isVariadic()
    [all...]
ASTContext.cpp 426 const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(D);
427 if (OMD && OMD->isPropertyAccessor())
428 if (const ObjCPropertyDecl *PDecl = OMD->findPropertyDecl())
431 if (OMD)
432 addRedeclaredMethods(OMD, Overridden);
    [all...]
  /external/clang/lib/Sema/
SemaExprMember.cpp 384 if (ObjCMethodDecl *OMD = PDecl->getInstanceMethod(Sel))
385 return OMD;
410 if (ObjCMethodDecl *OMD = (*I)->getInstanceMethod(Sel)) {
411 GDecl = OMD;
    [all...]
SemaObjCProperty.cpp     [all...]
SemaCodeComplete.cpp     [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteObjC.cpp     [all...]
RewriteModernObjC.cpp     [all...]
  /external/clang/tools/libclang/
CXType.cpp 660 if (const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(D)) {
661 if (Ctx.getObjCEncodingForMethodDecl(OMD, encoding))
CIndex.cpp     [all...]

Completed in 355 milliseconds