Searched defs:Property (Results 1 - 8 of 8) 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/opt/bluetooth/src/android/bluetooth/client/map/utils/
H A DBmsgTokenizer.java35 static public class Property { class in class:BmsgTokenizer
39 public Property(String name, String value) { method in class:BmsgTokenizer.Property
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 {
/frameworks/opt/bluetooth/src/android/bluetooth/client/pbap/utils/
H A DBmsgTokenizer.java35 static public class Property { class in class:BmsgTokenizer
39 public Property(String name, String value) { method in class:BmsgTokenizer.Property
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 {
/frameworks/base/media/java/android/mtp/
H A DMtpPropertyGroup.java35 private class Property { class in class:MtpPropertyGroup
43 Property(int code, int type, int column) { method in class:MtpPropertyGroup.Property
57 private final Property[] mProperties;
80 mProperties = new Property[count];
91 private Property createProperty(int code, ArrayList<String> columns) {
194 return new Property(code, type, columns.size() - 1);
196 return new Property(code, type, -1);
357 Property property = mProperties[propertyIndex];
/frameworks/base/core/java/android/animation/
H A DObjectAnimator.java25 import android.util.Property;
62 * <a href="{@docRoot}guide/topics/graphics/prop-animation.html#object-animator">Property
82 private Property mProperty;
128 * Sets the property that will be animated. Property objects will take precedence over
134 public void setProperty(@NonNull Property property) {
160 * <p>If this animator was created with a {@link Property} object instead of the
162 * Property#getName() name} of that Property object instead. If this animator was
221 private <T> ObjectAnimator(T target, Property<T, ?> property) {
285 public static <T> ObjectAnimator ofInt(T target, Property<
698 ofObject(T target, @NonNull Property<T, V> property, @Nullable TypeConverter<PointF, V> converter, Path path) argument
[all...]
/frameworks/native/include/input/
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...]
/frameworks/base/core/java/android/widget/
H A DFastScroller.java37 import android.util.Property;
1568 Property<View, Float> property, float value, View... views) {
1599 * A Property wrapper around the <code>left</code> functionality handled by the
1602 private static Property<View, Integer> LEFT = new IntProperty<View>("left") {
1615 * A Property wrapper around the <code>top</code> functionality handled by the
1618 private static Property<View, Integer> TOP = new IntProperty<View>("top") {
1631 * A Property wrapper around the <code>right</code> functionality handled by the
1634 private static Property<View, Integer> RIGHT = new IntProperty<View>("right") {
1647 * A Property wrapper around the <code>bottom</code> functionality handled by the
1650 private static Property<Vie
1567 groupAnimatorOfFloat( Property<View, Float> property, float value, View... views) argument
[all...]

Completed in 5141 milliseconds