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.cpp70 const ObjCMethodDecl *MethodDecl, bool ResultAnnotated);
80 const ObjCMethodDecl *MethodDecl);
1453 const ObjCMethodDecl *MethodDecl,
1468 ObjCMethodFamily OMF = MethodDecl->getMethodFamily();
1487 commit.insertBefore(MethodDecl->getLocEnd(), AnnotationString);
1493 for (ObjCMethodDecl::param_const_iterator pi = MethodDecl->param_begin(),
1494 pe = MethodDecl->param_end(); pi != pe; ++pi, ++i) {
1508 const ObjCMethodDecl *MethodDecl) {
1509 if (MethodDecl->hasBody() || MethodDecl
1451 AddCFAnnotations(ASTContext &Ctx, const CallEffects &CE, const ObjCMethodDecl *MethodDecl, bool ResultAnnotated) argument
1506 migrateAddMethodAnnotation( ASTContext &Ctx, const ObjCMethodDecl *MethodDecl) argument
[all...]
/external/clang/lib/AST/
H A DDeclObjC.cpp555 ObjCMethodDecl *MethodDecl = nullptr; local
561 if ((MethodDecl = ClassDecl->getMethod(Sel, isInstance)))
562 return MethodDecl;
566 if ((MethodDecl = I->lookupMethod(Sel, isInstance)))
567 return MethodDecl;
571 if ((MethodDecl = Cat->getMethod(Sel, isInstance)))
572 if (C != Cat || !MethodDecl->isImplicit())
573 return MethodDecl;
581 if ((MethodDecl = (*I)->lookupMethod(Sel, isInstance)))
582 if (C != Cat || !MethodDecl
1538 ObjCMethodDecl *MethodDecl = nullptr; local
[all...]
H A DASTContext.cpp8251 ASTContext::ObjCMethodsAreEqual(const ObjCMethodDecl *MethodDecl, argument
8254 if (MethodDecl->hasAttr<UnavailableAttr>()
8255 || MethodDecl->hasAttr<DeprecatedAttr>())
8257 if (MethodDecl->getObjCDeclQualifier() !=
8260 if (!hasSameType(MethodDecl->getReturnType(), MethodImpl->getReturnType()))
8263 if (MethodDecl->param_size() != MethodImpl->param_size())
8267 IF = MethodDecl->param_begin(), EM = MethodImpl->param_end(),
8268 EF = MethodDecl->param_end();
8277 return (MethodDecl->isVariadic() == MethodImpl->isVariadic());
/external/clang/lib/Sema/
H A DSemaDeclObjC.cpp1352 ObjCMethodDecl *MethodDecl,
1357 (MethodDecl->getObjCDeclQualifier() !=
1366 S.Diag(MethodDecl->getLocation(), diag::note_previous_declaration)
1367 << getTypeRange(MethodDecl->getReturnTypeSourceInfo());
1374 MethodDecl->getReturnType()))
1388 MethodDecl->getReturnType()->getAs<ObjCObjectPointerType>()) {
1403 << MethodImpl->getDeclName() << MethodDecl->getReturnType()
1406 S.Diag(MethodDecl->getLocation(), IsOverridingMode
1409 << getTypeRange(MethodDecl->getReturnTypeSourceInfo());
1415 ObjCMethodDecl *MethodDecl,
1350 CheckMethodOverrideReturn(Sema &S, ObjCMethodDecl *MethodImpl, ObjCMethodDecl *MethodDecl, bool IsProtocolMethodDecl, bool IsOverridingMode, bool Warn) argument
1413 CheckMethodOverrideParam(Sema &S, ObjCMethodDecl *MethodImpl, ObjCMethodDecl *MethodDecl, ParmVarDecl *ImplVar, ParmVarDecl *IfaceVar, bool IsProtocolMethodDecl, bool IsOverridingMode, bool Warn) argument
1553 WarnConflictingTypedMethods(ObjCMethodDecl *ImpMethodDecl, ObjCMethodDecl *MethodDecl, bool IsProtocolMethodDecl) argument
1604 WarnExactTypedMethods(ObjCMethodDecl *ImpMethodDecl, ObjCMethodDecl *MethodDecl, bool IsProtocolMethodDecl) argument
[all...]
H A DSemaExpr.cpp11457 } else if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(Func)) {
11458 if (MethodDecl->isOverloadedOperator() &&
11459 MethodDecl->getOverloadedOperator() == OO_Equal) {
11460 MethodDecl = cast<CXXMethodDecl>(MethodDecl->getFirstDecl());
11461 if (MethodDecl->isDefaulted() && !MethodDecl->isDeleted()) {
11462 if (MethodDecl->isCopyAssignmentOperator())
11463 DefineImplicitCopyAssignment(Loc, MethodDecl);
11465 DefineImplicitMoveAssignment(Loc, MethodDecl);
[all...]
H A DSemaDeclAttr.cpp109 if (const CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(D))
110 return MethodDecl->isInstance();
H A DSemaDeclCXX.cpp10980 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
10981 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::__anon17621
281 Result.MethodDecl = MD;
361 ObjCMethodDecl *getMethodDecl() const { return MethodDecl; }
H A DSema.h2725 ObjCMethodDecl *MethodDecl,
2735 ObjCMethodDecl *MethodDecl,
4089 CXXMethodDecl *MethodDecl);
4102 CXXMethodDecl *MethodDecl);
/external/clang/include/clang/AST/
H A DASTContext.h1811 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 415 milliseconds