/external/clang/tools/libclang/ |
H A D | CIndexUSRs.cpp | 104 unsigned isInstanceMethod, 109 generateUSRForObjCMethod(name, isInstanceMethod, OS); 103 clang_constructUSR_ObjCMethod(const char *name, unsigned isInstanceMethod, CXString classUSR) argument
|
H A D | IndexDecl.cpp | 30 D->isInstanceMethod());
|
H A D | IndexingContext.cpp | 1004 if (cast<ObjCMethodDecl>(D)->isInstanceMethod())
|
/external/clang/lib/AST/ |
H A D | 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...] |
H A D | Mangle.cpp | 265 OS << (MD->isInstanceMethod() ? '-' : '+') << '[' << CD->getName();
|
H A D | Comment.cpp | 183 IsInstanceMethod = MD->isInstanceMethod();
|
H A D | ASTImporter.cpp | 3337 if (FoundMethod->isInstanceMethod() != D->isInstanceMethod()) 3344 << D->isInstanceMethod() << Name << D->getReturnType() 3348 << D->isInstanceMethod() << Name; 3355 << D->isInstanceMethod() << Name 3359 << D->isInstanceMethod() << Name; 3371 << D->isInstanceMethod() << Name 3383 << D->isInstanceMethod() << Name; 3386 << D->isInstanceMethod() << Name; 3404 Name.getObjCSelector(), ResultTy, ReturnTInfo, DC, D->isInstanceMethod(), [all...] |
H A D | DeclPrinter.cpp | 1038 if (OMD->isInstanceMethod())
|
/external/clang/lib/ARCMigrate/ |
H A D | TransEmptyStatementsAndDealloc.cpp | 214 } else if (MD->isInstanceMethod() && MD->getSelector() == FinalizeSel) {
|
H A D | TransZeroOutPropsInDealloc.cpp | 102 !(D->isInstanceMethod() && D->getSelector() == FinalizeSel))
|
H A D | ObjCMT.cpp | 979 ClassString = OM->isInstanceMethod() ? '-' : '+'; 1167 if (Method->isPropertyAccessor() || !Method->isInstanceMethod() || 1262 !OM->isInstanceMethod() || 1305 if (OM->isInstanceMethod() ||
|
H A D | Transforms.cpp | 537 if (MD->isInstanceMethod() && MD->getSelector() == FinalizeSel) {
|
/external/clang/lib/Sema/ |
H A D | SemaDeclObjC.cpp | 274 if (MDecl->isInstanceMethod()) 368 IC->lookupMethod(MDecl->getSelector(), MDecl->isInstanceMethod()); 422 MDecl->isInstanceMethod()); 1664 (PrevMethod->isInstanceMethod() == Method->isInstanceMethod()) && 3252 if (!chosen->isInstanceMethod()) 3289 BestMethod->isInstanceMethod() ? Pos->second.first : Pos->second.second; 3574 if (Method->isInstanceMethod()) { 3824 method->isInstanceMethod() ? it->second.first : it->second.second; 3927 Method->isInstanceMethod(), [all...] |
H A D | SemaExprObjC.cpp | 1312 if (Method->isInstanceMethod() && isClassMessage) 1427 iface->getMethod(MD->getSelector(), MD->isInstanceMethod()); 1493 << Method->isInstanceMethod() << Method->getSelector() 1941 if (CurMethod->isInstanceMethod()) { 2171 if (Method->isInstanceMethod()) { 2642 SelectBestMethod(Sel, ArgsIn, Method->isInstanceMethod())) 2703 SelectBestMethod(Sel, ArgsIn, Method->isInstanceMethod())) 2773 SelectBestMethod(Sel, ArgsIn, Method->isInstanceMethod()))
|
H A D | SemaCodeComplete.cpp | 191 if (Method->isInstanceMethod()) 2008 if (Method->isInstanceMethod()) 3028 return cast<ObjCMethodDecl>(D)->isInstanceMethod() 5030 if (M->isInstanceMethod() == WantInstanceMethods || 5286 if (Method->isInstanceMethod()) 5344 CurMethod->isInstanceMethod()); 5350 CurMethod->isInstanceMethod()))) 5483 if (CurMethod->isInstanceMethod()) { 6352 if (M->isInstanceMethod() == WantInstanceMethods) {
|
H A D | SemaPseudoObject.cpp | 729 if ((Getter->isInstanceMethod() && !RefExpr->isClassReceiver()) || 789 if ((Setter->isInstanceMethod() && !RefExpr->isClassReceiver()) ||
|
H A D | SemaLookup.cpp | 1144 if (Method->isInstanceMethod() && Name.getAsIdentifierInfo()) 3541 if (Method->isInstanceMethod()) { 4220 if (Method->isInstanceMethod() && Method->getClassInterface() &&
|
H A D | SemaDeclAttr.cpp | 133 static bool isInstanceMethod(const Decl *D) { function 272 bool HasImplicitThisParam = isInstanceMethod(D); 2822 bool HasImplicitThisParam = isInstanceMethod(D);
|
H A D | SemaObjCProperty.cpp | 1587 Method->isInstanceMethod());
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
H A D | IvarInvalidationChecker.cpp | 436 InterfD->isInstanceMethod()); 488 InterfD->isInstanceMethod());
|
H A D | RetainCountChecker.cpp | 780 if (MD->isInstanceMethod())
|
/external/clang/include/clang/CodeGen/ |
H A D | CGFunctionInfo.h | 419 bool isInstanceMethod() const { return InstanceMethod; } function in class:clang::CodeGen::ABIArgInfo::CGFunctionInfo
|
/external/clang/include/clang/AST/ |
H A D | DeclObjC.h | 419 bool isInstanceMethod() const { return IsInstance; } function in class:clang::ObjCList 738 &ObjCMethodDecl::isInstanceMethod>
|
/external/clang/lib/Index/ |
H A D | USRGeneration.cpp | 342 Out << (D->isInstanceMethod() ? "(im)" : "(cm)")
|
/external/clang/include/clang-c/ |
H A D | Index.h | 3676 unsigned isInstanceMethod,
|