Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DSemaObjCProperty.cpp1226 ObjCPropertyDecl *Prop = (*P); in CollectImmediateProperties() local
1227 PropMap[Prop->getIdentifier()] = Prop; in CollectImmediateProperties()
1239 ObjCPropertyDecl *Prop = (*P); in CollectImmediateProperties() local
1240 PropMap[Prop->getIdentifier()] = Prop; in CollectImmediateProperties()
1250 ObjCPropertyDecl *Prop = (*P); in CollectImmediateProperties() local
1251 ObjCPropertyDecl *PropertyFromSuper = SuperPropMap[Prop->getIdentifier()]; in CollectImmediateProperties()
1255 PropertyFromSuper->getIdentifier() != Prop->getIdentifier()) { in CollectImmediateProperties()
1256 ObjCPropertyDecl *&PropEntry = PropMap[Prop->getIdentifier()]; in CollectImmediateProperties()
1258 PropEntry = Prop; in CollectImmediateProperties()
1276 ObjCPropertyDecl *Prop = (*P); in CollectClassPropertyImplementations() local
[all …]
DSemaLookup.cpp3502 if (ObjCPropertyDecl *Prop = Class->FindPropertyDeclaration(Name)) { in LookupPotentialTypoResult() local
3503 Res.addDecl(Prop); in LookupPotentialTypoResult()
/external/webkit/Source/WebCore/css/
DSVGCSSStyleSelector.cpp49 #define HANDLE_INHERIT(prop, Prop) \ argument
52 svgstyle->set##Prop(m_parentStyle->svgStyle()->prop()); \
56 #define HANDLE_INHERIT_AND_INITIAL(prop, Prop) \ argument
57 HANDLE_INHERIT(prop, Prop) \
59 svgstyle->set##Prop(SVGRenderStyle::initial##Prop()); \
DCSSStyleSelector.cpp132 #define HANDLE_INHERIT(prop, Prop) \ argument
134 m_style->set##Prop(m_parentStyle->prop()); \
138 #define HANDLE_INHERIT_AND_INITIAL(prop, Prop) \ argument
139 HANDLE_INHERIT(prop, Prop) \
141 m_style->set##Prop(RenderStyle::initial##Prop()); \
145 #define HANDLE_INHERIT_AND_INITIAL_WITH_VALUE(prop, Prop, Value) \ argument
146 HANDLE_INHERIT(prop, Prop) \
148 m_style->set##Prop(RenderStyle::initial##Value());\
152 #define HANDLE_INHERIT_AND_INITIAL_AND_PRIMITIVE(prop, Prop) \ argument
153 HANDLE_INHERIT_AND_INITIAL(prop, Prop) \
[all …]
/external/llvm/utils/TableGen/
DCodeGenTarget.h196 bool hasProperty(enum SDNP Prop) const { return Properties & (1 << Prop); } in hasProperty() argument
DCodeGenDAGPatterns.h230 bool hasProperty(enum SDNP Prop) const { return Properties & (1 << Prop); } in hasProperty() argument
/external/clang/lib/Frontend/
DMultiplexConsumer.cpp104 virtual void AddedObjCPropertyInClassExtension(const ObjCPropertyDecl *Prop,
159 const ObjCPropertyDecl *Prop, in AddedObjCPropertyInClassExtension() argument
163 Listeners[i]->AddedObjCPropertyInClassExtension(Prop, OrigProp, ClassExt); in AddedObjCPropertyInClassExtension()
/external/clang/include/clang/AST/
DASTMutationListener.h74 virtual void AddedObjCPropertyInClassExtension(const ObjCPropertyDecl *Prop, in AddedObjCPropertyInClassExtension() argument
DDeclObjC.h1949 void setPropertyDecl(ObjCPropertyDecl *Prop) { PropertyDecl = Prop; } in setPropertyDecl() argument
/external/clang/lib/Rewrite/
DRewriteObjC.cpp5476 for (ObjCImplDecl::propimpl_iterator Prop = IDecl->propimpl_begin(), in RewriteObjCClassMetaData() local
5478 Prop != PropEnd; ++Prop) { in RewriteObjCClassMetaData()
5479 if ((*Prop)->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic) in RewriteObjCClassMetaData()
5481 if (!(*Prop)->getPropertyIvarDecl()) in RewriteObjCClassMetaData()
5483 ObjCPropertyDecl *PD = (*Prop)->getPropertyDecl(); in RewriteObjCClassMetaData()
5761 for (ObjCImplDecl::propimpl_iterator Prop = IDecl->propimpl_begin(), in RewriteObjCCategoryImplDecl() local
5763 Prop != PropEnd; ++Prop) { in RewriteObjCCategoryImplDecl()
5764 if ((*Prop)->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic) in RewriteObjCCategoryImplDecl()
5766 if (!(*Prop)->getPropertyIvarDecl()) in RewriteObjCCategoryImplDecl()
5768 ObjCPropertyDecl *PD = (*Prop)->getPropertyDecl(); in RewriteObjCCategoryImplDecl()
DRewriteModernObjC.cpp6759 for (ObjCImplDecl::propimpl_iterator Prop = IDecl->propimpl_begin(), in RewriteObjCClassMetaData() local
6761 Prop != PropEnd; ++Prop) { in RewriteObjCClassMetaData()
6762 if ((*Prop)->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic) in RewriteObjCClassMetaData()
6764 if (!(*Prop)->getPropertyIvarDecl()) in RewriteObjCClassMetaData()
6766 ObjCPropertyDecl *PD = (*Prop)->getPropertyDecl(); in RewriteObjCClassMetaData()
7023 for (ObjCImplDecl::propimpl_iterator Prop = IDecl->propimpl_begin(), in RewriteObjCCategoryImplDecl() local
7025 Prop != PropEnd; ++Prop) { in RewriteObjCCategoryImplDecl()
7026 if ((*Prop)->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic) in RewriteObjCCategoryImplDecl()
7028 if (!(*Prop)->getPropertyIvarDecl()) in RewriteObjCCategoryImplDecl()
7030 ObjCPropertyDecl *PD = (*Prop)->getPropertyDecl(); in RewriteObjCCategoryImplDecl()
/external/clang/include/clang/Serialization/
DASTWriter.h702 virtual void AddedObjCPropertyInClassExtension(const ObjCPropertyDecl *Prop,
/external/clang/lib/CodeGen/
DCGObjCMac.cpp2127 llvm::Constant *Prop[] = { in PushProtocolProperties() local
2131 Properties.push_back(llvm::ConstantStruct::get(ObjCTypes.PropertyTy, Prop)); in PushProtocolProperties()
2157 llvm::Constant *Prop[] = { in EmitPropertyList() local
2162 Prop)); in EmitPropertyList()
/external/clang/lib/Serialization/
DASTWriter.cpp4537 void ASTWriter::AddedObjCPropertyInClassExtension(const ObjCPropertyDecl *Prop, in AddedObjCPropertyInClassExtension() argument