HomeSort by relevance Sort by last modified time
    Searched defs:Property (Results 1 - 25 of 162) sorted by null

1 2 3 4 5 6 7

  /cts/tests/tests/calendarcommon/src/com/android/calendarcommon2/
ICalendar.java 29 * Component and Property, for use in the test.
41 private final LinkedHashMap<String, ArrayList<Property>> mPropsMap =
42 new LinkedHashMap<String, ArrayList<Property>>();
53 * Adds a Property to this component.
56 public void addProperty(Property prop) {
58 ArrayList<Property> props = mPropsMap.get(name);
60 props = new ArrayList<Property>();
69 * @param name The name of the property that should be returned.
72 public List<Property> getProperties(String name) {
78 * A property within an iCalendar component (e.g., DTSTART, DTEND, etc.
    [all...]
  /external/libbrillo/brillo/dbus/
dbus_property.h 9 #include <dbus/property.h>
14 // 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 {
22 Property() = default;
39 // Requests that the remote object change the property value to |value|,
69 // to replace the property value with the set value without using a
77 // value of a property.
84 // Current cached value of the property
    [all...]
  /frameworks/base/core/java/android/util/
Property.java 20 * A property is an abstraction that can be used to represent a <emb>mutable</em> value that is held
21 * in a <em>host</em> object. The Property's {@link #set(Object, Object)} or {@link #get(Object)}
25 * @param <T> The class on which the property is declared.
26 * @param <V> The type that this property represents.
28 public abstract class Property<T, V> {
34 * This factory method creates and returns a Property given the <code>class</code> and
47 * <code>setName()</code> method is not found, the <code>Property</code> will be
49 * a property is allowed, but will have no effect.</p>
54 public static <T, V> Property<T, V> of(Class<T> hostType, Class<V> valueType, String name) {
59 * A constructor that takes an identifying name and {@link #getType() type} for the property
    [all...]
  /system/connectivity/shill/
static_ip_parameters.h 42 // Take a property store and add static IP parameters to them.
62 // Return whether configuration parameters contain an address property.
65 // Return whether configuration parameters contain a namerservers property.
75 struct Property {
91 static const Property kProperties[];
93 // These functions try to retrieve the argument |property| out of the
96 void ApplyInt(const std::string& property, int32_t* value_out);
97 void ApplyString(const std::string& property, std::string* value_out);
98 void ApplyStrings(const std::string& property,
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/introspector/
Property.java 20 * A <code>Property</code> represents a single member variable of a class,
22 * class is the actual name of the property as given for the class, not an
28 * on the name of the property.
31 public abstract class Property implements Comparable<Property> {
36 public Property(String name, Class<?> type) {
56 public int compareTo(Property o) {
79 if (other instanceof Property) {
80 Property p = (Property) other
    [all...]
  /external/clang/test/Analysis/
malloc.cpp 79 struct Property {
81 Property(char* n)
85 void append(Property x);
88 append(Property(getterName));
96 Property prop;
97 NestedProperty(Property p)
103 appendNested(NestedProperty(Property(getterName)));
  /external/dbus-binding-generator/chromeos-dbus-bindings/
interface.h 55 struct Property {
56 Property(const std::string& name_in,
70 const std::vector<Property>& properties_in)
77 std::vector<Property> properties;
  /frameworks/opt/bluetooth/src/android/bluetooth/client/map/utils/
BmsgTokenizer.java 35 static public class Property {
39 public Property(String name, String value) {
57 return ((o instanceof Property) && ((Property) o).name.equals(name) && ((Property) o).value
73 public Property next(boolean alwaysReturn) throws ParseException {
84 throw new ParseException("Property or empty line expected", pos());
94 return new Property(mMatcher.group(2), mMatcher.group(3));
97 public Property next() throws ParseException {
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/utils/
BmsgTokenizer.java 35 static public class Property {
39 public Property(String name, String value) {
57 return ((o instanceof Property) && ((Property) o).name.equals(name) && ((Property) o).value
73 public Property next(boolean alwaysReturn) throws ParseException {
84 throw new ParseException("Property or empty line expected", pos());
94 return new Property(mMatcher.group(2), mMatcher.group(3));
97 public Property next() throws ParseException {
  /system/connectivity/shill/vpn/
vpn_driver.h 67 struct Property {
72 kArray = 1 << 3, // Property is an array of strings.
75 const char* property; member in struct:shill::VPNDriver::Property
83 const Property* properties,
123 const Property* const properties_;
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/
Property.java 11 package org.eclipse.wb.internal.core.model.property;
15 import org.eclipse.wb.internal.core.model.property.category.PropertyCategory;
16 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor;
22 * {@link Property} is used to display/change properties of ObjectInfo's.
25 * @coverage core.model.property
27 public abstract class Property {
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) {
61 * @return the title displayed to the user to identify the property.
66 * @return <code>true</code> if this property has a non-default valu
    [all...]
  /external/libchrome/dbus/
property.cc 5 #include "dbus/property.h"
50 PropertyBase* property) {
51 property->Init(this, name);
52 properties_map_[name] = property;
73 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: "
100 void PropertySet::Get(PropertyBase* property, GetCallback callback) {
104 writer.AppendString(property->name());
111 property,
286 PropertyBase* property = it->second; local
    [all...]
property.h 31 // member for each property defined as an instance of the Property<> class,
34 // property defined to associate them with their string name.
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;
101 // the current value of the name property would be:
116 // the property value, and whether it emits a signal or a Get() call is
124 // in property.cc because template methods use them
    [all...]
  /external/testng/src/main/java/org/testng/
ReporterConfig.java 29 private List<Property> m_properties = Lists.newArrayList();
36 public void addProperty(Property property) {
37 m_properties.add(property);
40 public List<Property> getProperties() {
59 ReporterConfig.Property property = m_properties.get(i); local
60 sb.append(property.getName());
62 sb.append(property.getValue());
86 Property property = new Property() local
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/
extra_types.py 130 JsonObject.Property(key=key, value=_PythonValueToJsonValue(value))
161 Property: A property of a JsonObject.
167 class Property(messages.Message):
169 """A property of a JSON object.
172 key: Name of the property.
178 properties = messages.MessageField(Property, 1, repeated=True)
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sdb/db/
model.py 22 from boto.sdb.db.property import Property
46 if isinstance(dict[key], Property):
47 property = dict[key]
48 property.__property_config__(cls, key)
116 if isinstance(prop, Property):
127 property = None
131 if isinstance(prop, Property):
133 property = prop
138 return property
    [all...]
property.py 33 class Property(object):
90 raise ValueError('%s is a required property' % self.name)
124 class StringProperty(Property):
135 class TextProperty(Property):
157 Hashed property whose original value can not be
245 class BlobProperty(Property):
261 class S3KeyProperty(Property):
308 class IntegerProperty(Property):
337 class LongProperty(Property):
361 class BooleanProperty(Property)
    [all...]
  /external/emma/core/java12/com/vladium/util/
Property.java 7 * $Id: Property.java,v 1.1.1.1.2.4 2004/07/16 23:32:04 vlad_r Exp $
32 abstract class Property
49 * should be used for read-only property only
92 * This method is not property aliasing-aware.
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);
309 * Returns a lazy property implementation that will read 'load' as a .propertie
    [all...]
  /external/guice/examples/src/example/xml/
XmlBeanModule.java 45 Element property = bean.getChild("property"); local
46 property.setStartElementListener(new PropertyListener());
101 /** Handles "property" elements. */
121 // Find setter method for the given property name.
143 // Add property descriptor to builder.
146 new Property(setter, provider));
155 static class Property {
160 Property(Method setter, Provider<?> provider) {
180 final List<Property> properties = new ArrayList<Property>()
    [all...]
  /external/llvm/utils/TableGen/
CodeGenTarget.cpp 424 PrintFatalError("Unsupported SD Node property '" +
570 Record *Property = PropList->getElementAsRecord(i);
571 assert(Property->isSubClassOf("IntrinsicProperty") &&
572 "Expected a property!");
574 if (Property->getName() == "IntrNoMem")
576 else if (Property->getName() == "IntrReadArgMem")
578 else if (Property->getName() == "IntrReadMem")
580 else if (Property->getName() == "IntrReadWriteArgMem")
582 else if (Property->getName() == "Commutative")
584 else if (Property->getName() == "Throws"
    [all...]
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_parse.h 85 struct tgsi_property Property;
  /external/v8/src/compiler/
operator.h 37 enum Property {
52 typedef base::Flags<Property, uint8_t> Properties;
82 // Check whether this operator has the given property.
83 bool HasProperty(Property property) const {
84 return (properties() & property) == property;
  /frameworks/base/media/java/android/mtp/
MtpPropertyGroup.java 35 private class Property {
36 // MTP property code
43 Property(int code, int type, int column) {
56 private final Property[] mProperties;
66 // constructs a property group for a list of properties
78 mProperties = new Property[count];
89 private Property createProperty(int code, ArrayList<String> columns) {
186 Log.e(TAG, "unsupported property " + code);
192 return new Property(code, type, columns.size() - 1);
194 return new Property(code, type, -1)
355 Property property = mProperties[propertyIndex]; local
    [all...]
  /frameworks/native/include/input/
KeyCharacterMap.h 195 struct Property {
196 inline Property(int32_t property = 0, int32_t metaState = 0) :
197 property(property), metaState(metaState) { }
199 int32_t property; member in struct:android::KeyCharacterMap::Parser::Property
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/
aetypes.py 396 e.g. word, paragraph or property
399 e.g. by index, by range, by name, or by property specifier
402 e.g. its index, its name, or its property specifier
437 class Property(ObjectSpecifier):
444 return "Property(%r, %r)" % (self.seld.type, self.fr)
446 return "Property(%r)" % (self.seld.type,)
450 return "Property %s of %s" % (str(self.seld), str(self.fr))
452 return "Property %s" % str(self.seld)
457 # want is the type of this property
458 # which is the property name of this propert
    [all...]

Completed in 663 milliseconds

1 2 3 4 5 6 7