Home | History | Annotate | Download | only in Parse

Lines Matching refs:MDecl

613   Decl *MDecl = ParseObjCMethodDecl(mLoc, methodType, MethodImplKind,
617 return MDecl;
1846 Decl *MDecl = ParseObjCMethodPrototype();
1848 PrettyDeclStackTraceEntry CrashInfo(Actions, MDecl, Tok.getLocation(),
1872 if (MDecl)
1873 Actions.AddAnyMethodToGlobalPool(MDecl);
1876 LexedMethod* LM = new LexedMethod(this, MDecl);
1884 return MDecl;
2529 // MDecl might be null due to error in method prototype, etc.
2530 Decl *MDecl = LM.D;
2542 Actions.ActOnStartOfObjCMethodDef(getCurScope(), MDecl);
2547 return Actions.ActOnFinishFunctionBody(MDecl, 0);
2561 return Actions.ActOnFinishFunctionBody(MDecl, FnBody.take());