HomeSort by relevance Sort by last modified time
    Searched refs:isInstanceMethod (Results 1 - 25 of 41) 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())
738 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod());
743 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod());
749 Redecl = IFD->getMethod(getSelector(), isInstanceMethod());
755 Redecl = CatD->getMethod(getSelector(), isInstanceMethod());
762 isInstanceMethod());
774 isInstanceMethod()))
781 isInstanceMethod()))
787 isInstanceMethod());
    [all...]
Mangle.cpp 242 OS << (MD->isInstanceMethod() ? '-' : '+') << '[' << CD->getName();
Comment.cpp 136 IsInstanceMethod = false;
173 IsInstanceMethod = MD->isInstance();
174 IsClassMethod = !IsInstanceMethod;
185 IsInstanceMethod = MD->isInstanceMethod();
186 IsClassMethod = !IsInstanceMethod;
ASTImporter.cpp     [all...]
DeclPrinter.cpp 918 if (OMD->isInstanceMethod())
    [all...]
  /external/clang/lib/ARCMigrate/
TransEmptyStatementsAndDealloc.cpp 216 } else if (MD->isInstanceMethod() && MD->getSelector() == FinalizeSel) {
TransZeroOutPropsInDealloc.cpp 102 !(D->isInstanceMethod() && D->getSelector() == FinalizeSel))
ObjCMT.cpp     [all...]
Transforms.cpp 541 if (MD->isInstanceMethod() && MD->getSelector() == FinalizeSel) {
  /external/clang/lib/StaticAnalyzer/Checkers/
IvarInvalidationChecker.cpp 436 InterfD->isInstanceMethod());
488 InterfD->isInstanceMethod());
RetainCountChecker.cpp 754 if (MD->isInstanceMethod())
    [all...]
  /external/clang/include/clang/CodeGen/
CGFunctionInfo.h 397 bool isInstanceMethod() const { return InstanceMethod; }
  /external/clang/lib/Sema/
SemaDeclObjC.cpp 278 if (MDecl->isInstanceMethod())
371 IC->lookupMethod(MDecl->getSelector(), MDecl->isInstanceMethod());
425 MDecl->isInstanceMethod());
    [all...]
SemaCodeComplete.cpp 191 if (Method->isInstanceMethod())
    [all...]
SemaExprObjC.cpp     [all...]
SemaPseudoObject.cpp 703 if ((Getter->isInstanceMethod() && !RefExpr->isClassReceiver()) ||
777 if ((Setter->isInstanceMethod() && !RefExpr->isClassReceiver()) ||
    [all...]
SemaLookup.cpp     [all...]
SemaDeclAttr.cpp 108 static bool isInstanceMethod(const Decl *D) {
226 bool HasImplicitThisParam = isInstanceMethod(D);
    [all...]
  /external/clang/lib/Index/
USRGeneration.cpp 328 Out << (D->isInstanceMethod() ? "(im)" : "(cm)")
785 bool IsInstanceMethod,
787 OS << (IsInstanceMethod ? "(im)" : "(cm)") << Sel;
  /external/clang/include/clang/AST/
DeclObjC.h 410 bool isInstanceMethod() const { return IsInstance; }
552 &ObjCMethodDecl::isInstanceMethod>
    [all...]
  /external/lldb/source/Expression/
ClangUserExpression.cpp 225 if (!method_decl->isInstanceMethod())
    [all...]
  /external/clang/include/clang-c/
Index.h     [all...]

Completed in 768 milliseconds

1 2