/frameworks/base/core/java/android/animation/ |
D | ObjectAnimator.java | 79 public void setPropertyName(String propertyName) { in setPropertyName() argument 85 valuesHolder.setPropertyName(propertyName); in setPropertyName() 87 mValuesMap.put(propertyName, valuesHolder); in setPropertyName() 89 mPropertyName = propertyName; in setPropertyName() 136 String propertyName = null; in getPropertyName() local 138 propertyName = mPropertyName; in getPropertyName() 140 propertyName = mProperty.getName(); in getPropertyName() 144 propertyName = ""; in getPropertyName() 146 propertyName += ","; in getPropertyName() 148 propertyName += mValues[i].getPropertyName(); in getPropertyName() [all …]
|
D | PropertyValuesHolder.java | 130 private PropertyValuesHolder(String propertyName) { in PropertyValuesHolder() argument 131 mPropertyName = propertyName; in PropertyValuesHolder() 152 public static PropertyValuesHolder ofInt(String propertyName, int... values) { in ofInt() argument 153 return new IntPropertyValuesHolder(propertyName, values); in ofInt() 174 public static PropertyValuesHolder ofFloat(String propertyName, float... values) { in ofFloat() argument 175 return new FloatPropertyValuesHolder(propertyName, values); in ofFloat() 201 public static PropertyValuesHolder ofObject(String propertyName, TypeEvaluator evaluator, in ofObject() argument 203 PropertyValuesHolder pvh = new PropertyValuesHolder(propertyName); in ofObject() 248 public static PropertyValuesHolder ofKeyframe(String propertyName, Keyframe... values) { in ofKeyframe() argument 251 return new IntPropertyValuesHolder(propertyName, (IntKeyframeSet) keyframeSet); in ofKeyframe() [all …]
|
D | AnimatorInflater.java | 166 … String propertyName = a.getString(com.android.internal.R.styleable.PropertyAnimator_propertyName); in loadObjectAnimator() local 168 anim.setPropertyName(propertyName); in loadObjectAnimator()
|
D | ValueAnimator.java | 754 public Object getAnimatedValue(String propertyName) { in getAnimatedValue() argument 755 PropertyValuesHolder valuesHolder = mValuesMap.get(propertyName); in getAnimatedValue()
|
/frameworks/opt/vcard/java/com/android/vcard/ |
D | VCardSourceDetector.java | 103 final String propertyName = property.getName(); in onPropertyCreated() local 106 if (propertyName.equalsIgnoreCase(VCardConstants.PROPERTY_VERSION) in onPropertyCreated() 118 } else if (propertyName.equalsIgnoreCase(TYPE_FOMA_CHARSET_SIGN)) { in onPropertyCreated() 127 if (WINDOWS_MOBILE_PHONE_SIGNS.contains(propertyName)) { in onPropertyCreated() 129 } else if (FOMA_SIGNS.contains(propertyName)) { in onPropertyCreated() 131 } else if (JAPANESE_MOBILE_PHONE_SIGNS.contains(propertyName)) { in onPropertyCreated() 133 } else if (APPLE_SIGNS.contains(propertyName)) { in onPropertyCreated()
|
D | VCardParserImpl_V21.java | 167 protected boolean isValidPropertyName(final String propertyName) { in isValidPropertyName() argument 168 if (!(getKnownPropertyNameSet().contains(propertyName.toUpperCase()) || in isValidPropertyName() 169 propertyName.startsWith("X-")) in isValidPropertyName() 170 && !mUnknownTypeSet.contains(propertyName)) { in isValidPropertyName() 171 mUnknownTypeSet.add(propertyName); in isValidPropertyName() 172 Log.w(LOG_TAG, "Property name unsupported by vCard 2.1: " + propertyName); in isValidPropertyName() 381 final String propertyName = line.substring(nameIndex, i); in constructPropertyData() local 382 propertyData.setName(propertyName); in constructPropertyData() 394 final String propertyName = line.substring(nameIndex, i); in constructPropertyData() 395 propertyData.setName(propertyName); in constructPropertyData() [all …]
|
D | VCardBuilder.java | 1219 final String propertyName = VCardUtils.getPropertyNameForIm(protocolAsObject); in appendIms() local 1220 if (propertyName == null) { in appendIms() 1266 appendLineWithCharsetAndQPDetection(propertyName, parameterList, data); in appendIms() 1842 final String propertyName; in appendSipAddresses() local 1846 propertyName = VCardConstants.PROPERTY_TEL; in appendSipAddresses() 1849 propertyName = VCardConstants.PROPERTY_IMPP; in appendSipAddresses() 1851 appendLineWithCharsetAndQPDetection(propertyName, sipAddress); in appendSipAddresses() 1906 public void appendLineWithCharsetAndQPDetection(final String propertyName, in appendLineWithCharsetAndQPDetection() argument 1908 appendLineWithCharsetAndQPDetection(propertyName, null, rawValue); in appendLineWithCharsetAndQPDetection() 1912 final String propertyName, final List<String> rawValueList) { in appendLineWithCharsetAndQPDetection() argument [all …]
|
D | VCardEntry.java | 2125 final String propertyName = property.getName(); in addProperty() local 2138 if (propertyName.equals(VCardConstants.PROPERTY_VERSION)) { in addProperty() 2140 } else if (propertyName.equals(VCardConstants.PROPERTY_FN)) { in addProperty() 2142 } else if (propertyName.equals(VCardConstants.PROPERTY_NAME)) { in addProperty() 2148 } else if (propertyName.equals(VCardConstants.PROPERTY_N)) { in addProperty() 2150 } else if (propertyName.equals(VCardConstants.PROPERTY_SORT_STRING)) { in addProperty() 2152 } else if (propertyName.equals(VCardConstants.PROPERTY_NICKNAME) in addProperty() 2153 || propertyName.equals(VCardConstants.ImportOnly.PROPERTY_X_NICKNAME)) { in addProperty() 2155 } else if (propertyName.equals(VCardConstants.PROPERTY_SOUND)) { in addProperty() 2169 } else if (propertyName.equals(VCardConstants.PROPERTY_ADR)) { in addProperty() [all …]
|
/frameworks/base/core/java/android/os/ |
D | Debug.java | 1400 final String propertyName) { in modifyFieldIfSet() argument 1402 int stringInfo = properties.getStringInfo(propertyName); in modifyFieldIfSet() 1412 "Cannot set field for " + propertyName, ex); in modifyFieldIfSet() 1419 "Type of " + propertyName + " " + in modifyFieldIfSet() 1423 "Unexpected getStringInfo(" + propertyName + ") return value " + in modifyFieldIfSet() 1427 Object value = properties.get(propertyName); in modifyFieldIfSet() 1431 "Type of " + propertyName + " (" + value.getClass() + ") " + in modifyFieldIfSet() 1438 "Cannot set field for " + propertyName, ex); in modifyFieldIfSet() 1518 final String propertyName = cl.getName() + "." + field.getName(); in setFieldsOn() local 1523 throw new IllegalArgumentException(propertyName + in setFieldsOn() [all …]
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/ |
D | BridgeRenderSession.java | 72 public Result getProperty(Object objectView, String propertyName) { in getProperty() argument 74 return super.getProperty(objectView, propertyName); in getProperty() 78 public Result setProperty(Object objectView, String propertyName, String propertyValue) { in setProperty() argument 80 return super.setProperty(objectView, propertyName, propertyValue); in setProperty()
|
/frameworks/base/media/java/android/media/ |
D | MediaDrm.java | 532 public native String getPropertyString(String propertyName); in getPropertyString() argument 546 public native byte[] getPropertyByteArray(String propertyName); in getPropertyByteArray() argument 552 public native void setPropertyString(String propertyName, String value); in setPropertyString() argument 557 public native void setPropertyByteArray(String propertyName, byte[] value); in setPropertyByteArray() argument
|
/frameworks/base/core/java/com/android/internal/util/ |
D | TypedProperties.java | 182 final String propertyName = st.sval; in parse() local 183 if (!propertyNamePattern.matcher(propertyName).matches()) { in parse() 194 map.remove(propertyName); in parse() 204 final Object oldValue = map.remove(propertyName); in parse() 213 map.put(propertyName, value); in parse()
|
/frameworks/base/docs/html/training/animation/ |
D | cardflip.jd | 103 android:propertyName="alpha" 110 android:propertyName="rotationY" 118 android:propertyName="alpha" 132 android:propertyName="rotationY" 140 android:propertyName="alpha" 154 android:propertyName="alpha" 161 android:propertyName="rotationY" 169 android:propertyName="alpha" 184 android:propertyName="rotationY" 192 android:propertyName="alpha"
|
/frameworks/opt/calendar/src/com/android/calendarcommon2/ |
D | RecurrenceSet.java | 385 String propertyName, in addPropertiesForRuleStr() argument 392 ICalendar.Property prop = new ICalendar.Property(propertyName); in addPropertiesForRuleStr() 445 String propertyName, in addPropertyForDateStr() argument 451 ICalendar.Property prop = new ICalendar.Property(propertyName); in addPropertyForDateStr()
|
D | ICalendar.java | 199 for (String propertyName : getPropertyNames()) { in toString() 200 for (Property property : getProperties(propertyName)) { in toString()
|
/frameworks/base/docs/html/guide/topics/resources/ |
D | animation-resource.jd | 73 android:propertyName="<em>string</em>" 138 <code>android:propertyName</code> 302 android:propertyName="x" 307 android:propertyName="y" 313 android:propertyName="alpha"
|
/frameworks/base/docs/html/guide/topics/graphics/ |
D | prop-animation.jd | 447 <code>set<propertyName>()</code>. Because the {@link android.animation.ObjectAnimator} 467 form of <code>get<propertyName>()</code>. For example, if the property name is 946 android:propertyName="x" 951 android:propertyName="y" 957 android:propertyName="alpha"
|
/frameworks/base/api/ |
D | current.txt | 851 field public static final int propertyName = 16843489; // 0x10102e1
|