Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DDeclPrinter.cpp1483 if (PDecl->getPropertyAttributes() != ObjCPropertyAttribute::kind_noattr) { in VisitObjCPropertyDecl()
1486 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_class) { in VisitObjCPropertyDecl()
1491 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_direct) { in VisitObjCPropertyDecl()
1496 if (PDecl->getPropertyAttributes() & in VisitObjCPropertyDecl()
1501 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_atomic) { in VisitObjCPropertyDecl()
1519 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_copy) { in VisitObjCPropertyDecl()
1523 if (PDecl->getPropertyAttributes() & ObjCPropertyAttribute::kind_weak) { in VisitObjCPropertyDecl()
1527 if (PDecl->getPropertyAttributes() & in VisitObjCPropertyDecl()
1533 if (PDecl->getPropertyAttributes() & in VisitObjCPropertyDecl()
1554 if (PDecl->getPropertyAttributes() & in VisitObjCPropertyDecl()
[all …]
H A DASTContext.cpp7143 if (PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_copy) in getObjCEncodingForPropertyDecl()
7145 if (PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_retain) in getObjCEncodingForPropertyDecl()
7147 if (PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_weak) in getObjCEncodingForPropertyDecl()
7163 if (PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_nonatomic) in getObjCEncodingForPropertyDecl()
7166 if (PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_getter) { in getObjCEncodingForPropertyDecl()
7171 if (PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_setter) { in getObjCEncodingForPropertyDecl()
H A DJSONNodeDumper.cpp1055 ObjCPropertyAttribute::Kind Attrs = D->getPropertyAttributes(); in VisitObjCPropertyDecl()
H A DDeclObjC.cpp150 if (P->getPropertyAttributes() & in HasUserDeclaredSetterMethod()
H A DTextNodeDumper.cpp2290 ObjCPropertyAttribute::Kind Attrs = D->getPropertyAttributes(); in VisitObjCPropertyDecl()
H A DASTImporter.cpp5265 ToProperty->setPropertyAttributes(D->getPropertyAttributes()); in VisitObjCPropertyDecl()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaObjCProperty.cpp180 unsigned Attributes = ODS.getPropertyAttributes(); in ActOnProperty()
341 bool OldIsAtomic = (OldProperty->getPropertyAttributes() & in checkAtomicPropertyMismatch()
351 auto Attrs = Property->getPropertyAttributes(); in checkAtomicPropertyMismatch()
373 unsigned Attrs = NewProperty->getPropertyAttributes(); in checkAtomicPropertyMismatch()
486 = getOwnershipRule(PIDecl->getPropertyAttributes()); in HandlePropertyInClassExtension()
1538 if (property->getPropertyAttributes() & in ActOnPropertyImplDecl()
1949 if ((Prop->getPropertyAttributes() & in DefaultSynthesizeProperties()
1951 (PropInSuperClass->getPropertyAttributes() & in DefaultSynthesizeProperties()
2147 (property->getPropertyAttributes() & in diagnoseNullResettableSynthesizedSetters()
2479 if (property->getPropertyAttributes() & in ProcessPropertyDecl()
[all …]
H A DSemaPseudoObject.cpp585 if (Prop->getPropertyAttributes() & ObjCPropertyAttribute::kind_weak) in isWeakProperty()
H A DSemaExprObjC.cpp2082 if (!(PDecl->getPropertyAttributes() & in HandleExprPropertyRefExpr()
3387 Prop->getPropertyAttributes() & ObjCPropertyAttribute::kind_weak; in BuildInstanceMessage()
H A DSemaCodeComplete.cpp6809 unsigned Attributes = ODS.getPropertyAttributes(); in CodeCompleteObjCPropertyFlags()
H A DSemaChecking.cpp15607 unsigned Attributes = PD->getPropertyAttributes(); in checkUnsafeExprAssigns()
/freebsd-13.1/contrib/llvm-project/clang/lib/ARCMigrate/
H A DTransZeroOutPropsInDealloc.cpp121 ObjCPropertyAttribute::Kind AttrKind = PD->getPropertyAttributes(); in TraverseObjCMethodDecl()
H A DObjCMT.cpp625 if ((ClassProperty->getPropertyAttributes() != in ClassImplementsAllMethodsAndProperties()
626 Property->getPropertyAttributes()) || in ClassImplementsAllMethodsAndProperties()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DDeclSpec.h856 ObjCPropertyAttribute::Kind getPropertyAttributes() const { in getPropertyAttributes() function
867 (getPropertyAttributes() & ObjCPropertyAttribute::kind_nullability)) && in getNullability()
875 (getPropertyAttributes() & ObjCPropertyAttribute::kind_nullability)) && in getNullabilityLoc()
883 (getPropertyAttributes() & ObjCPropertyAttribute::kind_nullability)) && in setNullability()
/freebsd-13.1/contrib/llvm-project/clang/lib/Parse/
H A DParseObjc.cpp745 if (OCDS.getPropertyAttributes() & in ParseObjCInterfaceDeclList()
932 if (DS.getPropertyAttributes() & ObjCPropertyAttribute::kind_nullability) in ParseObjCPropertyAttribute()
939 if (DS.getPropertyAttributes() & ObjCPropertyAttribute::kind_nullability) in ParseObjCPropertyAttribute()
946 if (DS.getPropertyAttributes() & ObjCPropertyAttribute::kind_nullability) in ParseObjCPropertyAttribute()
953 if (DS.getPropertyAttributes() & ObjCPropertyAttribute::kind_nullability) in ParseObjCPropertyAttribute()
/freebsd-13.1/contrib/llvm-project/clang/lib/Analysis/
H A DBodyFarm.cpp774 if (Prop->getPropertyAttributes() & ObjCPropertyAttribute::kind_weak) in createObjCPropertyGetter()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DDeclObjC.h812 ObjCPropertyAttribute::Kind getPropertyAttributes() const { in getPropertyAttributes() function
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjC.cpp3674 if ((!(PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_atomic))) in GenerateObjCAtomicSetterCopyHelperFunction()
3764 if ((!(PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_atomic))) in GenerateObjCAtomicGetterCopyHelperFunction()
H A DCGDebugInfo.cpp2721 PD->getPropertyAttributes(), getOrCreateType(PD->getType(), PUnit)); in CreateTypeDefinition()
2822 PD->getPropertyAttributes(), in CreateTypeDefinition()
H A DCGObjCGNU.cpp246 int attrs = property->getPropertyAttributes(); in PushPropertyAttributes()
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterDecl.cpp862 Record.push_back((unsigned)D->getPropertyAttributes()); in VisitObjCPropertyDecl()
/freebsd-13.1/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp791 unsigned Attributes = PD->getPropertyAttributes(); in RewritePropertyImplDecl()
H A DRewriteModernObjC.cpp943 unsigned Attributes = PD->getPropertyAttributes(); in RewritePropertyImplDecl()