Home
last modified time | relevance | path

Searched refs:MethodDecl (Results 1 – 12 of 12) sorted by relevance

/external/clang/lib/AST/
DDeclObjC.cpp277 ObjCMethodDecl *MethodDecl = 0; in lookupMethod() local
283 if ((MethodDecl = ClassDecl->getMethod(Sel, isInstance))) in lookupMethod()
284 return MethodDecl; in lookupMethod()
291 if ((MethodDecl = (*I)->lookupMethod(Sel, isInstance))) in lookupMethod()
292 return MethodDecl; in lookupMethod()
297 if ((MethodDecl = CatDecl->getMethod(Sel, isInstance))) in lookupMethod()
298 return MethodDecl; in lookupMethod()
305 if ((MethodDecl = (*I)->lookupMethod(Sel, isInstance))) in lookupMethod()
306 return MethodDecl; in lookupMethod()
837 ObjCMethodDecl *MethodDecl = NULL; in lookupMethod() local
[all …]
/external/javassist/src/main/javassist/compiler/ast/
DMethodDecl.java20 public class MethodDecl extends ASTList { class
23 public MethodDecl(ASTree _head, ASTList _tail) { in MethodDecl() method in MethodDecl
DVisitor.java30 public void atMethodDecl(MethodDecl n) throws CompileError {} in atMethodDecl()
/external/clang/lib/Sema/
DSemaDeclObjC.cpp1172 ObjCMethodDecl *MethodDecl, in CheckMethodOverrideReturn() argument
1175 (MethodDecl->getObjCDeclQualifier() != in CheckMethodOverrideReturn()
1181 S.Diag(MethodDecl->getLocation(), diag::note_previous_declaration) in CheckMethodOverrideReturn()
1182 << getTypeRange(MethodDecl->getResultTypeSourceInfo()); in CheckMethodOverrideReturn()
1186 MethodDecl->getResultType())) in CheckMethodOverrideReturn()
1196 MethodDecl->getResultType()->getAs<ObjCObjectPointerType>()) { in CheckMethodOverrideReturn()
1210 << MethodDecl->getResultType() in CheckMethodOverrideReturn()
1213 S.Diag(MethodDecl->getLocation(), diag::note_previous_definition) in CheckMethodOverrideReturn()
1214 << getTypeRange(MethodDecl->getResultTypeSourceInfo()); in CheckMethodOverrideReturn()
1219 ObjCMethodDecl *MethodDecl, in CheckMethodOverrideParam() argument
[all …]
DSemaExpr.cpp8937 } else if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(D)) { in MarkDeclarationReferenced() local
8938 if (MethodDecl->isDefaulted() && MethodDecl->isOverloadedOperator() && in MarkDeclarationReferenced()
8939 MethodDecl->getOverloadedOperator() == OO_Equal) { in MarkDeclarationReferenced()
8940 if (!MethodDecl->isUsed(false)) in MarkDeclarationReferenced()
8941 DefineImplicitCopyAssignment(Loc, MethodDecl); in MarkDeclarationReferenced()
8942 } else if (MethodDecl->isVirtual()) in MarkDeclarationReferenced()
8943 MarkVTableUsed(Loc, MethodDecl->getParent()); in MarkDeclarationReferenced()
DSemaDeclAttr.cpp160 if (const CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(D)) in isInstanceMethod() local
161 return MethodDecl->isInstance(); in isInstanceMethod()
DSemaDeclCXX.cpp7725 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) { in CheckOverloadedOperatorDeclaration() local
7726 if (MethodDecl->isStatic()) in CheckOverloadedOperatorDeclaration()
/external/javassist/src/main/javassist/compiler/
DParser.java34 if (mem instanceof MethodDecl) in parseMember()
35 return parseMethod2(tbl, (MethodDecl)mem); in parseMember()
58 name = MethodDecl.initName; in parseMember1()
103 private MethodDecl parseMethod1(SymbolTable tbl, boolean isConstructor, in parseMethod1()
138 return new MethodDecl(mods, new ASTList(d, in parseMethod1()
144 public MethodDecl parseMethod2(SymbolTable tbl, MethodDecl md) in parseMethod2()
DJavac.java94 CtBehavior cb = compileMethod(p, (MethodDecl)mem); in compile()
141 private CtBehavior compileMethod(Parser p, MethodDecl md) in compileMethod()
DMemberCodeGen.java1099 public CtClass[] makeParamList(MethodDecl md) throws CompileError { in makeParamList()
1116 public CtClass[] makeThrowsList(MethodDecl md) throws CompileError { in makeThrowsList()
DCodeGen.java254 public void atMethodDecl(MethodDecl method) throws CompileError { in atMethodDecl()
/external/clang/include/clang/Sema/
DSema.h1766 ObjCMethodDecl *MethodDecl,
2802 CXXMethodDecl *MethodDecl);
5000 ObjCMethodDecl *MethodDecl,