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

1 2

  /external/clang/lib/AST/
DeclObjC.cpp 90 if (MD && MD->isInstanceMethod() == isInstance)
108 if (MD && MD->isInstanceMethod() && !MD->isImplicit())
645 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod());
650 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod());
656 Redecl = IFD->getMethod(getSelector(), isInstanceMethod());
662 Redecl = CatD->getMethod(getSelector(), isInstanceMethod());
669 isInstanceMethod());
681 isInstanceMethod()))
688 isInstanceMethod()))
694 isInstanceMethod());
    [all...]
Mangle.cpp 120 OS << (MD->isInstanceMethod() ? '-' : '+') << '[' << CD->getName();
Comment.cpp 135 IsInstanceMethod = false;
172 IsInstanceMethod = MD->isInstance();
173 IsClassMethod = !IsInstanceMethod;
184 IsInstanceMethod = MD->isInstanceMethod();
185 IsClassMethod = !IsInstanceMethod;
ASTImporter.cpp     [all...]
DumpXML.cpp 845 setFlag("instance", D->isInstanceMethod());
DeclPrinter.cpp 914 if (OMD->isInstanceMethod())
    [all...]
  /external/clang/tools/libclang/
CIndexUSRs.cpp 122 void GenObjCMethod(StringRef sel, bool isInstanceMethod);
312 Out << (D->isInstanceMethod() ? "(im)" : "(cm)")
786 void USRGenerator::GenObjCMethod(StringRef meth, bool isInstanceMethod) {
787 Out << (isInstanceMethod ? "(im)" : "(cm)") << meth;
880 unsigned isInstanceMethod,
884 UG->GenObjCMethod(name, isInstanceMethod);
IndexDecl.cpp 30 D->isInstanceMethod());
IndexingContext.cpp     [all...]
  /external/clang/lib/ARCMigrate/
TransEmptyStatementsAndDealloc.cpp 222 } else if (MD->isInstanceMethod() && MD->getSelector() == FinalizeSel) {
TransZeroOutPropsInDealloc.cpp 102 !(D->isInstanceMethod() && D->getSelector() == FinalizeSel))
ObjCMT.cpp 577 ClassString = OM->isInstanceMethod() ? '-' : '+';
642 if (OM->isInstanceMethod() ||
Transforms.cpp 542 if (MD->isInstanceMethod() && MD->getSelector() == FinalizeSel) {
  /external/clang/lib/StaticAnalyzer/Checkers/
IvarInvalidationChecker.cpp 448 InterfD->isInstanceMethod());
499 InterfD->isInstanceMethod());
RetainCountChecker.cpp 776 if (MD->isInstanceMethod())
    [all...]
  /external/clang/lib/Sema/
SemaDeclObjC.cpp 279 if (MDecl->isInstanceMethod())
374 IC->lookupMethod(MDecl->getSelector(), MDecl->isInstanceMethod());
414 MDecl->isInstanceMethod());
    [all...]
SemaCodeComplete.cpp 191 if (Method->isInstanceMethod())
    [all...]
SemaExprObjC.cpp     [all...]
SemaPseudoObject.cpp 681 if (Getter->isInstanceMethod() || RefExpr->isObjectReceiver()) {
740 if (Setter->isInstanceMethod() || RefExpr->isObjectReceiver()) {
    [all...]
SemaLookup.cpp     [all...]
SemaDeclAttr.cpp 170 static bool isInstanceMethod(const Decl *D) {
250 bool HasImplicitThisParam = isInstanceMethod(D);
    [all...]
SemaObjCProperty.cpp     [all...]
  /external/clang/include/clang/AST/
DeclObjC.h 401 bool isInstanceMethod() const { return IsInstance; }
520 &ObjCMethodDecl::isInstanceMethod>
    [all...]
  /external/clang/include/clang-c/
Index.h     [all...]
  /external/clang/lib/Serialization/
ASTWriterDecl.cpp 432 Record.push_back(D->isInstanceMethod());
    [all...]

Completed in 1678 milliseconds

1 2