Searched refs:MethodDecl (Results 1 - 23 of 23) 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/clang/lib/ARCMigrate/
H A DObjCMT.cpp71 const ObjCMethodDecl *MethodDecl, bool ResultAnnotated);
81 const ObjCMethodDecl *MethodDecl);
1581 const ObjCMethodDecl *MethodDecl,
1595 ObjCMethodFamily OMF = MethodDecl->getMethodFamily();
1613 commit.insertBefore(MethodDecl->getLocEnd(), AnnotationString);
1619 for (ObjCMethodDecl::param_const_iterator pi = MethodDecl->param_begin(),
1620 pe = MethodDecl->param_end(); pi != pe; ++pi, ++i) {
1634 const ObjCMethodDecl *MethodDecl) {
1635 if (MethodDecl->hasBody() || MethodDecl
1579 AddCFAnnotations(ASTContext &Ctx, const CallEffects &CE, const ObjCMethodDecl *MethodDecl, bool ResultAnnotated) argument
1632 migrateAddMethodAnnotation( ASTContext &Ctx, const ObjCMethodDecl *MethodDecl) argument
[all...]
/external/clang/lib/AST/
H A DDeclObjC.cpp664 ObjCMethodDecl *MethodDecl = nullptr; local
671 if ((MethodDecl = ClassDecl->getMethod(Sel, isInstance)))
672 return MethodDecl;
676 if ((MethodDecl = Cat->getMethod(Sel, isInstance)))
677 if (C != Cat || !MethodDecl->isImplicit())
678 return MethodDecl;
682 if ((MethodDecl = I->lookupMethod(Sel, isInstance)))
683 return MethodDecl;
693 if ((MethodDecl = (*I)->lookupMethod(Sel, isInstance)))
694 if (C != Cat || !MethodDecl
1822 ObjCMethodDecl *MethodDecl = nullptr; local
[all...]
H A DASTContext.cpp9071 ASTContext::ObjCMethodsAreEqual(const ObjCMethodDecl *MethodDecl,
9074 if (MethodDecl->hasAttr<UnavailableAttr>()
9075 || MethodDecl->hasAttr<DeprecatedAttr>())
9077 if (MethodDecl->getObjCDeclQualifier() !=
9080 if (!hasSameType(MethodDecl->getReturnType(), MethodImpl->getReturnType()))
9083 if (MethodDecl->param_size() != MethodImpl->param_size())
9087 IF = MethodDecl->param_begin(), EM = MethodImpl->param_end(),
9088 EF = MethodDecl->param_end();
9097 return (MethodDecl->isVariadic() == MethodImpl->isVariadic());
/external/clang/lib/Sema/
H A DSemaDeclObjC.cpp2227 ObjCMethodDecl *MethodDecl,
2232 objcModifiersConflict(MethodDecl->getObjCDeclQualifier(),
2241 S.Diag(MethodDecl->getLocation(), diag::note_previous_declaration)
2242 << MethodDecl->getReturnTypeSourceRange();
2250 MethodDecl->getReturnType(),
2255 *MethodDecl->getReturnType()->getNullability(S.Context);
2264 ((MethodDecl->getObjCDeclQualifier() & Decl::OBJC_TQ_CSNullability)
2266 S.Diag(MethodDecl->getLocation(), diag::note_previous_declaration);
2270 MethodDecl->getReturnType()))
2284 MethodDecl
2225 CheckMethodOverrideReturn(Sema &S, ObjCMethodDecl *MethodImpl, ObjCMethodDecl *MethodDecl, bool IsProtocolMethodDecl, bool IsOverridingMode, bool Warn) argument
2309 CheckMethodOverrideParam(Sema &S, ObjCMethodDecl *MethodImpl, ObjCMethodDecl *MethodDecl, ParmVarDecl *ImplVar, ParmVarDecl *IfaceVar, bool IsProtocolMethodDecl, bool IsOverridingMode, bool Warn) argument
2464 WarnConflictingTypedMethods(ObjCMethodDecl *ImpMethodDecl, ObjCMethodDecl *MethodDecl, bool IsProtocolMethodDecl) argument
2515 WarnExactTypedMethods(ObjCMethodDecl *ImpMethodDecl, ObjCMethodDecl *MethodDecl, bool IsProtocolMethodDecl) argument
[all...]
H A DSemaExpr.cpp13035 } else if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(Func)) {
13036 if (MethodDecl->isOverloadedOperator() &&
13037 MethodDecl->getOverloadedOperator() == OO_Equal) {
13038 MethodDecl = cast<CXXMethodDecl>(MethodDecl->getFirstDecl());
13039 if (MethodDecl->isDefaulted() && !MethodDecl->isDeleted()) {
13040 if (MethodDecl->isCopyAssignmentOperator())
13041 DefineImplicitCopyAssignment(Loc, MethodDecl);
13042 else if (MethodDecl
[all...]
H A DSemaDeclAttr.cpp138 if (const CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(D))
139 return MethodDecl->isInstance();
H A DSemaDeclCXX.cpp11802 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
11803 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::__anon1325
281 Result.MethodDecl = MD;
362 ObjCMethodDecl *getMethodDecl() const { return MethodDecl; }
H A DSema.h3068 ObjCMethodDecl *MethodDecl,
3078 ObjCMethodDecl *MethodDecl,
4550 CXXMethodDecl *MethodDecl);
4563 CXXMethodDecl *MethodDecl);
/external/clang/lib/CodeGen/
H A DItaniumCXXABI.cpp1595 auto *MethodDecl = cast<CXXMethodDecl>(GD.getDecl()); local
1596 llvm::Value *VTable = CGF.GetVTablePtr(This, Ty, MethodDecl->getParent());
1599 if (CGF.ShouldEmitVTableTypeCheckedLoad(MethodDecl->getParent())) {
1601 MethodDecl->getParent(), VTable,
1604 CGF.EmitTypeMetadataCodeForVCall(MethodDecl->getParent(), VTable, Loc);
H A DMicrosoftCXXABI.cpp1810 auto *MethodDecl = cast<CXXMethodDecl>(GD.getDecl()); local
1811 llvm::Value *VTable = CGF.GetVTablePtr(VPtr, Ty, MethodDecl->getParent());
1816 if (CGF.ShouldEmitVTableTypeCheckedLoad(MethodDecl->getParent())) {
/external/clang/include/clang/AST/
H A DASTContext.h2042 bool ObjCMethodsAreEqual(const ObjCMethodDecl *MethodDecl,
/external/annotation-tools/asmx/
H A Djavassist.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/ByteArrayClassPath.class ByteArrayClassPath.java package javassist ...
/external/annotation-tools/asmx/test/lib/
H A Djavassist.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/ByteArrayClassPath.class ByteArrayClassPath.java package javassist ...
/external/guice/extensions/persist/lib/
H A Djavassist.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/ByteArrayClassPath.class ByteArrayClassPath.java package javassist ...
/external/guice/extensions/struts2/lib/
H A Djavassist.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/ByteArrayClassPath.class ByteArrayClassPath.java package javassist ...
/external/robolectric/v1/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 610 milliseconds