| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | DeclObjC.cpp | 111 if (MD && MD->isInstanceMethod() == isInstance) in getMethod() 129 if (MD && MD->isInstanceMethod() && !MD->isImplicit()) in HasUserDeclaredSetterMethod() 974 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclarationImpl() 979 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclarationImpl() 984 Redecl = IFD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclarationImpl() 989 Redecl = CatD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclarationImpl() 1002 isInstanceMethod(), in getNextRedeclarationImpl() 1021 if (ObjCMethodDecl *MD = IFD->getMethod(Sel, isInstanceMethod())) in getCanonicalDecl() 1024 if (ObjCMethodDecl *MD = Ext->getMethod(Sel, isInstanceMethod())) in getCanonicalDecl() 1029 if (ObjCMethodDecl *MD = CatD->getMethod(Sel, isInstanceMethod())) in getCanonicalDecl() [all …]
|
| H A D | Mangle.cpp | 33 bool isInstanceMethod, StringRef ClassName, in mangleObjCMethodName() argument 39 OS << (isInstanceMethod ? '-' : '+'); in mangleObjCMethodName() 400 clang::mangleObjCMethodName(OS, includePrefixByte, MD->isInstanceMethod(), in mangleObjCMethodName()
|
| H A D | Comment.cpp | 261 IsInstanceMethod = MD->isInstanceMethod(); in fill()
|
| H A D | ODRDiagsEmitter.cpp | 455 if (FirstMethod->isInstanceMethod() != SecondMethod->isInstanceMethod()) { in diagnoseSubMismatchObjCMethod() 457 << FirstMethod << FirstMethod->isInstanceMethod(); in diagnoseSubMismatchObjCMethod() 459 << SecondMethod << SecondMethod->isInstanceMethod(); in diagnoseSubMismatchObjCMethod()
|
| H A D | ASTImporter.cpp | 5013 if (FoundMethod->isInstanceMethod() != D->isInstanceMethod()) in VisitObjCMethodDecl() 5020 << D->isInstanceMethod() << Name << D->getReturnType() in VisitObjCMethodDecl() 5024 << D->isInstanceMethod() << Name; in VisitObjCMethodDecl() 5032 << D->isInstanceMethod() << Name in VisitObjCMethodDecl() 5036 << D->isInstanceMethod() << Name; in VisitObjCMethodDecl() 5049 << D->isInstanceMethod() << Name in VisitObjCMethodDecl() 5062 << D->isInstanceMethod() << Name; in VisitObjCMethodDecl() 5065 << D->isInstanceMethod() << Name; in VisitObjCMethodDecl() 5087 D->isInstanceMethod(), D->isVariadic(), D->isPropertyAccessor(), in VisitObjCMethodDecl()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaDeclObjC.cpp | 341 if (MDecl->isInstanceMethod()) in AddAnyMethodToGlobalPool() 446 IC->lookupMethod(MDecl->getSelector(), MDecl->isInstanceMethod()); in ActOnStartOfObjCMethodDef() 498 MDecl->isInstanceMethod()); in ActOnStartOfObjCMethodDef() 1779 (PrevMethod->isInstanceMethod() == Method->isInstanceMethod()) && in DiagnoseClassExtensionDupMethods() 3467 if (!chosen->isInstanceMethod()) in isAcceptableMethodMismatch() 3576 BestMethod->isInstanceMethod() ? Pos->second.first : Pos->second.second; in AreMultipleMethodsInGlobalPool() 3955 IDecl->getMethod(MD->getSelector(), MD->isInstanceMethod())) { in DiagnoseCategoryDirectMembersProtocolConformance() 4026 if (Method->isInstanceMethod()) { in ActOnAtEnd() 4309 method->isInstanceMethod() ? it->second.first : it->second.second; in OverrideSearch() 4412 Method->isInstanceMethod(), in search() [all …]
|
| H A D | SemaExprObjC.cpp | 1490 if (Method->isInstanceMethod() && isClassMessage) in getBaseMessageSendResultType() 1640 iface->getMethod(MD->getSelector(), MD->isInstanceMethod()); in findExplicitInstancetypeDeclarer() 1708 << Method->isInstanceMethod() << Method->getSelector() in EmitRelatedResultTypeNote() 2175 if (CurMethod->isInstanceMethod()) { in ActOnClassPropertyRefExpr() 2414 if (Method->isInstanceMethod()) { in ActOnSuperMessage() 2957 Sel, ArgsIn, Method->isInstanceMethod(), Methods)) in BuildInstanceMessage() 3017 if (Method->isInstanceMethod()) { in BuildInstanceMessage() 3027 Sel, ArgsIn, Method->isInstanceMethod(), Methods)) in BuildInstanceMessage() 3104 Sel, ArgsIn, Method->isInstanceMethod(), Methods)) in BuildInstanceMessage() 4823 } else if (CurMethod->isInstanceMethod()) { in LookupIvarInObjCMethod() [all …]
|
| H A D | SemaObjCProperty.cpp | 1042 Decl->getReturnTypeSourceInfo(), Impl, Decl->isInstanceMethod(), in RedeclarePropertyAccessor() 1429 getterMethod->getSelector(), getterMethod->isInstanceMethod()); in ActOnPropertyImplDecl() 1493 setterMethod->getSelector(), setterMethod->isInstanceMethod()); in ActOnPropertyImplDecl() 1831 Method->isInstanceMethod()); in IvarBacksCurrentMethodAccessor()
|
| H A D | SemaPseudoObject.cpp | 742 if ((Getter->isInstanceMethod() && !RefExpr->isClassReceiver()) || in buildGet() 803 if ((Setter->isInstanceMethod() && !RefExpr->isClassReceiver()) || in buildSet()
|
| H A D | SemaCodeComplete.cpp | 233 if (Method->isInstanceMethod()) in ResultBuilder() 2850 if (Method->isInstanceMethod()) in AddOrdinaryNameResults() 4257 return cast<ObjCMethodDecl>(D)->isInstanceMethod() in getCursorKindForDecl() 5286 M->getReturnType()->isVoidType() || M->isInstanceMethod()) in AddObjCProperties() 7806 if (M->isInstanceMethod() == WantInstanceMethods || in AddObjCMethods() 8065 if (Method->isInstanceMethod()) in GetAssumedMessageSendExprType() 8123 CurMethod->isInstanceMethod()); in AddSuperSendCompletion() 8129 CurMethod->isInstanceMethod()))) in AddSuperSendCompletion() 8260 if (CurMethod->isInstanceMethod()) { in CodeCompleteObjCSuperMessage() 9146 if (!WantInstanceMethods || M->isInstanceMethod() == *WantInstanceMethods) { in FindImplementableMethods() [all …]
|
| H A D | SemaX86.cpp | 977 isInstanceMethod(D) || in handleAnyInterruptAttr()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Attr.h | 120 inline bool isInstanceMethod(const Decl *D) { in isInstanceMethod() function
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | IvarInvalidationChecker.cpp | 423 InterfD->isInstanceMethod()); in visit() 472 InterfD->isInstanceMethod()); in visit()
|
| H A D | CheckObjCDealloc.cpp | 970 if (!MD || !MD->isInstanceMethod() || MD->getSelector() != DeallocSel) in isInInstanceDealloc()
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | Mangle.h | 46 bool isInstanceMethod, StringRef ClassName,
|
| H A D | DeclObjC.h | 426 bool isInstanceMethod() const { return ObjCMethodDeclBits.IsInstance; } in isInstanceMethod() function 434 bool isClassMethod() const { return !isInstanceMethod(); } in isClassMethod() 1027 &ObjCMethodDecl::isInstanceMethod>;
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/ |
| H A D | RawPtrRefLambdaCapturesChecker.cpp | 73 if (OCMD && OCMD->isInstanceMethod()) { in checkASTDecl()
|
| /freebsd/contrib/llvm-project/clang/lib/Index/ |
| H A D | IndexSymbol.cpp | 220 Info.Kind = MD->isInstanceMethod() ? SymbolKind::InstanceMethod : SymbolKind::ClassMethod; in getSymbolInfo()
|
| H A D | IndexDecl.cpp | 82 D->isInstanceMethod()); in hasUserDefined()
|
| H A D | USRGeneration.cpp | 430 Out << (D->isInstanceMethod() ? "(im)" : "(cm)") in VisitObjCMethodDecl()
|
| /freebsd/contrib/llvm-project/clang/include/clang/CodeGen/ |
| H A D | CGFunctionInfo.h | 697 bool isInstanceMethod() const { return InstanceMethod; } in isInstanceMethod() function
|
| /freebsd/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | AnalysisDeclContext.cpp | 368 OS << (OMD->isInstanceMethod() ? '-' : '+') << '['; in getFunctionName()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangUserExpression.cpp | 211 if (!method_decl->isInstanceMethod()) in ScanContext()
|
| /freebsd/contrib/llvm-project/clang/lib/ExtractAPI/ |
| H A D | DeclarationFragments.cpp | 1428 else if (Method->isInstanceMethod()) in getFragmentsForObjCMethod() 1658 else if (Method->isInstanceMethod()) in getSubHeading()
|
| /freebsd/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/ |
| H A D | Registry.cpp | 452 REGISTER_MATCHER(isInstanceMethod); in RegistryMaps()
|