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/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
56 private final Property[] mProperties;
78 mProperties = new Property[count];
89 private Property createProperty(int code, ArrayList<String> columns) {
192 return new Property(code, type, columns.size() - 1);
194 return new Property(code, type, -1);
355 Property property = mProperties[propertyIndex];
/frameworks/base/core/java/android/animation/
H A DObjectAnimator.java25 import android.util.Property;
64 * <a href="{@docRoot}guide/topics/graphics/prop-animation.html#object-animator">Property
84 private Property mProperty;
130 * Sets the property that will be animated. Property objects will take precedence over
136 public void setProperty(@NonNull Property property) {
162 * <p>If this animator was created with a {@link Property} object instead of the
164 * Property#getName() name} of that Property object instead. If this animator was
223 private <T> ObjectAnimator(T target, Property<T, ?> property) {
289 public static <T> ObjectAnimator ofInt(T target, Property<
728 ofObject(T target, @NonNull Property<T, V> property, @Nullable TypeConverter<PointF, V> converter, Path path) argument
[all...]
/frameworks/native/include/input/
H A DKeyCharacterMap.h195 struct Property { struct in class:android::KeyCharacterMap::Parser
196 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;
1577 Property<View, Float> property, float value, View... views) {
1608 * A Property wrapper around the <code>left</code> functionality handled by the
1611 private static Property<View, Integer> LEFT = new IntProperty<View>("left") {
1624 * A Property wrapper around the <code>top</code> functionality handled by the
1627 private static Property<View, Integer> TOP = new IntProperty<View>("top") {
1640 * A Property wrapper around the <code>right</code> functionality handled by the
1643 private static Property<View, Integer> RIGHT = new IntProperty<View>("right") {
1656 * A Property wrapper around the <code>bottom</code> functionality handled by the
1659 private static Property<Vie
1576 groupAnimatorOfFloat( Property<View, Float> property, float value, View... views) argument
[all...]
/frameworks/base/libs/hwui/
H A DVectorDrawable.h336 enum class Property { class in class:android::uirenderer::VectorDrawable::FullPath::FullPathProperties
480 enum class Property { class in class:android::uirenderer::VectorDrawable::Group::GroupProperties

Completed in 238 milliseconds