Home
last modified time | relevance | path

Searched refs:isInstanceMethod (Results 1 – 25 of 51) sorted by relevance

123

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclObjC.cpp114 if (MD && MD->isInstanceMethod() == isInstance) in getMethod()
132 if (MD && MD->isInstanceMethod() && !MD->isImplicit()) in HasUserDeclaredSetterMethod()
977 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclarationImpl()
982 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclarationImpl()
987 Redecl = IFD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclarationImpl()
992 Redecl = CatD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclarationImpl()
1005 isInstanceMethod(), in getNextRedeclarationImpl()
1024 if (ObjCMethodDecl *MD = IFD->getMethod(Sel, isInstanceMethod())) in getCanonicalDecl()
1027 if (ObjCMethodDecl *MD = Ext->getMethod(Sel, isInstanceMethod())) in getCanonicalDecl()
1032 if (ObjCMethodDecl *MD = CatD->getMethod(Sel, isInstanceMethod())) in getCanonicalDecl()
[all …]
H A DODRDiagsEmitter.cpp455 if (FirstMethod->isInstanceMethod() != SecondMethod->isInstanceMethod()) { in diagnoseSubMismatchObjCMethod()
457 << FirstMethod << FirstMethod->isInstanceMethod(); in diagnoseSubMismatchObjCMethod()
459 << SecondMethod << SecondMethod->isInstanceMethod(); in diagnoseSubMismatchObjCMethod()
H A DMangle.cpp368 OS << (MD->isInstanceMethod() ? '-' : '+') << '['; in mangleObjCMethodName()
H A DASTStructuralEquivalence.cpp2173 Method1->isInstanceMethod() == Method2->isInstanceMethod() && in IsStructurallyEquivalent()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclObjC.cpp342 if (MDecl->isInstanceMethod()) in AddAnyMethodToGlobalPool()
447 IC->lookupMethod(MDecl->getSelector(), MDecl->isInstanceMethod()); in ActOnStartOfObjCMethodDef()
499 MDecl->isInstanceMethod()); in ActOnStartOfObjCMethodDef()
1776 (PrevMethod->isInstanceMethod() == Method->isInstanceMethod()) && in DiagnoseClassExtensionDupMethods()
3464 if (!chosen->isInstanceMethod()) in isAcceptableMethodMismatch()
3573 BestMethod->isInstanceMethod() ? Pos->second.first : Pos->second.second; in AreMultipleMethodsInGlobalPool()
3953 IDecl->getMethod(MD->getSelector(), MD->isInstanceMethod())) { in DiagnoseCategoryDirectMembersProtocolConformance()
4024 if (Method->isInstanceMethod()) { in ActOnAtEnd()
4307 method->isInstanceMethod() ? it->second.first : it->second.second; in OverrideSearch()
4410 Method->isInstanceMethod(), in search()
[all …]
H A DSemaExprObjC.cpp1500 if (Method->isInstanceMethod() && isClassMessage) in getBaseMessageSendResultType()
1653 iface->getMethod(MD->getSelector(), MD->isInstanceMethod()); in findExplicitInstancetypeDeclarer()
1721 << Method->isInstanceMethod() << Method->getSelector() in EmitRelatedResultTypeNote()
2186 if (CurMethod->isInstanceMethod()) { in ActOnClassPropertyRefExpr()
2425 if (Method->isInstanceMethod()) { in ActOnSuperMessage()
2968 Sel, ArgsIn, Method->isInstanceMethod(), Methods)) in BuildInstanceMessage()
3028 if (Method->isInstanceMethod()) { in BuildInstanceMessage()
3038 Sel, ArgsIn, Method->isInstanceMethod(), Methods)) in BuildInstanceMessage()
3115 Sel, ArgsIn, Method->isInstanceMethod(), Methods)) in BuildInstanceMessage()
4829 } else if (CurMethod->isInstanceMethod()) { in LookupIvarInObjCMethod()
[all …]
H A DSemaObjCProperty.cpp1041 Decl->getReturnTypeSourceInfo(), Impl, Decl->isInstanceMethod(), in RedeclarePropertyAccessor()
1419 getterMethod->getSelector(), getterMethod->isInstanceMethod()); in ActOnPropertyImplDecl()
1483 setterMethod->getSelector(), setterMethod->isInstanceMethod()); in ActOnPropertyImplDecl()
1820 Method->isInstanceMethod()); in IvarBacksCurrentMethodAccessor()
H A DSemaPseudoObject.cpp744 if ((Getter->isInstanceMethod() && !RefExpr->isClassReceiver()) || in buildGet()
805 if ((Setter->isInstanceMethod() && !RefExpr->isClassReceiver()) || in buildSet()
H A DSemaCodeComplete.cpp234 if (Method->isInstanceMethod()) in ResultBuilder()
2720 if (Method->isInstanceMethod()) in AddOrdinaryNameResults()
4094 return cast<ObjCMethodDecl>(D)->isInstanceMethod() in getCursorKindForDecl()
5125 M->getReturnType()->isVoidType() || M->isInstanceMethod()) in AddObjCProperties()
7655 if (M->isInstanceMethod() == WantInstanceMethods || in AddObjCMethods()
7914 if (Method->isInstanceMethod()) in GetAssumedMessageSendExprType()
7972 CurMethod->isInstanceMethod()); in AddSuperSendCompletion()
7978 CurMethod->isInstanceMethod()))) in AddSuperSendCompletion()
8110 if (CurMethod->isInstanceMethod()) { in CodeCompleteObjCSuperMessage()
8998 if (!WantInstanceMethods || M->isInstanceMethod() == *WantInstanceMethods) { in FindImplementableMethods()
[all …]
H A DSemaX86.cpp890 isInstanceMethod(D) || in handleAnyInterruptAttr()
H A DSemaAPINotes.cpp994 Method->isInstanceMethod()); in ProcessAPINotes()
/freebsd/contrib/llvm-project/clang/lib/ARCMigrate/
H A DTransZeroOutPropsInDealloc.cpp101 !(D->isInstanceMethod() && D->getSelector() == FinalizeSel)) in TraverseObjCMethodDecl()
H A DTransEmptyStatementsAndDealloc.cpp212 } else if (MD->isInstanceMethod() && MD->getSelector() == FinalizeSel) { in cleanupDeallocOrFinalize()
H A DObjCMT.cpp967 ClassString = OM->isInstanceMethod() ? '-' : '+'; in ReplaceWithInstancetype()
1154 if (Method->isPropertyAccessor() || !Method->isInstanceMethod() || in migrateProperty()
1249 !OM->isInstanceMethod() || in migrateNsReturnsInnerPointer()
1292 if (OM->isInstanceMethod() || in migrateFactoryMethod()
H A DTransforms.cpp532 if (MD->isInstanceMethod() && MD->getSelector() == FinalizeSel) { in GCRewriteFinalize()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DAttr.h120 inline bool isInstanceMethod(const Decl *D) { in isInstanceMethod() function
/freebsd/contrib/llvm-project/clang/include/clang/CodeGen/
H A DCGFunctionInfo.h679 bool isInstanceMethod() const { return InstanceMethod; } in isInstanceMethod() function
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclObjC.h426 bool isInstanceMethod() const { return ObjCMethodDeclBits.IsInstance; } in isInstanceMethod() function
434 bool isClassMethod() const { return !isInstanceMethod(); } in isClassMethod()
1029 &ObjCMethodDecl::isInstanceMethod>;
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DAnalysisDeclContext.cpp370 OS << (OMD->isInstanceMethod() ? '-' : '+') << '['; in getFunctionName()
/freebsd/contrib/llvm-project/clang/lib/Index/
H A DIndexSymbol.cpp220 Info.Kind = MD->isInstanceMethod() ? SymbolKind::InstanceMethod : SymbolKind::ClassMethod; in getSymbolInfo()
H A DIndexDecl.cpp82 D->isInstanceMethod()); in hasUserDefined()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangUserExpression.cpp211 if (!method_decl->isInstanceMethod()) in ScanContext()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCheckObjCDealloc.cpp970 if (!MD || !MD->isInstanceMethod() || MD->getSelector() != DeallocSel) in isInInstanceDealloc()
/freebsd/contrib/llvm-project/clang/lib/ExtractAPI/
H A DDeclarationFragments.cpp1408 else if (Method->isInstanceMethod()) in getFragmentsForObjCMethod()
1630 else if (Method->isInstanceMethod()) in getSubHeading()
/freebsd/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DRegistry.cpp449 REGISTER_MATCHER(isInstanceMethod); in RegistryMaps()

123