/external/clang/test/Index/ |
D | annotate-comments-property-accessor.m | 16 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-propert… 22 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-propert… 23 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-propert… 32 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-propert… 33 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-propert… 42 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-propert… 52 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-propert… 53 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-propert…
|
D | overriding-method-comments.mm | 22 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}overriding-method-comment… 31 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}overriding-method-comment… 37 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}overriding-method-comment… 51 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}overriding-method-comment… 57 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}overriding-method-comment… 64 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}overriding-method-comment… 70 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}overriding-method-comment… 76 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}overriding-method-comment… 81 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}overriding-method-comment… 86 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}overriding-method-comment… [all …]
|
/external/clang/lib/AST/ |
D | DeclObjC.cpp | 90 if (MD && MD->isInstanceMethod() == isInstance) in getMethod() 108 if (MD && MD->isInstanceMethod() && !MD->isImplicit()) in HasUserDeclaredSetterMethod() 821 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclarationImpl() 826 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclarationImpl() 832 Redecl = IFD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclarationImpl() 838 Redecl = CatD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclarationImpl() 845 isInstanceMethod()); in getNextRedeclarationImpl() 857 isInstanceMethod())) in getCanonicalDecl() 864 isInstanceMethod())) in getCanonicalDecl() 870 isInstanceMethod()); in getCanonicalDecl() [all …]
|
D | Mangle.cpp | 265 OS << (MD->isInstanceMethod() ? '-' : '+') << '[' << CD->getName(); in mangleObjCMethodName()
|
D | Comment.cpp | 183 IsInstanceMethod = MD->isInstanceMethod(); in fill()
|
D | ASTImporter.cpp | 3337 if (FoundMethod->isInstanceMethod() != D->isInstanceMethod()) in VisitObjCMethodDecl() 3344 << D->isInstanceMethod() << Name << D->getReturnType() in VisitObjCMethodDecl() 3348 << D->isInstanceMethod() << Name; in VisitObjCMethodDecl() 3355 << D->isInstanceMethod() << Name in VisitObjCMethodDecl() 3359 << D->isInstanceMethod() << Name; in VisitObjCMethodDecl() 3371 << D->isInstanceMethod() << Name in VisitObjCMethodDecl() 3383 << D->isInstanceMethod() << Name; in VisitObjCMethodDecl() 3386 << D->isInstanceMethod() << Name; in VisitObjCMethodDecl() 3404 Name.getObjCSelector(), ResultTy, ReturnTInfo, DC, D->isInstanceMethod(), in VisitObjCMethodDecl()
|
D | DeclPrinter.cpp | 1038 if (OMD->isInstanceMethod()) in VisitObjCMethodDecl()
|
/external/clang/tools/libclang/ |
D | CIndexUSRs.cpp | 104 unsigned isInstanceMethod, in clang_constructUSR_ObjCMethod() argument 109 generateUSRForObjCMethod(name, isInstanceMethod, OS); in clang_constructUSR_ObjCMethod()
|
D | IndexDecl.cpp | 30 D->isInstanceMethod()); in hasUserDefined()
|
D | IndexingContext.cpp | 1004 if (cast<ObjCMethodDecl>(D)->isInstanceMethod()) in getEntityInfo()
|
/external/clang/lib/ARCMigrate/ |
D | TransZeroOutPropsInDealloc.cpp | 102 !(D->isInstanceMethod() && D->getSelector() == FinalizeSel)) in TraverseObjCMethodDecl()
|
D | TransEmptyStatementsAndDealloc.cpp | 214 } else if (MD->isInstanceMethod() && MD->getSelector() == FinalizeSel) { in cleanupDeallocOrFinalize()
|
D | ObjCMT.cpp | 979 ClassString = OM->isInstanceMethod() ? '-' : '+'; in ReplaceWithInstancetype() 1167 if (Method->isPropertyAccessor() || !Method->isInstanceMethod() || in migrateProperty() 1262 !OM->isInstanceMethod() || in migrateNsReturnsInnerPointer() 1305 if (OM->isInstanceMethod() || in migrateFactoryMethod()
|
D | Transforms.cpp | 537 if (MD->isInstanceMethod() && MD->getSelector() == FinalizeSel) { in GCRewriteFinalize()
|
/external/clang/lib/Sema/ |
D | SemaDeclObjC.cpp | 274 if (MDecl->isInstanceMethod()) in AddAnyMethodToGlobalPool() 368 IC->lookupMethod(MDecl->getSelector(), MDecl->isInstanceMethod()); in ActOnStartOfObjCMethodDef() 422 MDecl->isInstanceMethod()); in ActOnStartOfObjCMethodDef() 1664 (PrevMethod->isInstanceMethod() == Method->isInstanceMethod()) && in DiagnoseClassExtensionDupMethods() 3252 if (!chosen->isInstanceMethod()) in isAcceptableMethodMismatch() 3289 BestMethod->isInstanceMethod() ? Pos->second.first : Pos->second.second; in AreMultipleMethodsInGlobalPool() 3574 if (Method->isInstanceMethod()) { in ActOnAtEnd() 3824 method->isInstanceMethod() ? it->second.first : it->second.second; in OverrideSearch() 3927 Method->isInstanceMethod(), in search() 3980 ObjCMethod->isInstanceMethod()? It->second.first: It->second.second; in CheckObjCMethodOverrides() [all …]
|
D | SemaExprObjC.cpp | 1312 if (Method->isInstanceMethod() && isClassMessage) in getBaseMessageSendResultType() 1427 iface->getMethod(MD->getSelector(), MD->isInstanceMethod()); in findExplicitInstancetypeDeclarer() 1493 << Method->isInstanceMethod() << Method->getSelector() in EmitRelatedResultTypeNote() 1941 if (CurMethod->isInstanceMethod()) { in ActOnClassPropertyRefExpr() 2171 if (Method->isInstanceMethod()) { in ActOnSuperMessage() 2642 SelectBestMethod(Sel, ArgsIn, Method->isInstanceMethod())) in BuildInstanceMessage() 2703 SelectBestMethod(Sel, ArgsIn, Method->isInstanceMethod())) in BuildInstanceMessage() 2773 SelectBestMethod(Sel, ArgsIn, Method->isInstanceMethod())) in BuildInstanceMessage()
|
D | SemaCodeComplete.cpp | 191 if (Method->isInstanceMethod()) in ResultBuilder() 2008 if (Method->isInstanceMethod()) in AddOrdinaryNameResults() 3028 return cast<ObjCMethodDecl>(D)->isInstanceMethod() in getCursorKindForDecl() 5030 if (M->isInstanceMethod() == WantInstanceMethods || in AddObjCMethods() 5286 if (Method->isInstanceMethod()) in GetAssumedMessageSendExprType() 5344 CurMethod->isInstanceMethod()); in AddSuperSendCompletion() 5350 CurMethod->isInstanceMethod()))) in AddSuperSendCompletion() 5483 if (CurMethod->isInstanceMethod()) { in CodeCompleteObjCSuperMessage() 6352 if (M->isInstanceMethod() == WantInstanceMethods) { in FindImplementableMethods()
|
D | SemaPseudoObject.cpp | 729 if ((Getter->isInstanceMethod() && !RefExpr->isClassReceiver()) || in buildGet() 789 if ((Setter->isInstanceMethod() && !RefExpr->isClassReceiver()) || in buildSet()
|
D | SemaLookup.cpp | 1144 if (Method->isInstanceMethod() && Name.getAsIdentifierInfo()) in CppLookupName() 3541 if (Method->isInstanceMethod()) { in LookupVisibleDecls() 4220 if (Method->isInstanceMethod() && Method->getClassInterface() && in LookupPotentialTypoResult()
|
D | SemaDeclAttr.cpp | 133 static bool isInstanceMethod(const Decl *D) { in isInstanceMethod() function 272 bool HasImplicitThisParam = isInstanceMethod(D); in checkFunctionOrMethodParameterIndex() 2822 bool HasImplicitThisParam = isInstanceMethod(D); in handleFormatAttr()
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | IvarInvalidationChecker.cpp | 436 InterfD->isInstanceMethod()); in visit() 488 InterfD->isInstanceMethod()); in visit()
|
/external/clang/include/clang/CodeGen/ |
D | CGFunctionInfo.h | 419 bool isInstanceMethod() const { return InstanceMethod; } in isInstanceMethod() function
|
/external/clang/lib/Index/ |
D | USRGeneration.cpp | 342 Out << (D->isInstanceMethod() ? "(im)" : "(cm)") in VisitObjCMethodDecl()
|
/external/clang/include/clang/AST/ |
D | DeclObjC.h | 419 bool isInstanceMethod() const { return IsInstance; } in isInstanceMethod() function 738 &ObjCMethodDecl::isInstanceMethod>
|
/external/clang/include/clang-c/ |
D | Index.h | 3676 unsigned isInstanceMethod,
|