Home
last modified time | relevance | path

Searched refs:getPropertyImplementation (Results 1 – 23 of 23) sorted by relevance

/openbsd-src/gnu/llvm/clang/lib/ARCMigrate/
H A DTransZeroOutPropsInDealloc.cpp116 if (PID->getPropertyImplementation() == in TraverseObjCMethodDecl()
H A DTransProperties.cpp108 if (implD->getPropertyImplementation() != ObjCPropertyImplDecl::Synthesize) in doTransform()
H A DObjCMT.cpp611 if (Property->getPropertyImplementation() == ObjCPropertyDecl::Optional) in ClassImplementsAllMethodsAndProperties()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaObjCProperty.cpp1615 if (PIDecl->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic && in ActOnPropertyImplDecl()
1902 Prop->getPropertyImplementation() == ObjCPropertyDecl::Optional) in DefaultSynthesizeProperties()
2122 Prop->getPropertyImplementation() == ObjCPropertyDecl::Optional || in DiagnoseUnimplementedProperties()
2142 if (propertyImpl->getPropertyImplementation() == in diagnoseNullResettableSynthesizedSetters()
2216 if (PIDecl->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic) in AtomicPropertySetterGetterRules()
2491 (property->getPropertyImplementation() == ObjCPropertyDecl::Optional) in ProcessPropertyDecl()
2544 (property->getPropertyImplementation() == in ProcessPropertyDecl()
H A DSemaDeclObjC.cpp2993 if (PImpl->getPropertyImplementation() != ObjCPropertyImplDecl::Dynamic) in ImplMethodsVsClassMethods()
4106 if (PIDecl->getPropertyImplementation() in ActOnAtEnd()
H A DSemaCodeComplete.cpp4073 switch (cast<ObjCPropertyImplDecl>(D)->getPropertyImplementation()) { in getCursorKindForDecl()
/openbsd-src/gnu/llvm/clang/lib/Index/
H A DIndexDecl.cpp553 if (D->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic) in VisitObjCPropertyImplDecl()
556 assert(D->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize); in VisitObjCPropertyImplDecl()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DODRDiagsEmitter.cpp541 if (FirstProp->getPropertyImplementation() != in diagnoseSubMismatchObjCProperty()
542 SecondProp->getPropertyImplementation()) { in diagnoseSubMismatchObjCProperty()
544 << FirstProp->getPropertyImplementation(); in diagnoseSubMismatchObjCProperty()
546 << SecondProp->getPropertyImplementation(); in diagnoseSubMismatchObjCProperty()
H A DDeclPrinter.cpp1492 if (PDecl->getPropertyImplementation() == ObjCPropertyDecl::Required) in VisitObjCPropertyDecl()
1494 else if (PDecl->getPropertyImplementation() == ObjCPropertyDecl::Optional) in VisitObjCPropertyDecl()
1600 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize) in VisitObjCPropertyImplDecl()
H A DTextNodeDumper.cpp2342 if (D->getPropertyImplementation() == ObjCPropertyDecl::Required) in VisitObjCPropertyDecl()
2344 else if (D->getPropertyImplementation() == ObjCPropertyDecl::Optional) in VisitObjCPropertyDecl()
2382 if (D->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize) in VisitObjCPropertyImplDecl()
H A DJSONNodeDumper.cpp1088 switch (D->getPropertyImplementation()) { in VisitObjCPropertyDecl()
1125 JOS.attribute("implKind", D->getPropertyImplementation() == in VisitObjCPropertyImplDecl()
H A DODRHash.cpp353 ID.AddInteger(D->getPropertyImplementation()); in VisitObjCPropertyDecl()
H A DASTImporter.cpp5470 ToTypeSourceInfo, D->getPropertyImplementation())) in VisitObjCPropertyDecl()
5530 D->getPropertyImplementation(), Ivar, in VisitObjCPropertyImplDecl()
5539 if (D->getPropertyImplementation() != ToImpl->getPropertyImplementation()) { in VisitObjCPropertyImplDecl()
5543 << (ToImpl->getPropertyImplementation() in VisitObjCPropertyImplDecl()
5548 << (D->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic); in VisitObjCPropertyImplDecl()
5554 if (D->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize && in VisitObjCPropertyImplDecl()
H A DASTContext.cpp7860 if (PropertyImpDecl->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic) in getObjCEncodingForPropertyDecl()
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DDeclObjC.h905 PropertyControl getPropertyImplementation() const { in getPropertyImplementation() function
910 return getPropertyImplementation() == PropertyControl::Optional; in isOptional()
2858 Kind getPropertyImplementation() const { in getPropertyImplementation() function
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DCheckObjCDealloc.cpp73 if (I->getPropertyImplementation() != ObjCPropertyImplDecl::Synthesize) in isSynthesizedRetainableProperty()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGObjCGNU.cpp1901 if (propImpl->getPropertyImplementation() == in GenerateClass()
3464 isSynthesized = (propertyImpl->getPropertyImplementation() == in GeneratePropertyList()
3466 isDynamic = (propertyImpl->getPropertyImplementation() == in GeneratePropertyList()
H A DCodeGenModule.cpp6136 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize) { in EmitObjCPropertyImplementations()
H A DCGObjCMac.cpp3550 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize) { in GenerateClass()
/openbsd-src/gnu/llvm/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp781 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic) in RewritePropertyImplDecl()
5355 if (Prop->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic) in RewriteObjCClassMetaData()
5633 if (Prop->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic) in RewriteObjCCategoryImplDecl()
H A DRewriteModernObjC.cpp936 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic) in RewritePropertyImplDecl()
7031 if (Prop->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic) in RewriteObjCClassMetaData()
7281 if (Prop->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic) in RewriteObjCCategoryImplDecl()
/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTWriterDecl.cpp883 Record.push_back((unsigned)D->getPropertyImplementation()); in VisitObjCPropertyDecl()
/openbsd-src/gnu/llvm/clang/tools/libclang/
H A DCIndex.cpp8631 return PD->getPropertyImplementation() == ObjCPropertyDecl::Optional; in clang_Cursor_isObjCOptional()