Searched refs:Property (Results 1 - 19 of 19) sorted by relevance

/freebsd-9.3-release/contrib/llvm/utils/TableGen/
H A DCodeGenTarget.cpp541 Record *Property = PropList->getElementAsRecord(i); local
542 assert(Property->isSubClassOf("IntrinsicProperty") &&
545 if (Property->getName() == "IntrNoMem")
547 else if (Property->getName() == "IntrReadArgMem")
549 else if (Property->getName() == "IntrReadMem")
551 else if (Property->getName() == "IntrReadWriteArgMem")
553 else if (Property->getName() == "Commutative")
555 else if (Property->getName() == "Throws")
557 else if (Property->getName() == "IntrNoReturn")
559 else if (Property
[all...]
H A DCodeGenDAGPatterns.h409 bool NodeHasProperty(SDNP Property, const CodeGenDAGPatterns &CGP) const;
413 bool TreeHasProperty(SDNP Property, const CodeGenDAGPatterns &CGP) const;
H A DCodeGenDAGPatterns.cpp1451 bool TreePatternNode::NodeHasProperty(SDNP Property, argument
1455 return CP->hasProperty(Property);
1462 return CGP.getSDNodeInfo(Operator).hasProperty(Property);
1470 bool TreePatternNode::TreeHasProperty(SDNP Property, argument
1472 if (NodeHasProperty(Property, CGP))
1475 if (getChild(i)->TreeHasProperty(Property, CGP))
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaObjCProperty.cpp764 ObjCPropertyDecl *Property) {
770 PDecl->collectInheritedProtocolProperties(Property, PropMap);
778 PDecl->collectInheritedProtocolProperties(Property, PropMap);
786 QualType RHSType = S.Context.getCanonicalType(Property->getType());
798 S.Diag(Property->getLocation(), diag::warn_protocol_property_mismatch)
799 << Property->getType();
1316 Sema::DiagnosePropertyMismatch(ObjCPropertyDecl *Property, argument
1321 Property->getPropertyAttributes();
1334 Diag(Property->getLocation(), diag::warn_readonly_property)
1335 << Property
762 DiagnosePropertyMismatchDeclInProtocols(Sema &S, SourceLocation AtLoc, ObjCInterfaceDecl *ClassDecl, ObjCPropertyDecl *Property) argument
1723 ObjCPropertyDecl *Property = *I; local
1835 AddPropertyAttrs(Sema &S, ObjCMethodDecl *PropertyMethod, ObjCPropertyDecl *Property) argument
[all...]
H A DScopeInfo.cpp93 : Base(0, true), Property(getBestPropertyDecl(PropE)) {
108 : Base(0, true), Property(Prop) {
116 : Base(0, true), Property(DRE->getDecl()) {
117 assert(isa<VarDecl>(Property));
122 : Base(getBaseInfo(IvarE->getBase())), Property(IvarE->getDecl()) {
H A DSemaCodeComplete.cpp672 else if (const ObjCPropertyDecl *Property = dyn_cast<ObjCPropertyDecl>(ND))
673 T = Property->getType();
2083 } else if (const ObjCPropertyDecl *Property = dyn_cast<ObjCPropertyDecl>(ND))
2084 T = Property->getType();
6049 if (ObjCPropertyDecl *Property
6052 = Property->getType().getNonReferenceType().getUnqualifiedType();
6244 static void AddObjCKeyValueCompletions(ObjCPropertyDecl *Property, argument
6250 IdentifierInfo *PropName = Property->getIdentifier();
6289 Property->getType());
6296 ReturnTypeMatchesProperty && !Property
[all...]
H A DSemaTemplateInstantiateDecl.cpp502 MSPropertyDecl *Property = new (SemaRef.Context) local
508 SemaRef.InstantiateAttrs(TemplateArgs, D, Property, LateAttrs,
512 Property->setInvalidDecl();
514 Property->setAccess(D->getAccess());
515 Owner->addDecl(Property);
517 return Property;
H A DSemaDeclObjC.cpp2626 ObjCPropertyDecl *Property = *I; local
2629 = IC->FindPropertyImplDecl(Property->getIdentifier()))
2639 = Ext->getInstanceMethod(Property->getGetterName()))
2641 if (!Property->isReadOnly())
2643 = Ext->getInstanceMethod(Property->getSetterName()))
H A DAnalysisBasedWarnings.cpp1138 Property, enumerator in enum:__anon3220
1147 ObjectKind = Property;
H A DTreeTransform.h2466 ObjCPropertyDecl *Property,
2470 LookupResult R(getSema(), Property->getDeclName(), PropertyLoc,
9205 // 'super' and types never change. Property never changes. Just
2465 RebuildObjCPropertyRefExpr(Expr *BaseArg, ObjCPropertyDecl *Property, SourceLocation PropertyLoc) argument
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DScopeInfo.h142 /// Access Expression | "Base" Decl | "Property" Decl
159 /// The extra flag is "true" if the Base and Property are enough to uniquely
170 const NamedDecl *Property; member in class:clang::sema::FunctionScopeInfo::WeakObjectProfileTy
182 WeakObjectProfileTy(const Expr *Base, const ObjCPropertyDecl *Property);
187 const NamedDecl *getProperty() const { return Property; }
205 return Base == Other.Base && Property == Other.Property;
224 Val.Property));
773 : Base(0, false), Property(0) {}
H A DSema.h6724 void DiagnosePropertyMismatch(ObjCPropertyDecl *Property,
/freebsd-9.3-release/cddl/contrib/opensolaris/lib/pyzfs/common/
H A Ddataset.py26 datasets. Also implements the Property class, which describes ZFS
35 class Property(object): class in inherits:object
73 proptable[name] = Property(t)
77 """Return the Property object that is identified by the given
139 Property object.)
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/AST/
H A DDeclObjC.cpp102 ObjCContainerDecl::HasUserDeclaredSetterMethod(const ObjCPropertyDecl *Property) const {
103 Selector Sel = Property->getSetterName();
130 if (P->getIdentifier() == Property->getIdentifier()) {
142 if (Proto->HasUserDeclaredSetterMethod(Property))
148 if (OSC->HasUserDeclaredSetterMethod(Property))
156 if ((*PI)->HasUserDeclaredSetterMethod(Property))
1516 const ObjCPropertyDecl *Property,
1523 if (Prop == Property)
1525 if (Prop->getIdentifier() == Property->getIdentifier()) {
1535 (*PI)->collectInheritedProtocolProperties(Property, P
1515 collectInheritedProtocolProperties( const ObjCPropertyDecl *Property, ProtocolPropertyMap &PM) const argument
[all...]
H A DASTImporter.cpp3815 ObjCPropertyDecl *Property = cast_or_null<ObjCPropertyDecl>( local
3817 if (!Property)
3846 = InImpl->FindPropertyImplDecl(Property->getIdentifier());
3851 Property,
3864 << Property->getDeclName()
3879 << Property->getDeclName()
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp1228 DIObjCProperty Property(Element);
1229 ElemDie = createAndAddDIE(Property.getTag(), Buffer);
1230 StringRef PropertyName = Property.getObjCPropertyName();
1232 addType(ElemDie, Property.getType());
1233 addSourceLine(ElemDie, Property);
1234 StringRef GetterName = Property.getObjCPropertyGetterName();
1237 StringRef SetterName = Property.getObjCPropertySetterName();
1241 if (Property.isReadOnlyObjCProperty())
1243 if (Property.isReadWriteObjCProperty())
1245 if (Property
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DObjCMT.cpp346 // Property with no setter may be suggested as a 'readonly' property.
505 ObjCPropertyDecl *Property = *P; local
506 if (Property->getPropertyImplementation() == ObjCPropertyDecl::Optional)
509 DeclContext::lookup_const_result R = IDecl->lookup(Property->getDeclName());
515 Property->getDeclName().getAsIdentifierInfo()))
520 != Property->getPropertyAttributes()) ||
521 !Ctx.hasSameType(ClassProperty->getType(), Property->getType()))
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Parse/
H A DParseObjc.cpp359 Decl *Property = local
366 Props.push_back(Property);
368 FD.complete(Property);
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/AST/
H A DDeclObjC.h1527 void collectInheritedProtocolProperties(const ObjCPropertyDecl *Property,
2184 /// Property declaration being implemented

Completed in 439 milliseconds