/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> {
|
D | ReflectiveProperty.java | 26 class ReflectiveProperty<T, V> extends Property<T, V> {
|
/frameworks/base/core/java/android/animation/ |
D | ObjectAnimator.java | 20 import android.util.Property; 49 private Property mProperty; 101 public void setProperty(Property property) { in setProperty() 159 private <T> ObjectAnimator(T target, Property<T, ?> property) { in ObjectAnimator() 196 public static <T> ObjectAnimator ofInt(T target, Property<T, Integer> property, int... values) { in ofInt() 234 public static <T> ObjectAnimator ofFloat(T target, Property<T, Float> property, in ofFloat() 281 public static <T, V> ObjectAnimator ofObject(T target, Property<T, V> property, in ofObject()
|
D | PropertyValuesHolder.java | 22 import android.util.Property; 47 protected Property mProperty; 138 private PropertyValuesHolder(Property property) { in PropertyValuesHolder() 163 public static PropertyValuesHolder ofInt(Property<?, Integer> property, int... values) { in ofInt() argument 185 public static PropertyValuesHolder ofFloat(Property<?, Float> property, float... values) { in ofFloat() argument 221 public static <V> PropertyValuesHolder ofObject(Property property, in ofObject() 279 public static PropertyValuesHolder ofKeyframe(Property property, Keyframe... values) { in ofKeyframe() 690 public void setProperty(Property property) { in setProperty() 761 public IntPropertyValuesHolder(Property property, IntKeyframeSet keyframeSet) { in IntPropertyValuesHolder() 776 public IntPropertyValuesHolder(Property property, int... values) { in IntPropertyValuesHolder() [all …]
|
/frameworks/base/media/java/android/mtp/ |
D | MtpPropertyGroup.java | 36 private class Property { class in MtpPropertyGroup 44 Property(int code, int type, int column) { in Property() method in MtpPropertyGroup.Property 58 private final Property[] mProperties; 81 mProperties = new Property[count]; in MtpPropertyGroup() 92 private Property createProperty(int code, ArrayList<String> columns) { in createProperty() 184 return new Property(code, type, columns.size() - 1); in createProperty() 186 return new Property(code, type, -1); in createProperty() 347 Property property = mProperties[propertyIndex]; in getPropertyList()
|
/frameworks/base/include/androidfw/ |
D | KeyCharacterMap.h | 184 struct Property { struct 185 inline Property(int32_t property = 0, int32_t metaState = 0) :
|
/frameworks/base/libs/androidfw/ |
D | KeyCharacterMap.cpp | 882 Vector<Property> properties; in parseKeyProperty() 887 properties.add(Property(PROPERTY_LABEL)); in parseKeyProperty() 889 properties.add(Property(PROPERTY_NUMBER)); in parseKeyProperty() 898 properties.add(Property(PROPERTY_META, metaState)); in parseKeyProperty() 980 const Property& property = properties.itemAt(i); in parseKeyProperty()
|
/frameworks/base/docs/html/distribute/ |
D | distribute_toc.cs | 61 …ref="<?cs var:toroot ?>distribute/googleplay/policies/ip.html">Intellectual<br />Property</a></li>
|
/frameworks/base/docs/html/distribute/googleplay/policies/ |
D | index.jd | 42 Intellectual Property
|
/frameworks/base/docs/html/training/animation/ |
D | index.jd | 24 <a href="{@docRoot}guide/topics/graphics/prop-animation.html">Property Animation</a>
|
/frameworks/base/docs/html/training/custom-views/ |
D | index.jd | 22 <li><a href="{@docRoot}guide/topics/graphics/prop-animation.html">Property
|
D | making-interactive.jd | 26 <li><a href="{@docRoot}guide/topics/graphics/prop-animation.html">Property Animation</a>
|
/frameworks/base/docs/html/guide/topics/resources/ |
D | animation-resource.jd | 10 <li><a href="#Property">Property Animation</a></li> 21 <li><a href="{@docRoot}guide/topics/graphics/prop-animation.html">Property Animation</a></li> 30 <dt><a href="#Property">Property Animation</a></dt> 46 <h2 id="Property">Property Animation</h2> 337 <li><a href="{@docRoot}guide/topics/graphics/prop-animation.html">Property Animation</a></li>
|
/frameworks/base/services/java/com/android/server/accessibility/ |
D | ScreenMagnifier.java | 37 import android.util.Property; 965 Property<MagnificationController, MagnificationSpec> property = in MagnificationController() 966 Property.of(MagnificationController.class, MagnificationSpec.class, in MagnificationController()
|
/frameworks/base/docs/html/guide/topics/graphics/ |
D | overview.jd | 18 <dt><strong><a href="{@docRoot}guide/topics/graphics/prop-animation.html">Property
|
D | prop-animation.jd | 1 page.title=Property Animation 10 <li><a href="#how">How Property Animation Works</a></li> 90 <h2 id="how">How Property Animation Works</h2> 169 <h2 id="property-vs-view">How Property Animation Differs from View Animation</h2> 976 href="{@docRoot}guide/topics/resources/animation-resource.html#Property">Animation Resources</a>.
|
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/ |
D | SlidingChallengeLayout.java | 33 import android.util.Property; 135 static final Property<SlidingChallengeLayout, Float> HANDLE_ALPHA =
|
/frameworks/base/docs/html/tools/help/ |
D | MonkeyDevice.jd | 625 <a href="#table1">Table 1. Property variable names</a> at the end of this topic. 665 <a href="#table1">Table 1. Property Variable Names</a>. 1169 <strong>Table 1.</strong>Property variable names used with 1176 Property Group 1179 Property
|
/frameworks/base/docs/html/tools/devices/ |
D | managing-avds.jd | 89 <th>Property</th>
|
/frameworks/base/core/java/android/view/ |
D | View.java | 57 import android.util.Property; 17405 public static final Property<View, Float> ALPHA = new FloatProperty<View>("alpha") { 17421 …public static final Property<View, Float> TRANSLATION_X = new FloatProperty<View>("translationX") { 17437 …public static final Property<View, Float> TRANSLATION_Y = new FloatProperty<View>("translationY") { 17453 public static final Property<View, Float> X = new FloatProperty<View>("x") { 17469 public static final Property<View, Float> Y = new FloatProperty<View>("y") { 17485 public static final Property<View, Float> ROTATION = new FloatProperty<View>("rotation") { 17501 public static final Property<View, Float> ROTATION_X = new FloatProperty<View>("rotationX") { 17517 public static final Property<View, Float> ROTATION_Y = new FloatProperty<View>("rotationY") { 17533 public static final Property<View, Float> SCALE_X = new FloatProperty<View>("scaleX") { [all …]
|
/frameworks/base/docs/html/sdk/ |
D | terms.jd | 34 …n and to the SDK, including any Intellectual Property Rights that subsist in the SDK. "Intellectua…
|