/frameworks/base/core/java/android/animation/ |
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 | ObjectAnimator.java | 71 public void setPropertyName(String propertyName) { in setPropertyName() argument 77 valuesHolder.setPropertyName(propertyName); in setPropertyName() 79 mValuesMap.put(propertyName, valuesHolder); in setPropertyName() 81 mPropertyName = propertyName; in setPropertyName() 140 private ObjectAnimator(Object target, String propertyName) { in ObjectAnimator() argument 142 setPropertyName(propertyName); in ObjectAnimator() 170 public static ObjectAnimator ofInt(Object target, String propertyName, int... values) { in ofInt() argument 171 ObjectAnimator anim = new ObjectAnimator(target, propertyName); in ofInt() 208 public static ObjectAnimator ofFloat(Object target, String propertyName, float... values) { in ofFloat() argument 209 ObjectAnimator anim = new ObjectAnimator(target, propertyName); in ofFloat() [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 | 760 public Object getAnimatedValue(String propertyName) { in getAnimatedValue() argument 761 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 | 1220 final String propertyName = VCardUtils.getPropertyNameForIm(protocolAsObject); in appendIms() local 1221 if (propertyName == null) { in appendIms() 1267 appendLineWithCharsetAndQPDetection(propertyName, parameterList, data); in appendIms() 1843 final String propertyName; in appendSipAddresses() local 1847 propertyName = VCardConstants.PROPERTY_TEL; in appendSipAddresses() 1850 propertyName = VCardConstants.PROPERTY_IMPP; in appendSipAddresses() 1852 appendLineWithCharsetAndQPDetection(propertyName, sipAddress); in appendSipAddresses() 1907 public void appendLineWithCharsetAndQPDetection(final String propertyName, in appendLineWithCharsetAndQPDetection() argument 1909 appendLineWithCharsetAndQPDetection(propertyName, null, rawValue); in appendLineWithCharsetAndQPDetection() 1913 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 | 1153 final String propertyName) { in modifyFieldIfSet() argument 1155 int stringInfo = properties.getStringInfo(propertyName); in modifyFieldIfSet() 1165 "Cannot set field for " + propertyName, ex); in modifyFieldIfSet() 1172 "Type of " + propertyName + " " + in modifyFieldIfSet() 1176 "Unexpected getStringInfo(" + propertyName + ") return value " + in modifyFieldIfSet() 1180 Object value = properties.get(propertyName); in modifyFieldIfSet() 1184 "Type of " + propertyName + " (" + value.getClass() + ") " + in modifyFieldIfSet() 1191 "Cannot set field for " + propertyName, ex); in modifyFieldIfSet() 1271 final String propertyName = cl.getName() + "." + field.getName(); in setFieldsOn() local 1276 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/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/opt/calendar/src/com/android/calendarcommon/ |
D | RecurrenceSet.java | 368 String propertyName, in addPropertiesForRuleStr() argument 375 ICalendar.Property prop = new ICalendar.Property(propertyName); in addPropertiesForRuleStr() 428 String propertyName, in addPropertyForDateStr() argument 434 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/libs/hwui/ |
D | ShapeCache.h | 310 ShapeCache(const char* name, const char* propertyName, float defaultSize); 404 ShapeCache<Entry>::ShapeCache(const char* name, const char* propertyName, float defaultSize): in ShapeCache() argument 408 if (property_get(propertyName, property, NULL) > 0) { in ShapeCache()
|
/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 | 423 <code>set<propertyName>()</code>. Because the {@link android.animation.ObjectAnimator} 443 form of <code>get<propertyName>()</code>. For example, if the property name is 922 android:propertyName="x" 927 android:propertyName="y" 933 android:propertyName="alpha"
|
/frameworks/base/api/ |
D | current.txt | 760 field public static final int propertyName = 16843489; // 0x10102e1
|
D | 14.txt | 760 field public static final int propertyName = 16843489; // 0x10102e1
|