Home
last modified time | relevance | path

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

123

/openbsd/src/gnu/llvm/clang/lib/AST/
DDeclObjC.cpp113 if (MD && MD->isInstanceMethod() == isInstance) in getMethod()
131 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 …]
DComment.cpp257 IsInstanceMethod = MD->isInstanceMethod(); in fill()
DODRDiagsEmitter.cpp455 if (FirstMethod->isInstanceMethod() != SecondMethod->isInstanceMethod()) { in diagnoseSubMismatchObjCMethod()
457 << FirstMethod << FirstMethod->isInstanceMethod(); in diagnoseSubMismatchObjCMethod()
459 << SecondMethod << SecondMethod->isInstanceMethod(); in diagnoseSubMismatchObjCMethod()
DMangle.cpp365 OS << (MD->isInstanceMethod() ? '-' : '+') << '['; in mangleObjCMethodName()
DASTImporter.cpp4424 if (FoundMethod->isInstanceMethod() != D->isInstanceMethod()) in VisitObjCMethodDecl()
4431 << D->isInstanceMethod() << Name << D->getReturnType() in VisitObjCMethodDecl()
4435 << D->isInstanceMethod() << Name; in VisitObjCMethodDecl()
4443 << D->isInstanceMethod() << Name in VisitObjCMethodDecl()
4447 << D->isInstanceMethod() << Name; in VisitObjCMethodDecl()
4460 << D->isInstanceMethod() << Name in VisitObjCMethodDecl()
4473 << D->isInstanceMethod() << Name; in VisitObjCMethodDecl()
4476 << D->isInstanceMethod() << Name; in VisitObjCMethodDecl()
4498 D->isInstanceMethod(), D->isVariadic(), D->isPropertyAccessor(), in VisitObjCMethodDecl()
/openbsd/src/gnu/llvm/clang/tools/libclang/
DCIndexUSRs.cpp101 unsigned isInstanceMethod, in clang_constructUSR_ObjCMethod() argument
106 generateUSRForObjCMethod(name, isInstanceMethod, OS); in clang_constructUSR_ObjCMethod()
/openbsd/src/gnu/llvm/clang/lib/Sema/
DSemaDeclObjC.cpp335 if (MDecl->isInstanceMethod()) in AddAnyMethodToGlobalPool()
439 IC->lookupMethod(MDecl->getSelector(), MDecl->isInstanceMethod()); in ActOnStartOfObjCMethodDef()
491 MDecl->isInstanceMethod()); in ActOnStartOfObjCMethodDef()
1779 (PrevMethod->isInstanceMethod() == Method->isInstanceMethod()) && in DiagnoseClassExtensionDupMethods()
3462 if (!chosen->isInstanceMethod()) in isAcceptableMethodMismatch()
3572 BestMethod->isInstanceMethod() ? Pos->second.first : Pos->second.second; in AreMultipleMethodsInGlobalPool()
3951 IDecl->getMethod(MD->getSelector(), MD->isInstanceMethod())) { in DiagnoseCategoryDirectMembersProtocolConformance()
4020 if (Method->isInstanceMethod()) { in ActOnAtEnd()
4301 method->isInstanceMethod() ? it->second.first : it->second.second; in OverrideSearch()
4404 Method->isInstanceMethod(), in search()
[all …]
DSemaExprObjC.cpp1486 if (Method->isInstanceMethod() && isClassMessage) in getBaseMessageSendResultType()
1640 iface->getMethod(MD->getSelector(), MD->isInstanceMethod()); in findExplicitInstancetypeDeclarer()
1706 << Method->isInstanceMethod() << Method->getSelector() in EmitRelatedResultTypeNote()
2174 if (CurMethod->isInstanceMethod()) { in ActOnClassPropertyRefExpr()
2414 if (Method->isInstanceMethod()) { in ActOnSuperMessage()
2959 SelectBestMethod(Sel, ArgsIn, Method->isInstanceMethod(), Methods)) in BuildInstanceMessage()
3019 if (Method->isInstanceMethod()) { in BuildInstanceMessage()
3029 SelectBestMethod(Sel, ArgsIn, Method->isInstanceMethod(), in BuildInstanceMessage()
3106 SelectBestMethod(Sel, ArgsIn, Method->isInstanceMethod(), in BuildInstanceMessage()
DSemaObjCProperty.cpp1056 Decl->getReturnTypeSourceInfo(), Impl, Decl->isInstanceMethod(), in RedeclarePropertyAccessor()
1441 getterMethod->getSelector(), getterMethod->isInstanceMethod()); in ActOnPropertyImplDecl()
1505 setterMethod->getSelector(), setterMethod->isInstanceMethod()); in ActOnPropertyImplDecl()
1841 Method->isInstanceMethod()); in IvarBacksCurrentMethodAccessor()
DSemaCodeComplete.cpp230 if (Method->isInstanceMethod()) in ResultBuilder()
2651 if (Method->isInstanceMethod()) in AddOrdinaryNameResults()
4012 return cast<ObjCMethodDecl>(D)->isInstanceMethod() in getCursorKindForDecl()
5030 M->getReturnType()->isVoidType() || M->isInstanceMethod()) in AddObjCProperties()
7496 if (M->isInstanceMethod() == WantInstanceMethods || in AddObjCMethods()
7750 if (Method->isInstanceMethod()) in GetAssumedMessageSendExprType()
7808 CurMethod->isInstanceMethod()); in AddSuperSendCompletion()
7814 CurMethod->isInstanceMethod()))) in AddSuperSendCompletion()
7945 if (CurMethod->isInstanceMethod()) { in CodeCompleteObjCSuperMessage()
8797 if (!WantInstanceMethods || M->isInstanceMethod() == *WantInstanceMethods) { in FindImplementableMethods()
[all …]
DSemaPseudoObject.cpp735 if ((Getter->isInstanceMethod() && !RefExpr->isClassReceiver()) || in buildGet()
796 if ((Setter->isInstanceMethod() && !RefExpr->isClassReceiver()) || in buildSet()
/openbsd/src/gnu/llvm/clang/lib/ARCMigrate/
DTransZeroOutPropsInDealloc.cpp101 !(D->isInstanceMethod() && D->getSelector() == FinalizeSel)) in TraverseObjCMethodDecl()
DTransEmptyStatementsAndDealloc.cpp212 } else if (MD->isInstanceMethod() && MD->getSelector() == FinalizeSel) { in cleanupDeallocOrFinalize()
DObjCMT.cpp970 ClassString = OM->isInstanceMethod() ? '-' : '+'; in ReplaceWithInstancetype()
1157 if (Method->isPropertyAccessor() || !Method->isInstanceMethod() || in migrateProperty()
1252 !OM->isInstanceMethod() || in migrateNsReturnsInnerPointer()
1295 if (OM->isInstanceMethod() || in migrateFactoryMethod()
DTransforms.cpp531 if (MD->isInstanceMethod() && MD->getSelector() == FinalizeSel) { in GCRewriteFinalize()
/openbsd/src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
DIvarInvalidationChecker.cpp432 InterfD->isInstanceMethod()); in visit()
484 InterfD->isInstanceMethod()); in visit()
DCheckObjCDealloc.cpp980 if (!MD || !MD->isInstanceMethod() || MD->getSelector() != DeallocSel) in isInInstanceDealloc()
/openbsd/src/gnu/llvm/clang/include/clang/AST/
DDeclObjC.h428 bool isInstanceMethod() const { return ObjCMethodDeclBits.IsInstance; } in isInstanceMethod() function
436 bool isClassMethod() const { return !isInstanceMethod(); } in isClassMethod()
1023 &ObjCMethodDecl::isInstanceMethod>;
/openbsd/src/gnu/llvm/clang/include/clang/CodeGen/
DCGFunctionInfo.h662 bool isInstanceMethod() const { return InstanceMethod; } in isInstanceMethod() function
/openbsd/src/gnu/llvm/clang/lib/Index/
DIndexSymbol.cpp219 Info.Kind = MD->isInstanceMethod() ? SymbolKind::InstanceMethod : SymbolKind::ClassMethod; in getSymbolInfo()
DIndexDecl.cpp82 D->isInstanceMethod()); in hasUserDefined()
DUSRGeneration.cpp417 Out << (D->isInstanceMethod() ? "(im)" : "(cm)") in VisitObjCMethodDecl()
/openbsd/src/gnu/llvm/clang/lib/Analysis/
DAnalysisDeclContext.cpp370 OS << (OMD->isInstanceMethod() ? '-' : '+') << '['; in getFunctionName()
/openbsd/src/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/
DClangUserExpression.cpp212 if (!method_decl->isInstanceMethod()) in ScanContext()
/openbsd/src/gnu/llvm/clang/lib/ASTMatchers/Dynamic/
DRegistry.cpp437 REGISTER_MATCHER(isInstanceMethod); in RegistryMaps()

123