Home
last modified time | relevance | path

Searched refs:propertyId (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/libs/hwui/
DPropertyValuesHolder.h90 GroupPropertyValuesHolder(VectorDrawable::Group* ptr, int propertyId, float startValue, in GroupPropertyValuesHolder() argument
92 : PropertyValuesHolderImpl(startValue, endValue), mGroup(ptr), mPropertyId(propertyId) { in GroupPropertyValuesHolder()
104 FullPathColorPropertyValuesHolder(VectorDrawable::FullPath* ptr, int propertyId, in FullPathColorPropertyValuesHolder() argument
108 , mPropertyId(propertyId) { in FullPathColorPropertyValuesHolder()
121 FullPathPropertyValuesHolder(VectorDrawable::FullPath* ptr, int propertyId, float startValue, in FullPathPropertyValuesHolder() argument
125 , mPropertyId(propertyId) { in FullPathPropertyValuesHolder()
DVectorDrawable.cpp224 void FullPath::FullPathProperties::setColorPropertyValue(int propertyId, int32_t value) { in setColorPropertyValue() argument
225 Property currentProperty = static_cast<Property>(propertyId); in setColorPropertyValue()
234 propertyId); in setColorPropertyValue()
238 void FullPath::FullPathProperties::setPropertyValue(int propertyId, float value) { in setPropertyValue() argument
239 Property property = static_cast<Property>(propertyId); in setPropertyValue()
260 LOG_ALWAYS_FATAL("Invalid property id: %d for animation", propertyId); in setPropertyValue()
344 float Group::GroupProperties::getPropertyValue(int propertyId) const { in getPropertyValue()
345 Property currentProperty = static_cast<Property>(propertyId); in getPropertyValue()
362 LOG_ALWAYS_FATAL("Invalid property index: %d", propertyId); in getPropertyValue()
368 void Group::GroupProperties::setPropertyValue(int propertyId, float value) { in setPropertyValue() argument
[all …]
DVectorDrawable.h302 void setColorPropertyValue(int propertyId, int32_t value);
303 void setPropertyValue(int propertyId, float value);
428 void setPropertyValue(int propertyId, float value);
429 float getPropertyValue(int propertyId) const;
431 static bool isValidProperty(int propertyId);
467 static bool isValidProperty(int propertyId);
/frameworks/base/packages/CarSystemUI/src/com/android/systemui/statusbar/car/hvac/
DHvacController.java61 int propertyId = val.getPropertyId();
63 new HvacKey(propertyId, areaId));
78 public void onErrorEvent(final int propertyId, final int zone) {
79 Log.d(TAG, "HVAC error event, propertyId: " + propertyId
176 private HvacKey(int propertyId, int areaId) { in HvacKey() argument
177 mPropertyId = propertyId; in HvacKey()
/frameworks/base/core/jni/
Dandroid_graphics_drawable_AnimatedVectorDrawable.cpp107 static jlong createGroupPropertyHolder(JNIEnv*, jobject, jlong nativePtr, jint propertyId, in createGroupPropertyHolder() argument
110 GroupPropertyValuesHolder* newHolder = new GroupPropertyValuesHolder(group, propertyId, in createGroupPropertyHolder()
125 static jlong createPathColorPropertyHolder(JNIEnv*, jobject, jlong nativePtr, jint propertyId, in createPathColorPropertyHolder() argument
129 propertyId, startValue, endValue); in createPathColorPropertyHolder()
133 static jlong createPathPropertyHolder(JNIEnv*, jobject, jlong nativePtr, jint propertyId, in createPathPropertyHolder() argument
137 propertyId, startValue, endValue); in createPathPropertyHolder()
/frameworks/layoutlib/bridge/src/android/graphics/drawable/
DAnimatedVectorDrawable_Delegate.java90 /*package*/ static long nCreateGroupPropertyHolder(long nativePtr, int propertyId, in nCreateGroupPropertyHolder() argument
93 Consumer<Float> setter = group.getPropertySetter(propertyId); in nCreateGroupPropertyHolder()
108 /*package*/ static long nCreatePathColorPropertyHolder(long nativePtr, int propertyId, in nCreatePathColorPropertyHolder() argument
111 Consumer<Integer> setter = path.getIntPropertySetter(propertyId); in nCreatePathColorPropertyHolder()
118 /*package*/ static long nCreatePathPropertyHolder(long nativePtr, int propertyId, in nCreatePathPropertyHolder() argument
121 Consumer<Float> setter = path.getFloatPropertySetter(propertyId); in nCreatePathPropertyHolder()
/frameworks/base/graphics/java/android/graphics/drawable/
DAnimatedVectorDrawable.java1356 int propertyId; in createRTAnimatorForGroup() local
1360 propertyId = VectorDrawable.VGroup.getPropertyIndex(mTmpValues.propertyName); in createRTAnimatorForGroup()
1368 if (propertyId < 0) { in createRTAnimatorForGroup()
1375 long propertyPtr = nCreateGroupPropertyHolder(nativePtr, propertyId, in createRTAnimatorForGroup()
1401 int propertyId = target.getPropertyIndex(mTmpValues.propertyName); in createRTAnimatorForFullPath() local
1405 if (propertyId < 0) { in createRTAnimatorForFullPath()
1413 propertyPtr = nCreatePathPropertyHolder(nativePtr, propertyId, in createRTAnimatorForFullPath()
1423 propertyPtr = nCreatePathColorPropertyHolder(nativePtr, propertyId, in createRTAnimatorForFullPath()
1823 private static native long nCreateGroupPropertyHolder(long nativePtr, int propertyId, in nCreateGroupPropertyHolder() argument
1829 private static native long nCreatePathColorPropertyHolder(long nativePtr, int propertyId, in nCreatePathColorPropertyHolder() argument
[all …]
/frameworks/opt/car/setupwizard/library/main/src/com/android/car/setupwizardlib/util/
DCarDrivingStateMonitor.java89 public void onErrorEvent(int propertyId, int zone) {}