HomeSort by relevance Sort by last modified time
    Searched refs:isInstanceMethod (Results 1 - 25 of 46) sorted by null

1 2

  /external/clang/tools/libclang/
CIndexUSRs.cpp 104 unsigned isInstanceMethod,
109 generateUSRForObjCMethod(name, isInstanceMethod, OS);
IndexDecl.cpp 30 D->isInstanceMethod());
IndexingContext.cpp     [all...]
  /external/clang/lib/AST/
DeclObjC.cpp 90 if (MD && MD->isInstanceMethod() == isInstance)
108 if (MD && MD->isInstanceMethod() && !MD->isImplicit())
821 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod());
826 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod());
832 Redecl = IFD->getMethod(getSelector(), isInstanceMethod());
838 Redecl = CatD->getMethod(getSelector(), isInstanceMethod());
845 isInstanceMethod());
857 isInstanceMethod()))
864 isInstanceMethod()))
870 isInstanceMethod());
    [all...]
Mangle.cpp 265 OS << (MD->isInstanceMethod() ? '-' : '+') << '[' << CD->getName();
Comment.cpp 136 IsInstanceMethod = false;
172 IsInstanceMethod = MD->isInstance();
173 IsClassMethod = !IsInstanceMethod;
183 IsInstanceMethod = MD->isInstanceMethod();
184 IsClassMethod = !IsInstanceMethod;
ASTImporter.cpp     [all...]
DeclPrinter.cpp 1038 if (OMD->isInstanceMethod())
    [all...]
  /external/clang/lib/ARCMigrate/
TransEmptyStatementsAndDealloc.cpp 214 } else if (MD->isInstanceMethod() && MD->getSelector() == FinalizeSel) {
TransZeroOutPropsInDealloc.cpp 102 !(D->isInstanceMethod() && D->getSelector() == FinalizeSel))
ObjCMT.cpp     [all...]
Transforms.cpp 537 if (MD->isInstanceMethod() && MD->getSelector() == FinalizeSel) {
  /external/clang/lib/Sema/
SemaDeclObjC.cpp 274 if (MDecl->isInstanceMethod())
368 IC->lookupMethod(MDecl->getSelector(), MDecl->isInstanceMethod());
422 MDecl->isInstanceMethod());
    [all...]
SemaExprObjC.cpp     [all...]
SemaCodeComplete.cpp 191 if (Method->isInstanceMethod())
    [all...]
SemaPseudoObject.cpp 729 if ((Getter->isInstanceMethod() && !RefExpr->isClassReceiver()) ||
789 if ((Setter->isInstanceMethod() && !RefExpr->isClassReceiver()) ||
    [all...]
SemaLookup.cpp     [all...]
SemaDeclAttr.cpp 133 static bool isInstanceMethod(const Decl *D) {
272 bool HasImplicitThisParam = isInstanceMethod(D);
    [all...]
SemaObjCProperty.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
IvarInvalidationChecker.cpp 436 InterfD->isInstanceMethod());
488 InterfD->isInstanceMethod());
RetainCountChecker.cpp 780 if (MD->isInstanceMethod())
    [all...]
  /external/clang/include/clang/CodeGen/
CGFunctionInfo.h 419 bool isInstanceMethod() const { return InstanceMethod; }
  /external/clang/include/clang/AST/
DeclObjC.h 419 bool isInstanceMethod() const { return IsInstance; }
738 &ObjCMethodDecl::isInstanceMethod>
    [all...]
  /external/clang/lib/Index/
USRGeneration.cpp 342 Out << (D->isInstanceMethod() ? "(im)" : "(cm)")
833 bool IsInstanceMethod,
835 OS << (IsInstanceMethod ? "(im)" : "(cm)") << Sel;
  /external/clang/include/clang-c/
Index.h     [all...]

Completed in 773 milliseconds

1 2