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

/frameworks/base/core/java/android/util/
H A DProperty.java21 * in a <em>host</em> object. The Property's {@link #set(Object, Object)} or {@link #get(Object)}
28 public abstract class Property<T, V> { class
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
54 public static <T, V> Property<T, V> of(Class<T> hostType, Class<V> valueType, String name) {
61 public Property(Class<V> type, String name) { method in class:Property
69 * NoSuchPropertyException} exception). This may happen if the Property wraps functionality that
71 * Class, String)} factory method may return a Property with name "foo" for an object that has
85 throw new UnsupportedOperationException("Property " + getName() +" is read-only");
/frameworks/base/media/java/android/mtp/
H A DMtpPropertyGroup.java36 private class Property { class in class:MtpPropertyGroup
44 Property(int code, int type, int column) { method in class:MtpPropertyGroup.Property
57 private final Property[] mProperties;
79 mProperties = new Property[count];
90 private Property createProperty(int code, ArrayList<String> columns) {
182 return new Property(code, type, columns.size() - 1);
184 return new Property(code, type, -1);
345 Property property = mProperties[propertyIndex];
/frameworks/base/include/androidfw/
H A DKeyCharacterMap.h184 struct Property { struct in class:android::KeyCharacterMap::Parser
185 inline Property(int32_t property = 0, int32_t metaState = 0) : function in struct:android::KeyCharacterMap::Parser::Property
/frameworks/opt/calendar/src/com/android/calendarcommon2/
H A DICalendar.java76 private final LinkedHashMap<String, ArrayList<Property>> mPropsMap =
77 new LinkedHashMap<String, ArrayList<Property>>();
134 * Adds a Property to this component.
137 public void addProperty(Property prop) {
139 ArrayList<Property> props = mPropsMap.get(name);
141 props = new ArrayList<Property>();
161 public List<Property> getProperties(String name) {
171 public Property getFirstProperty(String name) {
172 List<Property> props = mPropsMap.get(name);
200 for (Property propert
224 public static class Property { class in class:ICalendar
245 public Property(String name) { method in class:ICalendar.Property
254 public Property(String name, String value) { method in class:ICalendar.Property
[all...]

Completed in 255 milliseconds