HomeSort by relevance Sort by last modified time
    Searched refs:MethodDecl (Results 1 - 18 of 18) sorted by null

  /external/javassist/src/main/javassist/compiler/ast/
MethodDecl.java 20 public class MethodDecl extends ASTList {
23 public MethodDecl(ASTree _head, ASTList _tail) {
Visitor.java 30 public void atMethodDecl(MethodDecl n) throws CompileError {}
  /external/lldb/source/Expression/
ASTResultSynthesizer.cpp 176 ASTResultSynthesizer::SynthesizeObjCMethodResult (ObjCMethodDecl *MethodDecl)
183 if (!MethodDecl)
191 MethodDecl->print(os);
198 Stmt *method_body = MethodDecl->getBody();
206 MethodDecl);
213 MethodDecl->print(os);
  /external/lldb/include/lldb/Expression/
ASTResultSynthesizer.h 129 /// @param[in] MethodDecl
132 bool SynthesizeObjCMethodResult(clang::ObjCMethodDecl *MethodDecl);
  /external/clang/lib/ARCMigrate/
ObjCMT.cpp 70 const ObjCMethodDecl *MethodDecl, bool ResultAnnotated);
80 const ObjCMethodDecl *MethodDecl);
    [all...]
  /external/clang/lib/AST/
DeclObjC.cpp 555 ObjCMethodDecl *MethodDecl = nullptr;
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->isImplicit()
    [all...]
ASTContext.cpp     [all...]
  /external/clang/lib/Sema/
SemaDeclObjC.cpp     [all...]
SemaExpr.cpp     [all...]
SemaDeclAttr.cpp 109 if (const CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(D))
110 return MethodDecl->isInstance();
    [all...]
SemaDeclCXX.cpp     [all...]
  /external/javassist/src/main/javassist/compiler/
Parser.java 34 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)
    [all...]
Javac.java 94 CtBehavior cb = compileMethod(p, (MethodDecl)mem);
141 private CtBehavior compileMethod(Parser p, MethodDecl md)
MemberCodeGen.java     [all...]
CodeGen.java 254 public void atMethodDecl(MethodDecl method) throws CompileError {
    [all...]
  /external/clang/include/clang/Sema/
Initialization.h 136 ObjCMethodDecl *MethodDecl;
281 Result.MethodDecl = MD;
361 ObjCMethodDecl *getMethodDecl() const { return MethodDecl; }
    [all...]
Sema.h     [all...]
  /external/clang/include/clang/AST/
ASTContext.h     [all...]

Completed in 2043 milliseconds