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

1 2

  /external/clang/lib/AST/
DeclObjC.cpp 75 if (MD && MD->isInstanceMethod() == isInstance)
421 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod());
425 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod());
430 Redecl = IFD->getMethod(getSelector(), isInstanceMethod());
435 Redecl = CatD->getMethod(getSelector(), isInstanceMethod());
441 isInstanceMethod());
453 isInstanceMethod()))
460 isInstanceMethod()))
466 isInstanceMethod());
499 if (!isInstanceMethod() || !getResultType()->isObjCObjectPointerType()
    [all...]
Mangle.cpp 123 OS << (MD->isInstanceMethod() ? '-' : '+') << '[' << CD->getName();
ASTImporter.cpp     [all...]
DeclPrinter.cpp 837 if (OMD->isInstanceMethod())
DumpXML.cpp 846 setFlag("instance", D->isInstanceMethod());
Expr.cpp 410 Out << (MD->isInstanceMethod() ? '-' : '+');
    [all...]
  /external/clang/lib/Index/
Entity.cpp 127 bool isObjCInstanceMethod = MD && MD->isInstanceMethod();
194 if (MD->isInstanceMethod() == IsObjCInstanceMethod)
Analyzer.cpp 96 bool IsInstanceMethod;
116 IsInstanceMethod = MD->isInstanceMethod();
167 return !IsInstanceMethod;
173 if (!IsInstanceMethod)
180 if (IsInstanceMethod)
189 if (IsInstanceMethod)
197 if (!IsInstanceMethod)
225 if (Cls->getMethod(Sel, IsInstanceMethod))
332 if ((MD->isInstanceMethod() && CanBeInstanceMethod) |
    [all...]
  /external/clang/tools/libclang/
CIndexUSRs.cpp 125 void GenObjCMethod(StringRef sel, bool isInstanceMethod);
303 Out << (D->isInstanceMethod() ? "(im)" : "(cm)");
770 void USRGenerator::GenObjCMethod(StringRef meth, bool isInstanceMethod) {
771 Out << (isInstanceMethod ? "(im)" : "(cm)") << meth;
886 unsigned isInstanceMethod,
890 UG->GenObjCMethod(name, isInstanceMethod);
CXCursor.cpp 760 Method->isInstanceMethod()))
    [all...]
CIndex.cpp     [all...]
  /external/clang/lib/Sema/
SemaDeclObjC.cpp 258 if (MDecl->isInstanceMethod())
328 IC->lookupMethod(MDecl->getSelector(), MDecl->isInstanceMethod()))
    [all...]
SemaCodeComplete.cpp 182 if (Method->isInstanceMethod())
    [all...]
SemaExprObjC.cpp 294 if (Method->isInstanceMethod() && isClassMessage)
345 << Method->isInstanceMethod() << Method->getSelector()
763 if (CurMethod->isInstanceMethod()) {
    [all...]
SemaDeclAttr.cpp 162 static bool isInstanceMethod(const Decl *D) {
749 if (MD->isInstanceMethod()) {
855 bool HasImplicitThisParam = isInstanceMethod(D);
    [all...]
SemaLookup.cpp 923 if (Method->isInstanceMethod() && Name.getAsIdentifierInfo())
    [all...]
SemaExpr.cpp     [all...]
  /external/clang/include/clang/AST/
DeclObjC.h 379 bool isInstanceMethod() const { return IsInstance; }
460 &ObjCMethodDecl::isInstanceMethod>
    [all...]
  /external/clang/include/clang-c/
Index.h     [all...]
  /external/clang/lib/CodeGen/
CGObjC.cpp 326 OMD->isInstanceMethod() &&
    [all...]
CGDebugInfo.cpp 136 OS << (OMD->isInstanceMethod() ? '-' : '+') << '[';
    [all...]
CGObjCGNU.cpp     [all...]
  /external/clang/lib/Serialization/
ASTWriterDecl.cpp 401 Record.push_back(D->isInstanceMethod());
    [all...]
  /external/clang/lib/Rewrite/
RewriteObjC.cpp 343 bool IsInstanceMethod,
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
RetainCountChecker.cpp 788 if (MD->isInstanceMethod())
    [all...]

Completed in 1043 milliseconds

1 2