/frameworks/opt/bluetooth/src/android/bluetooth/client/map/ |
D | BluetoothMapBmessageParser.java | 32 import android.bluetooth.client.map.utils.BmsgTokenizer.Property; 46 private final static Property BEGIN_BMSG = new Property("BEGIN", "BMSG"); 47 private final static Property END_BMSG = new Property("END", "BMSG"); 49 private final static Property BEGIN_VCARD = new Property("BEGIN", "VCARD"); 50 private final static Property END_VCARD = new Property("END", "VCARD"); 52 private final static Property BEGIN_BENV = new Property("BEGIN", "BENV"); 53 private final static Property END_BENV = new Property("END", "BENV"); 55 private final static Property BEGIN_BBODY = new Property("BEGIN", "BBODY"); 56 private final static Property END_BBODY = new Property("END", "BBODY"); 58 private final static Property BEGIN_MSG = new Property("BEGIN", "MSG"); [all …]
|
/frameworks/base/libs/hwui/ |
D | VectorDrawable.cpp | 277 Property currentProperty = static_cast<Property>(propertyId); in setColorPropertyValue() 278 if (currentProperty == Property::strokeColor) { in setColorPropertyValue() 280 } else if (currentProperty == Property::fillColor) { in setColorPropertyValue() 289 Property property = static_cast<Property>(propertyId); in setPropertyValue() 291 case Property::strokeWidth: in setPropertyValue() 294 case Property::strokeAlpha: in setPropertyValue() 297 case Property::fillAlpha: in setPropertyValue() 300 case Property::trimPathStart: in setPropertyValue() 303 case Property::trimPathEnd: in setPropertyValue() 306 case Property::trimPathOffset: in setPropertyValue() [all …]
|
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/utils/ |
D | BmsgTokenizer.java | 35 static public class Property { class in BmsgTokenizer 39 public Property(String name, String value) { in Property() method in BmsgTokenizer.Property 57 … return ((o instanceof Property) && ((Property) o).name.equals(name) && ((Property) o).value in equals() 73 public Property next(boolean alwaysReturn) throws ParseException { in next() 94 return new Property(mMatcher.group(2), mMatcher.group(3)); in next() 97 public Property next() throws ParseException { in next()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/ |
D | TouchAnimator.java | 19 import android.util.Property; 146 private static Property getProperty(Object target, String property, Class<?> cls) { in getProperty() 172 return Property.of(target.getClass(), cls, property); in getProperty() 221 public static KeyframeSet ofInt(Property property, int... values) { in ofInt() 222 return new IntKeyframeSet((Property<?, Integer>) property, values); in ofInt() 225 public static KeyframeSet ofFloat(Property property, float... values) { in ofFloat() 226 return new FloatKeyframeSet((Property<?, Float>) property, values); in ofFloat() 232 private final Property<T, Float> mProperty; 234 public FloatKeyframeSet(Property<T, Float> property, float[] values) { in FloatKeyframeSet() 250 private final Property<T, Integer> mProperty; [all …]
|
/frameworks/av/services/audiopolicy/engineconfigurable/src/ |
D | Element.h | 73 template <typename Property> 74 Property get() const; 87 template <typename Property> 88 status_t set(Property property);
|
D | Usage.h | 67 template <typename Property> 68 Property get() const; 70 template <typename Property> 71 status_t set(Property property);
|
D | Stream.h | 68 template <typename Property> 69 Property get() const; 71 template <typename Property> 72 status_t set(Property property);
|
D | Strategy.h | 67 template <typename Property> 68 Property get() const; 70 template <typename Property> 71 status_t set(Property property);
|
D | InputSource.h | 67 template <typename Property> 68 Property get() const; 70 template <typename Property> 71 status_t set(Property property);
|
D | Engine.cpp | 130 template <typename Property, typename Key> 131 Property Engine::getPropertyForKey(Key key) const in getPropertyForKey() 136 return static_cast<Property>(0); in getPropertyForKey() 138 return element->template get<Property>(); in getPropertyForKey() 190 template <typename Property, typename Key> 191 bool Engine::setPropertyForKey(const Property &property, const Key &key) in setPropertyForKey() 198 return element->template set<Property>(property) == NO_ERROR; in setPropertyForKey()
|
D | Engine.h | 183 template <typename Property, typename Key> 184 Property getPropertyForKey(Key key) const; 186 template <typename Property, typename Key> 187 bool setPropertyForKey(const Property &property, const Key &key);
|
/frameworks/opt/calendar/src/com/android/calendarcommon2/ |
D | ICalendar.java | 76 private final LinkedHashMap<String, ArrayList<Property>> mPropsMap = 77 new LinkedHashMap<String, ArrayList<Property>>(); 137 public void addProperty(Property prop) { in addProperty() 139 ArrayList<Property> props = mPropsMap.get(name); in addProperty() 141 props = new ArrayList<Property>(); in addProperty() 161 public List<Property> getProperties(String name) { in getProperties() 171 public Property getFirstProperty(String name) { in getFirstProperty() 172 List<Property> props = mPropsMap.get(name); in getFirstProperty() 200 for (Property property : getProperties(propertyName)) { in toString() 224 public static class Property { class in ICalendar [all …]
|
D | RecurrenceSet.java | 193 ICalendar.Property dtstartProperty = in populateContentValues() 289 ICalendar.Property dtstartProp = new ICalendar.Property("DTSTART"); in populateComponent() 314 ICalendar.Property durationProp = new ICalendar.Property("DURATION"); in populateComponent() 348 ICalendar.Property dtstartProp = new ICalendar.Property("DTSTART"); in populateComponent() 373 ICalendar.Property durationProp = new ICalendar.Property("DURATION"); in populateComponent() 392 ICalendar.Property prop = new ICalendar.Property(propertyName); in addPropertiesForRuleStr() 451 ICalendar.Property prop = new ICalendar.Property(propertyName); in addPropertyForDateStr() 468 ICalendar.Property durationProperty = in computeDuration() 476 ICalendar.Property dtendProperty = in computeDuration() 501 List<ICalendar.Property> properties = component.getProperties(name); in flattenProperties() [all …]
|
/frameworks/base/core/java/android/animation/ |
D | ObjectAnimator.java | 25 import android.util.Property; 84 private Property mProperty; 136 public void setProperty(@NonNull Property property) { in setProperty() 223 private <T> ObjectAnimator(T target, Property<T, ?> property) { in ObjectAnimator() 289 public static <T> ObjectAnimator ofInt(T target, Property<T, Integer> property, int... values) { in ofInt() 308 public static <T> ObjectAnimator ofInt(T target, Property<T, Integer> xProperty, in ofInt() 309 Property<T, Integer> yProperty, Path path) { in ofInt() 420 public static <T> ObjectAnimator ofArgb(T target, Property<T, Integer> property, in ofArgb() 488 public static <T> ObjectAnimator ofFloat(T target, Property<T, Float> property, in ofFloat() 508 public static <T> ObjectAnimator ofFloat(T target, Property<T, Float> xProperty, in ofFloat() [all …]
|
D | PropertyValuesHolder.java | 25 import android.util.Property; 50 protected Property mProperty; 142 private PropertyValuesHolder(Property property) { in PropertyValuesHolder() 167 public static PropertyValuesHolder ofInt(Property<?, Integer> property, int... values) { in ofInt() argument 286 public static PropertyValuesHolder ofFloat(Property<?, Float> property, float... values) { in ofFloat() argument 454 public static <V> PropertyValuesHolder ofObject(Property property, in ofObject() 487 public static <T, V> PropertyValuesHolder ofObject(Property<?, V> property, in ofObject() argument 512 public static <V> PropertyValuesHolder ofObject(Property<?, V> property, in ofObject() argument 561 public static PropertyValuesHolder ofKeyframe(Property property, Keyframe... values) { in ofKeyframe() 580 static PropertyValuesHolder ofKeyframes(Property property, Keyframes keyframes) { in ofKeyframes() [all …]
|
/frameworks/base/core/java/android/util/ |
D | Property.java | 28 public abstract class Property<T, V> { class 54 public static <T, V> Property<T, V> of(Class<T> hostType, Class<V> valueType, String name) { in of() 61 public Property(Class<V> type, String name) { in Property() method in Property
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/ |
D | DividerHandleView.java | 28 import android.util.Property; 39 private final static Property<DividerHandleView, Integer> WIDTH_PROPERTY 40 = new Property<DividerHandleView, Integer>(Integer.class, "width") { 54 private final static Property<DividerHandleView, Integer> HEIGHT_PROPERTY 55 = new Property<DividerHandleView, Integer>(Integer.class, "height") {
|
/frameworks/base/core/java/android/transition/ |
D | ChangeBounds.java | 36 import android.util.Property; 68 private static final Property<Drawable, PointF> DRAWABLE_ORIGIN_PROPERTY = 69 new Property<Drawable, PointF>(PointF.class, "boundsOrigin") { 86 private static final Property<ViewBounds, PointF> TOP_LEFT_PROPERTY = 87 new Property<ViewBounds, PointF>(PointF.class, "topLeft") { 99 private static final Property<ViewBounds, PointF> BOTTOM_RIGHT_PROPERTY = 100 new Property<ViewBounds, PointF>(PointF.class, "bottomRight") { 112 private static final Property<View, PointF> BOTTOM_RIGHT_ONLY_PROPERTY = 113 new Property<View, PointF>(PointF.class, "bottomRight") { 129 private static final Property<View, PointF> TOP_LEFT_ONLY_PROPERTY = [all …]
|
D | ChangeImageTransform.java | 26 import android.util.Property; 60 private static Property<ImageView, Matrix> ANIMATED_TRANSFORM_PROPERTY 61 = new Property<ImageView, Matrix>(Matrix.class, "animatedTransform") {
|
/frameworks/support/v17/leanback/kitkat/android/support/v17/leanback/transition/ |
D | SlideKitkat.java | 29 import android.util.Property; 62 Property<View, Float> getProperty(); in getProperty() 75 public Property<View, Float> getProperty() { in getProperty() 90 public Property<View, Float> getProperty() { in getProperty() 213 private Animator createAnimation(final View view, Property<View, Float> property, in createAnimation() 267 private final Property<View, Float> mProp; 269 public SlideAnimatorListener(View view, Property<View, Float> prop, in SlideAnimatorListener()
|
/frameworks/base/graphics/java/android/graphics/drawable/ |
D | VectorDrawable.java | 42 import android.util.Property; 839 final static Property<VectorDrawableState, Float> ALPHA = 852 Property getProperty(String propertyName) { in getProperty() 1070 private static final Property<VGroup, Float> TRANSLATE_X = 1083 private static final Property<VGroup, Float> TRANSLATE_Y = 1096 private static final Property<VGroup, Float> SCALE_X = 1109 private static final Property<VGroup, Float> SCALE_Y = 1122 private static final Property<VGroup, Float> PIVOT_X = 1135 private static final Property<VGroup, Float> PIVOT_Y = 1148 private static final Property<VGroup, Float> ROTATION = [all …]
|
/frameworks/base/media/java/android/mtp/ |
D | MtpPropertyGroup.java | 35 private class Property { class in MtpPropertyGroup 43 Property(int code, int type, int column) { in Property() method in MtpPropertyGroup.Property 56 private final Property[] mProperties; 78 mProperties = new Property[count]; in MtpPropertyGroup() 89 private Property createProperty(int code, ArrayList<String> columns) { in createProperty() 192 return new Property(code, type, columns.size() - 1); in createProperty() 194 return new Property(code, type, -1); in createProperty() 355 Property property = mProperties[propertyIndex]; in getPropertyList()
|
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/ |
D | PagingIndicator.java | 38 import android.util.Property; 55 private static final Property<Dot, Float> DOT_ALPHA 56 = new Property<Dot, Float>(Float.class, "alpha") { 68 private static final Property<Dot, Float> DOT_DIAMETER 69 = new Property<Dot, Float>(Float.class, "diameter") { 81 private static final Property<Dot, Float> DOT_TRANSLATION_X 82 = new Property<Dot, Float>(Float.class, "translation_x") {
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/ |
D | Utilities.java | 34 import android.util.Property; 51 public static final Property<Drawable, Integer> DRAWABLE_ALPHA = 64 public static final Property<Drawable, Rect> DRAWABLE_RECT = 65 new Property<Drawable, Rect>(Rect.class, "drawableBounds") {
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/ |
D | TaskViewTransform.java | 25 import android.util.Property; 37 public static final Property<View, Rect> LTRB = 38 new Property<View, Rect>(Rect.class, "leftTopRightBottom") {
|