Home
last modified time | relevance | path

Searched refs:Prop (Results 1 – 25 of 27) sorted by relevance

12

/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaObjCProperty.cpp1764 PropMap[std::make_pair(Prop->getIdentifier(), Prop->isClassProperty())] = in CollectImmediateProperties()
1765 Prop; in CollectImmediateProperties()
1784 PropMap[std::make_pair(Prop->getIdentifier(), Prop->isClassProperty())] = in CollectImmediateProperties()
1785 Prop; in CollectImmediateProperties()
1809 PropEntry = Prop; in CollectImmediateProperties()
1908 Prop->getIdentifier(), Prop->getQueryKind())) in DefaultSynthesizeProperties()
1938 << Prop << Proto; in DefaultSynthesizeProperties()
1975 Prop->getLocation(), Prop->getQueryKind())); in DefaultSynthesizeProperties()
2132 PrimaryClass, Prop->getGetterName(), IMPDecl, CDecl, C, Prop, InsMap); in DiagnoseUnimplementedProperties()
2173 PM[std::make_pair(Prop->getIdentifier(), Prop->isClassProperty())] = Prop; in AtomicPropertySetterGetterRules()
[all …]
H A DScopeInfo.cpp132 const ObjCPropertyDecl *Prop) in WeakObjectProfileTy() argument
133 : Base(nullptr, true), Property(Prop) { in WeakObjectProfileTy()
151 const ObjCPropertyDecl *Prop) { in recordUseOfWeak() argument
152 assert(Msg && Prop); in recordUseOfWeak()
154 WeakObjectUses[WeakObjectProfileTy(Msg->getInstanceReceiver(), Prop)]; in recordUseOfWeak()
198 if (const ObjCPropertyDecl *Prop = MD->findPropertyDecl()) { in markSafeWeakUse() local
201 Prop)); in markSafeWeakUse()
H A DSemaPseudoObject.cpp584 const ObjCPropertyDecl *Prop = RefExpr->getExplicitProperty(); in isWeakProperty() local
585 if (Prop->getPropertyAttributes() & ObjCPropertyAttribute::kind_weak) in isWeakProperty()
588 T = Prop->getType(); in isWeakProperty()
H A DAnalysisBasedWarnings.cpp1489 if (const ObjCPropertyDecl *Prop = dyn_cast<ObjCPropertyDecl>(KeyProp)) in diagnoseRepeatedUseOfWeak() local
1490 if (Prop->hasAttr<IBOutletAttr>()) in diagnoseRepeatedUseOfWeak()
/freebsd-13.1/contrib/llvm-project/clang/lib/Analysis/
H A DBodyFarm.cpp705 const ObjCIvarDecl *IVar = Prop->getPropertyIvarDecl(); in findBackingIvar()
716 if (!Prop->isReadOnly()) in findBackingIvar()
735 Prop->getIdentifier(), Prop->getQueryKind()); in findBackingIvar()
736 if (ShadowingProp && ShadowingProp != Prop) { in findBackingIvar()
747 const ObjCPropertyDecl *Prop = nullptr; in createObjCPropertyGetter() local
758 Prop = Candidate; in createObjCPropertyGetter()
759 IVar = Prop->getPropertyIvarDecl(); in createObjCPropertyGetter()
766 Prop = MD->findPropertyDecl(); in createObjCPropertyGetter()
767 IVar = findBackingIvar(Prop); in createObjCPropertyGetter()
770 if (!IVar || !Prop) in createObjCPropertyGetter()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DDeclObjC.cpp396 for (auto *Prop : properties()) { in collectPropertiesToImplement() local
397 PM[std::make_pair(Prop->getIdentifier(), Prop->isClassProperty())] = Prop; in collectPropertiesToImplement()
398 PO.push_back(Prop); in collectPropertiesToImplement()
403 PM[std::make_pair(Prop->getIdentifier(), Prop->isClassProperty())] = Prop; in collectPropertiesToImplement()
404 PO.push_back(Prop); in collectPropertiesToImplement()
1411 return Prop; in findPropertyDecl()
1986 std::make_pair(Prop->getIdentifier(), Prop->isClassProperty()), in collectPropertiesToImplement()
1987 Prop)); in collectPropertiesToImplement()
1988 PO.push_back(Prop); in collectPropertiesToImplement()
2003 if (Prop == Property) in collectInheritedProtocolProperties()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/
H A DJSON.h763 template <typename T> bool map(StringLiteral Prop, T &Out) { in map() argument
765 if (const Value *E = O->get(Prop)) in map()
766 return fromJSON(*E, Out, P.field(Prop)); in map()
767 P.field(Prop).report("missing value"); in map()
774 template <typename T> bool map(StringLiteral Prop, llvm::Optional<T> &Out) { in map() argument
776 if (const Value *E = O->get(Prop)) in map()
777 return fromJSON(*E, Out, P.field(Prop)); in map()
785 template <typename T> bool mapOptional(StringLiteral Prop, T &Out) { in mapOptional() argument
787 if (const Value *E = O->get(Prop)) in mapOptional()
788 return fromJSON(*E, Out, P.field(Prop)); in mapOptional()
/freebsd-13.1/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenIntrinsics.h179 bool hasProperty(enum SDNP Prop) const { in hasProperty()
180 return Properties & (1 << Prop); in hasProperty()
H A DCodeGenTarget.h220 bool hasProperty(enum SDNP Prop) const { return Properties & (1 << Prop); } in hasProperty() argument
H A DCodeGenDAGPatterns.h476 bool hasProperty(enum SDNP Prop) const { return Properties & (1 << Prop); } in hasProperty() argument
/freebsd-13.1/contrib/llvm-project/clang/lib/ARCMigrate/
H A DTransProperties.cpp78 for (auto *Prop : D->instance_properties()) { in collectProperties() local
79 SourceLocation Loc = Prop->getAtLoc(); in collectProperties()
86 props.push_back(Prop); in collectProperties()
H A DObjCMT.cpp252 const ObjCPropertyDecl *Prop = Method->findPropertyDecl(); in rewriteToPropertyDotSyntax() local
253 if (!Prop) in rewriteToPropertyDotSyntax()
280 PropertyDotString += Prop->getName(); in rewriteToPropertyDotSyntax()
290 PropertyDotString += Prop->getName(); in rewriteToPropertyDotSyntax()
594 for (auto *Prop : D->instance_properties()) { in migrateObjCContainerDecl() local
596 !Prop->isDeprecated()) in migrateObjCContainerDecl()
597 migratePropertyNsReturnsInnerPointer(Ctx, Prop); in migrateObjCContainerDecl()
/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DIvarInvalidationChecker.cpp192 const ObjCPropertyDecl *Prop,
300 const ObjCPropertyDecl *Prop, in findPropertyBackingIvar() argument
307 IvarD = Prop->getPropertyIvarDecl(); in findPropertyBackingIvar()
320 StringRef PropName = Prop->getIdentifier()->getName(); in findPropertyBackingIvar()
H A DCheckObjCDealloc.cpp945 const ObjCPropertyDecl *Prop = M.getAccessedProperty(); in getValueReleasedByNillingOut() local
946 if (!Prop) in getValueReleasedByNillingOut()
949 ObjCIvarDecl *PropIvarDecl = Prop->getPropertyIvarDecl(); in getValueReleasedByNillingOut()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Index/
H A DUSRGeneration.h54 void generateUSRForObjCProperty(StringRef Prop, bool isClassProp, raw_ostream &OS);
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/LiveDebugValues/
H A DInstrRefBasedImpl.cpp824 DbgValue(const ValueIDNum &Val, const DbgValueProperties &Prop, KindT Kind) in DbgValue() argument
825 : ID(Val), Properties(Prop), Kind(Kind) { in DbgValue()
829 DbgValue(unsigned BlockNo, const DbgValueProperties &Prop, KindT Kind) in DbgValue() argument
830 : BlockNo(BlockNo), Properties(Prop), Kind(Kind) { in DbgValue()
835 : MO(MO), Properties(Prop), Kind(Kind) { in DbgValue()
839 DbgValue(const DbgValueProperties &Prop, KindT Kind) in DbgValue() argument
840 : Properties(Prop), Kind(Kind) { in DbgValue()
1211 if (!isEntryValueVariable(Var, Prop.DIExpr)) in recoverAsEntryValue()
1220 DIExpression::prepend(Prop.DIExpr, DIExpression::EntryValue); in recoverAsEntryValue()
1321 auto &Prop = ActiveVLocs.find(Var)->second.Properties; in clobberMloc() local
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/BinaryFormat/
H A DDwarf.cpp565 StringRef llvm::dwarf::ApplePropertyString(unsigned Prop) { in ApplePropertyString() argument
566 switch (Prop) { in ApplePropertyString()
/freebsd-13.1/contrib/llvm-project/clang/lib/Index/
H A DIndexSymbol.cpp587 applyForEachSymbolProperty(Props, [&](SymbolProperty Prop) { in printSymbolProperties() argument
592 switch (Prop) { in printSymbolProperties()
H A DUSRGeneration.cpp1056 void clang::index::generateUSRForObjCProperty(StringRef Prop, bool isClassProp, in generateUSRForObjCProperty() argument
1058 OS << (isClassProp ? "(cpy)" : "(py)") << Prop; in generateUSRForObjCProperty()
/freebsd-13.1/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp5354 for (const auto *Prop : IDecl->property_impls()) { in RewriteObjCClassMetaData() local
5355 if (Prop->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic) in RewriteObjCClassMetaData()
5357 if (!Prop->getPropertyIvarDecl()) in RewriteObjCClassMetaData()
5359 ObjCPropertyDecl *PD = Prop->getPropertyDecl(); in RewriteObjCClassMetaData()
5362 if (ObjCMethodDecl *Getter = Prop->getGetterMethodDecl()) in RewriteObjCClassMetaData()
5367 if (ObjCMethodDecl *Setter = Prop->getSetterMethodDecl()) in RewriteObjCClassMetaData()
5632 for (const auto *Prop : IDecl->property_impls()) { in RewriteObjCCategoryImplDecl() local
5635 if (!Prop->getPropertyIvarDecl()) in RewriteObjCCategoryImplDecl()
5637 ObjCPropertyDecl *PD = Prop->getPropertyDecl(); in RewriteObjCCategoryImplDecl()
5640 if (ObjCMethodDecl *Getter = Prop->getGetterMethodDecl()) in RewriteObjCCategoryImplDecl()
[all …]
H A DRewriteModernObjC.cpp7030 for (const auto *Prop : IDecl->property_impls()) { in RewriteObjCClassMetaData() local
7031 if (Prop->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic) in RewriteObjCClassMetaData()
7033 if (!Prop->getPropertyIvarDecl()) in RewriteObjCClassMetaData()
7035 ObjCPropertyDecl *PD = Prop->getPropertyDecl(); in RewriteObjCClassMetaData()
7038 if (ObjCMethodDecl *Getter = Prop->getGetterMethodDecl()) in RewriteObjCClassMetaData()
7043 if (ObjCMethodDecl *Setter = Prop->getSetterMethodDecl()) in RewriteObjCClassMetaData()
7280 for (const auto *Prop : IDecl->property_impls()) { in RewriteObjCCategoryImplDecl() local
7283 if (!Prop->getPropertyIvarDecl()) in RewriteObjCCategoryImplDecl()
7285 ObjCPropertyDecl *PD = Prop->getPropertyDecl(); in RewriteObjCCategoryImplDecl()
7288 if (ObjCMethodDecl *Getter = Prop->getGetterMethodDecl()) in RewriteObjCCategoryImplDecl()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DScopeInfo.h405 const ObjCPropertyDecl *Prop);
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineFunction.cpp89 static const char *getPropertyName(MachineFunctionProperties::Property Prop) { in getPropertyName() argument
92 switch(Prop) { in getPropertyName()
/freebsd-13.1/contrib/llvm-project/llvm/lib/IR/
H A DAttributes.cpp498 AttributeProperty Prop) { in hasAttributeProperty() argument
502 return AttrPropTable[Index] & Prop; in hasAttributeProperty()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DDeclObjC.h2808 void setPropertyDecl(ObjCPropertyDecl *Prop) { PropertyDecl = Prop; } in setPropertyDecl() argument

12