Home
last modified time | relevance | path

Searched refs:isSynthesizedAccessorStub (Results 1 – 14 of 14) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DDirectIvarAssignment.cpp147 if (M->isSynthesizedAccessorStub()) in checkASTDecl()
H A DLocalizationChecker.cpp1076 assert(M->isSynthesizedAccessorStub()); in checkASTDecl()
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCDeclVendor.cpp311 const bool isSynthesizedAccessorStub = false; in BuildMethod() local
357 isPropertyAccessor, isSynthesizedAccessorStub, isImplicitlyDeclared, in BuildMethod()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclObjC.cpp826 bool isSynthesizedAccessorStub, bool isImplicitlyDeclared, bool isDefined, in ObjCMethodDecl() argument
838 setSynthesizedAccessorStub(isSynthesizedAccessorStub); in ObjCMethodDecl()
856 bool isPropertyAccessor, bool isSynthesizedAccessorStub, in Create() argument
861 isVariadic, isPropertyAccessor, isSynthesizedAccessorStub, in Create()
1388 if (isSynthesizedAccessorStub()) in findPropertyDecl()
1441 assert(isSynthesizedAccessorStub() && "expected an accessor stub"); in findPropertyDecl()
H A DODRHash.cpp388 Hash.AddBoolean(Method->isSynthesizedAccessorStub()); in VisitObjCMethodDecl()
H A DASTImporter.cpp4811 D->isSynthesizedAccessorStub(), D->isImplicit(), D->isDefined(), in VisitObjCMethodDecl()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaObjCProperty.cpp2131 if ((!getterImpl || getterImpl->isSynthesizedAccessorStub()) && in diagnoseNullResettableSynthesizedSetters()
2132 (!setterImpl || setterImpl->isSynthesizedAccessorStub())) { in diagnoseNullResettableSynthesizedSetters()
2173 if (GetterMethod && GetterMethod->isSynthesizedAccessorStub()) in AtomicPropertySetterGetterRules()
2175 if (SetterMethod && SetterMethod->isSynthesizedAccessorStub()) in AtomicPropertySetterGetterRules()
2201 if (GetterMethod && GetterMethod->isSynthesizedAccessorStub()) in AtomicPropertySetterGetterRules()
2203 if (SetterMethod && SetterMethod->isSynthesizedAccessorStub()) in AtomicPropertySetterGetterRules()
2248 if (IM && !IM->isSynthesizedAccessorStub()) in DiagnoseOwningPropertyGetterSynthesis()
H A DSemaDeclObjC.cpp2858 if (ImpMethodDecl->isSynthesizedAccessorStub()) in MatchAllMethodDeclarations()
2887 if (ImpMethodDecl->isSynthesizedAccessorStub()) in MatchAllMethodDeclarations()
4007 if (Getter->isSynthesizedAccessorStub()) in ActOnAtEnd()
4010 if (Setter->isSynthesizedAccessorStub()) in ActOnAtEnd()
4874 assert(Setter->isSynthesizedAccessorStub() && "autosynth stub expected"); in ActOnMethodDeclaration()
4880 assert(Getter->isSynthesizedAccessorStub() && "autosynth stub expected"); in ActOnMethodDeclaration()
5373 if (CurMethod->isSynthesizedAccessorStub()) in DiagnoseUnusedBackingIvarInAccessor()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclObjC.h173 bool isPropertyAccessor = false, bool isSynthesizedAccessorStub = false,
234 bool isSynthesizedAccessorStub = false,
444 bool isSynthesizedAccessorStub() const { in isSynthesizedAccessorStub() function
448 void setSynthesizedAccessorStub(bool isSynthesizedAccessorStub) { in setSynthesizedAccessorStub() argument
449 ObjCMethodDeclBits.IsSynthesizedAccessorStub = isSynthesizedAccessorStub; in setSynthesizedAccessorStub()
/freebsd/contrib/llvm-project/clang/lib/Index/
H A DIndexDecl.cpp84 !MD->isSynthesizedAccessorStub(); in hasUserDefined()
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp8092 const bool isSynthesizedAccessorStub = false; in AddObjCClassProperty() local
8107 getter->setSynthesizedAccessorStub(isSynthesizedAccessorStub); in AddObjCClassProperty()
8135 const bool isSynthesizedAccessorStub = false; in AddObjCClassProperty() local
8150 setter->setSynthesizedAccessorStub(isSynthesizedAccessorStub); in AddObjCClassProperty()
8257 const bool isSynthesizedAccessorStub = false; in AddMethodToObjCObjectType() local
8280 objc_method_decl->setSynthesizedAccessorStub(isSynthesizedAccessorStub); in AddMethodToObjCObjectType()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterDecl.cpp806 Record.push_back(D->isSynthesizedAccessorStub()); in VisitObjCMethodDecl()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenModule.cpp6733 if (!Getter || Getter->isSynthesizedAccessorStub()) in EmitObjCPropertyImplementations()
6737 if (!PD->isReadOnly() && (!Setter || Setter->isSynthesizedAccessorStub())) in EmitObjCPropertyImplementations()
/freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp914 return !OMD || OMD->isSynthesizedAccessorStub(); in mustSynthesizeSetterGetterMethod()