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

1 2

  /external/clang/lib/AST/
DeclObjC.cpp 89 if (MD && MD->isInstanceMethod() == isInstance)
560 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod());
564 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod());
569 Redecl = IFD->getMethod(getSelector(), isInstanceMethod());
574 Redecl = CatD->getMethod(getSelector(), isInstanceMethod());
580 isInstanceMethod());
592 isInstanceMethod()))
599 isInstanceMethod()))
605 isInstanceMethod());
644 if (!isInstanceMethod() || !getResultType()->isObjCObjectPointerType()
    [all...]
Mangle.cpp 141 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 894 if (OMD->isInstanceMethod())
    [all...]
ASTDumper.cpp     [all...]
Expr.cpp 583 Out << (MD->isInstanceMethod() ? '-' : '+');
    [all...]
  /external/clang/tools/libclang/
CIndexUSRs.cpp 122 void GenObjCMethod(StringRef sel, bool isInstanceMethod);
312 Out << (D->isInstanceMethod() ? "(im)" : "(cm)");
787 void USRGenerator::GenObjCMethod(StringRef meth, bool isInstanceMethod) {
788 Out << (isInstanceMethod ? "(im)" : "(cm)") << meth;
881 unsigned isInstanceMethod,
885 UG->GenObjCMethod(name, 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))
Transforms.cpp 542 if (MD->isInstanceMethod() && MD->getSelector() == FinalizeSel) {
  /external/clang/lib/StaticAnalyzer/Checkers/
IvarInvalidationChecker.cpp 447 InterfD->isInstanceMethod());
496 InterfD->isInstanceMethod());
  /external/clang/lib/Sema/
SemaDeclObjC.cpp 278 if (MDecl->isInstanceMethod())
373 IC->lookupMethod(MDecl->getSelector(), MDecl->isInstanceMethod());
411 MDecl->isInstanceMethod());
    [all...]
SemaCodeComplete.cpp 191 if (Method->isInstanceMethod())
    [all...]
SemaDeclAttr.cpp 169 static bool isInstanceMethod(const Decl *D) {
247 const bool HasImplicitThisParam = isInstanceMethod(D);
    [all...]
SemaPseudoObject.cpp 632 if (Getter->isInstanceMethod() || RefExpr->isObjectReceiver()) {
692 if (Setter->isInstanceMethod() || RefExpr->isObjectReceiver()) {
    [all...]
SemaExprObjC.cpp     [all...]
SemaLookup.cpp 930 if (Method->isInstanceMethod() && Name.getAsIdentifierInfo())
    [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 422 Record.push_back(D->isInstanceMethod());
    [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteObjC.cpp 522 bool IsInstanceMethod,
    [all...]

Completed in 200 milliseconds

1 2