Searched defs:Property (Results 1 - 25 of 53) sorted by relevance

123

/external/libbrillo/brillo/dbus/
H A Ddbus_property.h14 // Re-implementation of dbus::Property<T> that can handle any type supported by
16 // This class is pretty much a copy of dbus::Property<T> from dbus/property.h
20 class Property : public dbus::PropertyBase { class in namespace:brillo::dbus_utils
22 Property() = default;
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/introspector/
H A DProperty.java20 * A <code>Property</code> represents a single member variable of a class,
31 public abstract class Property implements Comparable<Property> { class in inherits:Comparable
36 public Property(String name, Class<?> type) { method in class:Property
56 public int compareTo(Property o) {
79 if (other instanceof Property) {
80 Property p = (Property) other;
/external/testng/src/main/java/org/testng/
H A DReporterConfig.java29 private List<Property> m_properties = Lists.newArrayList();
36 public void addProperty(Property property) {
40 public List<Property> getProperties() {
59 ReporterConfig.Property property = m_properties.get(i);
86 Property property = new Property();
107 for (ReporterConfig.Property property : m_properties) {
114 public static class Property { class in class:ReporterConfig
139 for (Property prop : m_properties) {
/external/clang/test/Analysis/
H A Dmalloc.cpp79 struct Property { struct
81 Property(char* n) function in struct:Property
85 void append(Property x);
88 append(Property(getterName));
96 Property prop;
97 NestedProperty(Property p)
103 appendNested(NestedProperty(Property(getterName)));
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/
H A DProperty.java22 * {@link Property} is used to display/change properties of ObjectInfo's.
27 public abstract class Property { class
29 * The value that should be used when we don't know real value of {@link Property}. We can not use
50 public Property(PropertyEditor editor) { method in class:Property
85 * Sets the {@link PropertyCategory} for this {@link Property}.
97 * @return the current value of this {@link Property} or {@link #UNKNOWN_VALUE}.
102 * Sets the new value of this {@link Property}.
105 * new value of {@link Property} or {@link #UNKNOWN_VALUE} if {@link Property}
128 * @return the composite {@link Property} fo
[all...]
/external/emma/core/java12/com/vladium/util/
H A DProperty.java7 * $Id: Property.java,v 1.1.1.1.2.4 2004/07/16 23:32:04 vlad_r Exp $
32 abstract class Property class
105 final Properties appDefaults = Property.getProperties (namespace + "_default.properties", loader);
108 final String fileName = Property.getSystemProperty (namespace + ".properties");
113 systemFileOverrides = Property.getLazyPropertiesFromFile (file);
115 final Properties systemOverrides = Property.getSystemProperties (namespace);
116 final Properties resOverrides = Property.getProperties (namespace + ".properties", loader);
/external/guice/examples/src/example/xml/
H A DXmlBeanModule.java146 new Property(setter, provider));
155 static class Property { class in class:XmlBeanModule
160 Property(Method setter, Provider<?> provider) { method in class:XmlBeanModule.Property
180 final List<Property> properties = new ArrayList<Property>();
200 final List<Property> properties;
202 BeanProvider(Class<T> type, List<Property> properties) {
210 for (Property property : properties) {
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DCssSchema.java46 static final class Property { class in class:CssSchema
56 private Property( method in class:CssSchema.Property
73 static final Property DISALLOWED = new Property(
76 private final ImmutableMap<String, Property> properties;
78 private CssSchema(ImmutableMap<String, Property> properties) {
93 ImmutableMap.Builder<String, Property> propertiesBuilder =
96 Property prop = DEFINITIONS.get(propertyName);
111 Map<String, Property> properties = Maps.newLinkedHashMap();
128 Property forKe
[all...]
/external/pdfium/xfa/fxfa/parser/
H A Dcscript_eventpseudomodel.cpp57 void CScript_EventPseudoModel::Property(CFXJSE_Value* pValue, function in class:CScript_EventPseudoModel
126 Property(pValue, XFA_Event::Change, bSetting);
131 Property(pValue, XFA_Event::CommitKey, bSetting);
136 Property(pValue, XFA_Event::FullText, bSetting);
141 Property(pValue, XFA_Event::Keydown, bSetting);
146 Property(pValue, XFA_Event::Modifier, bSetting);
151 Property(pValue, XFA_Event::NewContentType, bSetting);
156 Property(pValue, XFA_Event::NewText, bSetting);
161 Property(pValue, XFA_Event::PreviousContentType, bSetting);
166 Property(pValu
[all...]
/external/libchrome/dbus/
H A Dproperty.cc73 LOG(WARNING) << "Property changed signal has wrong parameters: "
82 LOG(WARNING) << "Property changed signal has wrong parameters: "
87 LOG(WARNING) << "Property changed signal has wrong parameters: "
300 // Property<Byte> specialization.
304 Property<uint8_t>::Property() function in class:dbus::Property
308 bool Property<uint8_t>::PopValueFromReader(MessageReader* reader) {
313 void Property<uint8_t>::AppendSetValueToWriter(MessageWriter* writer) {
318 // Property<bool> specialization.
322 Property<boo function in class:dbus::Property
340 Property<int16_t>::Property() function in class:dbus::Property
358 Property<uint16_t>::Property() function in class:dbus::Property
376 Property<int32_t>::Property() function in class:dbus::Property
394 Property<uint32_t>::Property() function in class:dbus::Property
412 Property<int64_t>::Property() function in class:dbus::Property
430 Property<uint64_t>::Property() function in class:dbus::Property
448 Property<double>::Property() : value_(0.0) { function in class:dbus::Property
[all...]
H A Dproperty.h31 // member for each property defined as an instance of the Property<> class,
40 // dbus::Property<std::string> name;
41 // dbus::Property<uint16_t> version;
42 // dbus::Property<dbus::ObjectPath> parent;
43 // dbus::Property<std::vector<std::string> > children;
134 // the Property<> template that are not type-specific, such as the
165 // Allows to mark Property as valid or invalid.
309 // and for Property<>. Not permitted with const references to this class.
354 // Property template, this defines the type-specific and type-safe methods
378 class CHROME_DBUS_EXPORT Property class in namespace:dbus
380 Property() {} function in class:dbus::Property
[all...]
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_parse.h85 struct tgsi_property Property; member in struct:tgsi_full_property
/external/swiftshader/third_party/LLVM/utils/TableGen/
H A DCodeGenTarget.cpp475 Record *Property = PropList->getElementAsRecord(i); local
476 assert(Property->isSubClassOf("IntrinsicProperty") &&
479 if (Property->getName() == "IntrNoMem")
481 else if (Property->getName() == "IntrReadArgMem")
483 else if (Property->getName() == "IntrReadMem")
485 else if (Property->getName() == "IntrReadWriteArgMem")
487 else if (Property->getName() == "Commutative")
489 else if (Property->getName() == "Throws")
491 else if (Property->isSubClassOf("NoCapture")) {
492 unsigned ArgNo = Property
[all...]
H A DCodeGenDAGPatterns.cpp1339 bool TreePatternNode::NodeHasProperty(SDNP Property, argument
1343 return CP->hasProperty(Property);
1350 return CGP.getSDNodeInfo(Operator).hasProperty(Property);
1358 bool TreePatternNode::TreeHasProperty(SDNP Property, argument
1360 if (NodeHasProperty(Property, CGP))
1363 if (getChild(i)->TreeHasProperty(Property, CGP))
/external/llvm/utils/TableGen/
H A DCodeGenTarget.cpp570 Record *Property = PropList->getElementAsRecord(i); local
571 assert(Property->isSubClassOf("IntrinsicProperty") &&
574 if (Property->getName() == "IntrNoMem")
576 else if (Property->getName() == "IntrReadMem")
578 else if (Property->getName() == "IntrWriteMem")
580 else if (Property->getName() == "IntrArgMemOnly")
582 else if (Property->getName() == "Commutative")
584 else if (Property->getName() == "Throws")
586 else if (Property->getName() == "IntrNoDuplicate")
588 else if (Property
[all...]
H A DCodeGenDAGPatterns.cpp1141 for (Record *Property : R->getValueAsListOfDefs("Properties")) {
1142 if (Property->getName() == "SDNPCommutative") {
1144 } else if (Property->getName() == "SDNPAssociative") {
1146 } else if (Property->getName() == "SDNPHasChain") {
1148 } else if (Property->getName() == "SDNPOutGlue") {
1150 } else if (Property->getName() == "SDNPInGlue") {
1152 } else if (Property->getName() == "SDNPOptInGlue") {
1154 } else if (Property->getName() == "SDNPMayStore") {
1156 } else if (Property->getName() == "SDNPMayLoad") {
1158 } else if (Property
1632 NodeHasProperty(SDNP Property, const CodeGenDAGPatterns &CGP) const argument
1651 TreeHasProperty(SDNP Property, const CodeGenDAGPatterns &CGP) const argument
[all...]
/external/v8/src/compiler/
H A Doperator.h39 enum Property { enum in class:v8::internal::compiler::Operator
60 typedef base::Flags<Property, uint8_t> Properties;
92 bool HasProperty(Property property) const {
/external/llvm/include/llvm/CodeGen/
H A DMachineFunction.h107 // Property descriptions:
119 enum class Property : unsigned { class in class:llvm::MachineFunctionProperties
126 bool hasProperty(Property P) const {
129 MachineFunctionProperties &set(Property P) {
133 MachineFunctionProperties &clear(Property P) {
157 BitVector(static_cast<unsigned>(Property::LastProperty));
/external/clang/include/clang/Sema/
H A DScopeInfo.h184 /// Access Expression | "Base" Decl | "Property" Decl
202 /// The extra flag is "true" if the Base and Property are enough to uniquely
213 const NamedDecl *Property; member in class:clang::sema::FunctionScopeInfo::WeakObjectProfileTy
223 WeakObjectProfileTy(const Expr *Base, const ObjCPropertyDecl *Property);
228 const NamedDecl *getProperty() const { return Property; }
246 return Base == Other.Base && Property == Other.Property;
265 Val.Property));
860 : Base(nullptr, false), Property(nullptr) {}
/external/clang/lib/AST/
H A DDeclObjC.cpp102 const ObjCPropertyDecl *Property) const {
103 Selector Sel = Property->getSetterName();
126 if (P->getIdentifier() == Property->getIdentifier()) {
135 if (Proto->HasUserDeclaredSetterMethod(Property))
141 if (OSC->HasUserDeclaredSetterMethod(Property))
148 if (PI->HasUserDeclaredSetterMethod(Property))
1745 ObjCSubstitutionContext::Property);
1872 const ObjCPropertyDecl *Property,
1877 if (Prop == Property)
1879 if (Prop->getIdentifier() == Property
1871 collectInheritedProtocolProperties( const ObjCPropertyDecl *Property, ProtocolPropertyMap &PM) const argument
[all...]
H A DASTImporter.cpp4249 ObjCPropertyDecl *Property = cast_or_null<ObjCPropertyDecl>( local
4251 if (!Property)
4280 = InImpl->FindPropertyImplDecl(Property->getIdentifier(),
4281 Property->getQueryKind());
4286 Property,
4299 << Property->getDeclName()
4314 << Property->getDeclName()
/external/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp1320 Property, enumerator in enum:__anon1413
1329 ObjectKind = Property;
H A DSemaObjCProperty.cpp357 auto isImplicitlyReadonlyAtomic = [](ObjCPropertyDecl *Property) -> bool {
359 auto Attrs = Property->getPropertyAttributes();
366 if (Property->getPropertyAttributesAsWritten() &
575 // Property defaults to 'assign' if it is readwrite, unless this is ARC
815 ObjCPropertyDecl *Property) {
819 PDecl->collectInheritedProtocolProperties(Property, PropMap);
825 PDecl->collectInheritedProtocolProperties(Property, PropMap);
833 QualType RHSType = S.Context.getCanonicalType(Property->getType());
845 S.Diag(Property->getLocation(), diag::warn_protocol_property_mismatch)
846 << Property
813 DiagnosePropertyMismatchDeclInProtocols(Sema &S, SourceLocation AtLoc, ObjCInterfaceDecl *ClassDecl, ObjCPropertyDecl *Property) argument
1416 DiagnosePropertyMismatch(ObjCPropertyDecl *Property, ObjCPropertyDecl *SuperProperty, const IdentifierInfo *inheritedName, bool OverridingProtocolProperty) argument
1956 const ObjCPropertyDecl *Property = I->second; local
2129 AddPropertyAttrs(Sema &S, ObjCMethodDecl *PropertyMethod, ObjCPropertyDecl *Property) argument
[all...]
H A DSemaTemplateInstantiateDecl.cpp773 MSPropertyDecl *Property = MSPropertyDecl::Create( local
777 SemaRef.InstantiateAttrs(TemplateArgs, D, Property, LateAttrs,
781 Property->setInvalidDecl();
783 Property->setAccess(D->getAccess());
784 Owner->addDecl(Property);
786 return Property;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.engine_2.0.0.v20100606.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 669 milliseconds

123