/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 | 89 if (MD && MD->isInstanceMethod() == isInstance) in getMethod() 560 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclaration() 564 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclaration() 569 Redecl = IFD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclaration() 574 Redecl = CatD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclaration() 580 isInstanceMethod()); in getNextRedeclaration() 592 isInstanceMethod())) in getCanonicalDecl() 599 isInstanceMethod())) in getCanonicalDecl() 605 isInstanceMethod()); in getCanonicalDecl() 644 if (!isInstanceMethod() || !getResultType()->isObjCObjectPointerType()) in getMethodFamily() [all …]
|
D | Mangle.cpp | 141 OS << (MD->isInstanceMethod() ? '-' : '+') << '[' << CD->getName(); in mangleObjCMethodName()
|
D | Comment.cpp | 184 IsInstanceMethod = MD->isInstanceMethod(); in fill()
|
D | ASTImporter.cpp | 3166 if (FoundMethod->isInstanceMethod() != D->isInstanceMethod()) in VisitObjCMethodDecl() 3173 << D->isInstanceMethod() << Name in VisitObjCMethodDecl() 3177 << D->isInstanceMethod() << Name; in VisitObjCMethodDecl() 3184 << D->isInstanceMethod() << Name in VisitObjCMethodDecl() 3188 << D->isInstanceMethod() << Name; in VisitObjCMethodDecl() 3200 << D->isInstanceMethod() << Name in VisitObjCMethodDecl() 3212 << D->isInstanceMethod() << Name; in VisitObjCMethodDecl() 3215 << D->isInstanceMethod() << Name; in VisitObjCMethodDecl() 3237 D->isInstanceMethod(), in VisitObjCMethodDecl()
|
D | DumpXML.cpp | 845 setFlag("instance", D->isInstanceMethod()); in visitObjCMethodDeclAttrs()
|
D | DeclPrinter.cpp | 894 if (OMD->isInstanceMethod()) in VisitObjCMethodDecl()
|
D | ASTDumper.cpp | 1118 if (D->isInstanceMethod()) in VisitObjCMethodDecl()
|
/external/clang/tools/libclang/ |
D | CIndexUSRs.cpp | 122 void GenObjCMethod(StringRef sel, bool isInstanceMethod); 312 Out << (D->isInstanceMethod() ? "(im)" : "(cm)"); in VisitObjCMethodDecl() 787 void USRGenerator::GenObjCMethod(StringRef meth, bool isInstanceMethod) { in GenObjCMethod() argument 788 Out << (isInstanceMethod ? "(im)" : "(cm)") << meth; in GenObjCMethod() 881 unsigned isInstanceMethod, in clang_constructUSR_ObjCMethod() argument 885 UG->GenObjCMethod(name, isInstanceMethod); in clang_constructUSR_ObjCMethod()
|
D | IndexingContext.cpp | 995 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 | 222 } else if (MD->isInstanceMethod() && MD->getSelector() == FinalizeSel) { in cleanupDeallocOrFinalize()
|
D | Transforms.cpp | 542 if (MD->isInstanceMethod() && MD->getSelector() == FinalizeSel) { in GCRewriteFinalize()
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | IvarInvalidationChecker.cpp | 447 InterfD->isInstanceMethod()); in visit() 496 InterfD->isInstanceMethod()); in visit()
|
/external/clang/lib/Sema/ |
D | SemaDeclObjC.cpp | 278 if (MDecl->isInstanceMethod()) in AddAnyMethodToGlobalPool() 373 IC->lookupMethod(MDecl->getSelector(), MDecl->isInstanceMethod()); in ActOnStartOfObjCMethodDef() 411 MDecl->isInstanceMethod()); in ActOnStartOfObjCMethodDef() 2154 if (!chosen->isInstanceMethod()) in isAcceptableMethodMismatch() 2338 if (Method->isInstanceMethod()) { in ActOnAtEnd() 2653 method->isInstanceMethod() ? it->second.first : it->second.second; in OverrideSearch() 2761 Method->isInstanceMethod()); in search() 2991 ObjCMethod->isInstanceMethod()); in ActOnMethodDeclaration() 3060 InferRelatedResultType = ObjCMethod->isInstanceMethod(); in ActOnMethodDeclaration()
|
D | SemaDeclAttr.cpp | 169 static bool isInstanceMethod(const Decl *D) { in isInstanceMethod() function 247 const bool HasImplicitThisParam = isInstanceMethod(D); in checkFunctionOrMethodArgumentIndex() 1021 if (MD->isInstanceMethod()) { in handleIBAction() 1134 bool HasImplicitThisParam = isInstanceMethod(D); in handleAllocSizeAttr() 1208 bool HasImplicitThisParam = isInstanceMethod(D); in handleNonNullAttr() 1340 bool HasImplicitThisParam = isInstanceMethod(D); in handleOwnershipAttr() 2982 bool HasImplicitThisParam = isInstanceMethod(D); in handleFormatArgAttr() 3168 bool HasImplicitThisParam = isInstanceMethod(D); in handleFormatAttr()
|
D | SemaPseudoObject.cpp | 632 if (Getter->isInstanceMethod() || RefExpr->isObjectReceiver()) { in buildGet() 692 if (Setter->isInstanceMethod() || RefExpr->isObjectReceiver()) { in buildSet()
|
D | SemaExprObjC.cpp | 1069 if (Method->isInstanceMethod() && isClassMessage) in getMessageSendResultType() 1120 << Method->isInstanceMethod() << Method->getSelector() in EmitRelatedResultTypeNote() 1563 if (CurMethod->isInstanceMethod()) { in ActOnClassPropertyRefExpr() 1807 if (Method->isInstanceMethod()) { in ActOnSuperMessage()
|
D | SemaCodeComplete.cpp | 191 if (Method->isInstanceMethod()) in ResultBuilder() 2004 if (Method->isInstanceMethod()) in AddOrdinaryNameResults() 2910 return cast<ObjCMethodDecl>(D)->isInstanceMethod() in getCursorKindForDecl() 4842 if (M->isInstanceMethod() == WantInstanceMethods || in AddObjCMethods() 5102 if (Method->isInstanceMethod()) in GetAssumedMessageSendExprType() 5162 CurMethod->isInstanceMethod()); in AddSuperSendCompletion() 5171 CurMethod->isInstanceMethod()))) in AddSuperSendCompletion() 5304 if (CurMethod->isInstanceMethod()) { in CodeCompleteObjCSuperMessage() 6193 if (M->isInstanceMethod() == WantInstanceMethods) { in FindImplementableMethods()
|
D | SemaLookup.cpp | 930 if (Method->isInstanceMethod() && Name.getAsIdentifierInfo()) in CppLookupName() 3012 if (Method->isInstanceMethod()) { in LookupVisibleDecls() 3511 if (Method->isInstanceMethod() && Method->getClassInterface() && in LookupPotentialTypoResult()
|
D | SemaObjCProperty.cpp | 1554 Method->isInstanceMethod()); in IvarBacksCurrentMethodAccessor()
|
/external/clang/include/clang/AST/ |
D | DeclObjC.h | 401 bool isInstanceMethod() const { return IsInstance; } in isInstanceMethod() function 520 &ObjCMethodDecl::isInstanceMethod>
|
/external/clang/include/clang-c/ |
D | Index.h | 3130 unsigned isInstanceMethod,
|
/external/clang/lib/Serialization/ |
D | ASTWriterDecl.cpp | 422 Record.push_back(D->isInstanceMethod()); in VisitObjCMethodDecl()
|