Searched refs:MethodDecl (Results 1 - 19 of 19) sorted by relevance

/external/javassist/src/main/javassist/compiler/ast/
H A DMethodDecl.java20 public class MethodDecl extends ASTList { class in inherits:ASTList
23 public MethodDecl(ASTree _head, ASTList _tail) { method in class:MethodDecl
H A DVisitor.java30 public void atMethodDecl(MethodDecl n) throws CompileError {}
/external/lldb/source/Expression/
H A DASTResultSynthesizer.cpp176 ASTResultSynthesizer::SynthesizeObjCMethodResult (ObjCMethodDecl *MethodDecl) argument
183 if (!MethodDecl)
191 MethodDecl->print(os);
198 Stmt *method_body = MethodDecl->getBody();
206 MethodDecl);
213 MethodDecl->print(os);
/external/lldb/include/lldb/Expression/
H A DASTResultSynthesizer.h129 /// @param[in] MethodDecl
132 bool SynthesizeObjCMethodResult(clang::ObjCMethodDecl *MethodDecl);
/external/clang/lib/ARCMigrate/
H A DObjCMT.cpp71 const ObjCMethodDecl *MethodDecl, bool ResultAnnotated);
81 const ObjCMethodDecl *MethodDecl);
1596 const ObjCMethodDecl *MethodDecl,
1611 ObjCMethodFamily OMF = MethodDecl->getMethodFamily();
1630 commit.insertBefore(MethodDecl->getLocEnd(), AnnotationString);
1636 for (ObjCMethodDecl::param_const_iterator pi = MethodDecl->param_begin(),
1637 pe = MethodDecl->param_end(); pi != pe; ++pi, ++i) {
1651 const ObjCMethodDecl *MethodDecl) {
1652 if (MethodDecl->hasBody() || MethodDecl
1594 AddCFAnnotations(ASTContext &Ctx, const CallEffects &CE, const ObjCMethodDecl *MethodDecl, bool ResultAnnotated) argument
1649 migrateAddMethodAnnotation( ASTContext &Ctx, const ObjCMethodDecl *MethodDecl) argument
[all...]
/external/clang/lib/AST/
H A DDeclObjC.cpp555 ObjCMethodDecl *MethodDecl = nullptr; local
562 if ((MethodDecl = ClassDecl->getMethod(Sel, isInstance)))
563 return MethodDecl;
567 if ((MethodDecl = Cat->getMethod(Sel, isInstance)))
568 if (C != Cat || !MethodDecl->isImplicit())
569 return MethodDecl;
573 if ((MethodDecl = I->lookupMethod(Sel, isInstance)))
574 return MethodDecl;
584 if ((MethodDecl = (*I)->lookupMethod(Sel, isInstance)))
585 if (C != Cat || !MethodDecl
1569 ObjCMethodDecl *MethodDecl = nullptr; local
[all...]
H A DASTContext.cpp8396 ASTContext::ObjCMethodsAreEqual(const ObjCMethodDecl *MethodDecl, argument
8399 if (MethodDecl->hasAttr<UnavailableAttr>()
8400 || MethodDecl->hasAttr<DeprecatedAttr>())
8402 if (MethodDecl->getObjCDeclQualifier() !=
8405 if (!hasSameType(MethodDecl->getReturnType(), MethodImpl->getReturnType()))
8408 if (MethodDecl->param_size() != MethodImpl->param_size())
8412 IF = MethodDecl->param_begin(), EM = MethodImpl->param_end(),
8413 EF = MethodDecl->param_end();
8422 return (MethodDecl->isVariadic() == MethodImpl->isVariadic());
/external/clang/lib/Sema/
H A DSemaDeclObjC.cpp1346 ObjCMethodDecl *MethodDecl,
1351 (MethodDecl->getObjCDeclQualifier() !=
1360 S.Diag(MethodDecl->getLocation(), diag::note_previous_declaration)
1361 << MethodDecl->getReturnTypeSourceRange();
1368 MethodDecl->getReturnType()))
1382 MethodDecl->getReturnType()->getAs<ObjCObjectPointerType>()) {
1397 << MethodImpl->getDeclName() << MethodDecl->getReturnType()
1400 S.Diag(MethodDecl->getLocation(), IsOverridingMode
1403 << MethodDecl->getReturnTypeSourceRange();
1409 ObjCMethodDecl *MethodDecl,
1344 CheckMethodOverrideReturn(Sema &S, ObjCMethodDecl *MethodImpl, ObjCMethodDecl *MethodDecl, bool IsProtocolMethodDecl, bool IsOverridingMode, bool Warn) argument
1407 CheckMethodOverrideParam(Sema &S, ObjCMethodDecl *MethodImpl, ObjCMethodDecl *MethodDecl, ParmVarDecl *ImplVar, ParmVarDecl *IfaceVar, bool IsProtocolMethodDecl, bool IsOverridingMode, bool Warn) argument
1548 WarnConflictingTypedMethods(ObjCMethodDecl *ImpMethodDecl, ObjCMethodDecl *MethodDecl, bool IsProtocolMethodDecl) argument
1599 WarnExactTypedMethods(ObjCMethodDecl *ImpMethodDecl, ObjCMethodDecl *MethodDecl, bool IsProtocolMethodDecl) argument
[all...]
H A DSemaExpr.cpp12145 } else if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(Func)) {
12146 if (MethodDecl->isOverloadedOperator() &&
12147 MethodDecl->getOverloadedOperator() == OO_Equal) {
12148 MethodDecl = cast<CXXMethodDecl>(MethodDecl->getFirstDecl());
12149 if (MethodDecl->isDefaulted() && !MethodDecl->isDeleted()) {
12150 if (MethodDecl->isCopyAssignmentOperator())
12151 DefineImplicitCopyAssignment(Loc, MethodDecl);
12153 DefineImplicitMoveAssignment(Loc, MethodDecl);
[all...]
H A DSemaDeclAttr.cpp133 if (const CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(D))
134 return MethodDecl->isInstance();
H A DSemaDeclCXX.cpp11583 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
11584 if (MethodDecl->isStatic())
/external/javassist/src/main/javassist/compiler/
H A DParser.java34 if (mem instanceof MethodDecl)
35 return parseMethod2(tbl, (MethodDecl)mem);
58 name = MethodDecl.initName;
103 private MethodDecl parseMethod1(SymbolTable tbl, boolean isConstructor,
138 return new MethodDecl(mods, new ASTList(d,
144 public MethodDecl parseMethod2(SymbolTable tbl, MethodDecl md)
H A DJavac.java94 CtBehavior cb = compileMethod(p, (MethodDecl)mem);
141 private CtBehavior compileMethod(Parser p, MethodDecl md)
H A DMemberCodeGen.java1099 public CtClass[] makeParamList(MethodDecl md) throws CompileError {
1116 public CtClass[] makeThrowsList(MethodDecl md) throws CompileError {
H A DCodeGen.java254 public void atMethodDecl(MethodDecl method) throws CompileError {
/external/clang/include/clang/Sema/
H A DInitialization.h136 ObjCMethodDecl *MethodDecl; member in union:clang::InitializedEntity::__anon718
281 Result.MethodDecl = MD;
361 ObjCMethodDecl *getMethodDecl() const { return MethodDecl; }
H A DSema.h2767 ObjCMethodDecl *MethodDecl,
2777 ObjCMethodDecl *MethodDecl,
4190 CXXMethodDecl *MethodDecl);
4203 CXXMethodDecl *MethodDecl);
/external/clang/include/clang/AST/
H A DASTContext.h1831 bool ObjCMethodsAreEqual(const ObjCMethodDecl *MethodDecl,
/external/robolectric/lib/main/
H A Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ...

Completed in 523 milliseconds