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 1037 void DeclPrinter::VisitObjCMethodDecl(ObjCMethodDecl *OMD) {
1038 if (OMD->isInstanceMethod())
1042 if (!OMD->getReturnType().isNull()) {
1043 PrintObjCMethodType(OMD->getASTContext(), OMD->getObjCDeclQualifier(),
1044 OMD->getReturnType());
1047 std::string name = OMD->getSelector().getAsString();
1049 for (const auto *PI : OMD->params()) {
1053 PrintObjCMethodType(OMD->getASTContext(),
1060 if (OMD->param_begin() == OMD->param_end()
    [all...]
ASTContext.cpp 466 const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(D);
467 if (OMD && OMD->isPropertyAccessor())
468 if (const ObjCPropertyDecl *PDecl = OMD->findPropertyDecl())
471 if (OMD)
472 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,
CodeGenModule.cpp     [all...]
CGDebugInfo.cpp 217 StringRef CGDebugInfo::getObjCMethodName(const ObjCMethodDecl *OMD) {
220 OS << (OMD->isInstanceMethod() ? '-' : '+') << '[';
221 const DeclContext *DC = OMD->getDeclContext();
241 if (ImplicitParamDecl *SelfDecl = OMD->getSelfDecl()) {
247 OS << ' ' << OMD->getSelector().getAsString() << ']';
    [all...]
CGObjCMac.cpp     [all...]
CGObjCGNU.cpp 512 llvm::Function *GenerateMethod(const ObjCMethodDecl *OMD,
    [all...]
CGDecl.cpp 168 else if (const auto *OMD = dyn_cast<ObjCMethodDecl>(DC))
169 ContextName = OMD->getSelector().getAsString();
    [all...]
CodeGenFunction.cpp 633 else if (auto *OMD = dyn_cast_or_null<ObjCMethodDecl>(F))
634 Body = OMD->getBody();
    [all...]
CodeGenFunction.h     [all...]
  /external/clang/lib/Frontend/Rewrite/
RewriteObjC.cpp     [all...]
RewriteModernObjC.cpp     [all...]
  /external/clang/lib/Sema/
SemaExprMember.cpp 402 if (ObjCMethodDecl *OMD = PDecl->getInstanceMethod(Sel))
403 return OMD;
426 if (ObjCMethodDecl *OMD = I->getInstanceMethod(Sel)) {
427 GDecl = OMD;
    [all...]
SemaExprObjC.cpp     [all...]
SemaCodeComplete.cpp     [all...]
SemaExpr.cpp 87 const auto *OMD = dyn_cast<ObjCMethodDecl>(D);
88 if (!OMD)
90 const ObjCInterfaceDecl *OID = OMD->getClassInterface();
96 Cat->getMethod(OMD->getSelector(), OMD->isInstanceMethod()))
    [all...]
SemaDeclCXX.cpp     [all...]
  /external/clang/tools/libclang/
CXType.cpp 890 if (const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(D)) {
891 if (Ctx.getObjCEncodingForMethodDecl(OMD, encoding))
CIndex.cpp     [all...]

Completed in 292 milliseconds