/frameworks/opt/bluetooth/src/android/bluetooth/client/map/ |
D | BluetoothMapBmessageParser.java | 32 import android.bluetooth.client.map.utils.BmsgTokenizer.Property; 44 private final static Property BEGIN_BMSG = new Property("BEGIN", "BMSG"); 45 private final static Property END_BMSG = new Property("END", "BMSG"); 47 private final static Property BEGIN_VCARD = new Property("BEGIN", "VCARD"); 48 private final static Property END_VCARD = new Property("END", "VCARD"); 50 private final static Property BEGIN_BENV = new Property("BEGIN", "BENV"); 51 private final static Property END_BENV = new Property("END", "BENV"); 53 private final static Property BEGIN_BBODY = new Property("BEGIN", "BBODY"); 54 private final static Property END_BBODY = new Property("END", "BBODY"); 56 private final static Property BEGIN_MSG = new Property("BEGIN", "MSG"); [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/opt/bluetooth/src/android/bluetooth/client/pbap/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/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 | InputSource.h | 67 template <typename Property> 68 Property get() const; 70 template <typename Property> 71 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 | Stream.h | 76 template <typename Property> 77 Property get() const; 79 template <typename Property> 80 status_t set(Property property);
|
D | Engine.cpp | 144 template <typename Property, typename Key> 145 Property Engine::getPropertyForKey(Key key) const in getPropertyForKey() 150 return static_cast<Property>(0); in getPropertyForKey() 152 return element->template get<Property>(); in getPropertyForKey() 191 template <typename Property, typename Key> 192 bool Engine::setPropertyForKey(const Property &property, const Key &key) in setPropertyForKey() 199 return element->template set<Property>(property) == NO_ERROR; in setPropertyForKey()
|
D | Engine.h | 208 template <typename Property, typename Key> 209 Property getPropertyForKey(Key key) const; 211 template <typename Property, typename Key> 212 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/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
|
D | FloatProperty.java | 18 import android.util.Property; 31 public abstract class FloatProperty<T> extends Property<T, Float> {
|
D | IntProperty.java | 18 import android.util.Property; 31 public abstract class IntProperty<T> extends Property<T, Integer> {
|
/frameworks/base/core/java/android/animation/ |
D | ObjectAnimator.java | 25 import android.util.Property; 82 private Property mProperty; 134 public void setProperty(@NonNull Property property) { in setProperty() 221 private <T> ObjectAnimator(T target, Property<T, ?> property) { in ObjectAnimator() 285 public static <T> ObjectAnimator ofInt(T target, Property<T, Integer> property, int... values) { in ofInt() 304 public static <T> ObjectAnimator ofInt(T target, Property<T, Integer> xProperty, in ofInt() 305 Property<T, Integer> yProperty, Path path) { in ofInt() 413 public static <T> ObjectAnimator ofArgb(T target, Property<T, Integer> property, in ofArgb() 479 public static <T> ObjectAnimator ofFloat(T target, Property<T, Float> property, in ofFloat() 499 public static <T> ObjectAnimator ofFloat(T target, Property<T, Float> xProperty, in ofFloat() [all …]
|
D | PropertyValuesHolder.java | 24 import android.util.Property; 49 protected Property mProperty; 141 private PropertyValuesHolder(Property property) { in PropertyValuesHolder() 166 public static PropertyValuesHolder ofInt(Property<?, Integer> property, int... values) { in ofInt() argument 284 public static PropertyValuesHolder ofFloat(Property<?, Float> property, float... values) { in ofFloat() argument 440 public static <V> PropertyValuesHolder ofObject(Property property, in ofObject() 467 public static <T, V> PropertyValuesHolder ofObject(Property<?, V> property, in ofObject() argument 492 public static <V> PropertyValuesHolder ofObject(Property<?, V> property, in ofObject() argument 541 public static PropertyValuesHolder ofKeyframe(Property property, Keyframe... values) { in ofKeyframe() 560 static PropertyValuesHolder ofKeyframes(Property property, Keyframes keyframes) { in ofKeyframes() [all …]
|
/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") {
|
D | ChangeTransform.java | 29 import android.util.Property; 65 private static final Property<PathAnimatorMatrix, float[]> NON_TRANSLATIONS_PROPERTY = 66 new Property<PathAnimatorMatrix, float[]>(float[].class, "nonTranslations") { 81 private static final Property<PathAnimatorMatrix, PointF> TRANSLATIONS_PROPERTY = 82 new Property<PathAnimatorMatrix, PointF>(PointF.class, "translations") {
|
/frameworks/support/v17/leanback/kitkat/android/support/v17/leanback/transition/ |
D | SlideKitkat.java | 29 import android.util.Property; 63 Property<View, Float> getProperty(); in getProperty() 73 public Property<View, Float> getProperty() { in getProperty() 85 public Property<View, Float> getProperty() { in getProperty() 208 private Animator createAnimation(final View view, Property<View, Float> property, in createAnimation() 262 private final Property<View, Float> mProp; 264 public SlideAnimatorListener(View view, Property<View, Float> prop, in SlideAnimatorListener()
|
/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 57 private final Property[] mProperties; 80 mProperties = new Property[count]; in MtpPropertyGroup() 91 private Property createProperty(int code, ArrayList<String> columns) { in createProperty() 194 return new Property(code, type, columns.size() - 1); in createProperty() 196 return new Property(code, type, -1); in createProperty() 357 Property property = mProperties[propertyIndex]; in getPropertyList()
|
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/ |
D | StreamingTextView.java | 30 import android.util.Property; 58 private static final Property<StreamingTextView,Integer> STREAM_POSITION_PROPERTY = 59 new Property<StreamingTextView,Integer>(Integer.class, "streamPosition") {
|
/frameworks/native/include/input/ |
D | KeyCharacterMap.h | 184 struct Property { struct 185 inline Property(int32_t property = 0, int32_t metaState = 0) :
|
/frameworks/base/docs/html/training/transitions/ |
D | custom-transitions.jd | 10 <li><a href="#CaptureProperties">Capture View Property Values</a></li> 57 <h2 id="CaptureProperties">Capture View Property Values</h2> 60 <a href="{@docRoot}guide/topics/graphics/prop-animation.html">Property Animation</a>. Property 181 <a href="{@docRoot}guide/topics/graphics/prop-animation.html">Property Animation</a>.</p>
|