[go: nahoru, domu]

Searched refs:propertyId (Results 1 - 10 of 10) sorted by relevance

/frameworks/data-binding/baseLibrary/src/main/java/android/databinding/
H A DObservable.java56 * @param propertyId The BR identifier of the property that has changed. The getter
59 public abstract void onPropertyChanged(Observable sender, int propertyId); argument
/frameworks/data-binding/extensions/library/src/main/java/android/databinding/
H A DPropertyChangeRegistry.java40 * @param propertyId The BR id of the property that has changed or BR._all if the entire
43 public void notifyChange(Observable observable, int propertyId) { argument
44 notifyCallbacks(observable, propertyId, null);
H A DViewDataBinding.java1143 public void onPropertyChanged(Observable sender, int propertyId) { argument
1152 binder.handleFieldChange(mListener.mLocalFieldId, sender, propertyId);
1285 public PropertyChangedInverseListener(int propertyId) { argument
1286 mPropertyId = propertyId;
1290 public void onPropertyChanged(Observable sender, int propertyId) { argument
1291 if (propertyId == mPropertyId || propertyId == 0) {
/frameworks/base/libs/hwui/
H A DPropertyValuesHolder.h45 GroupPropertyValuesHolder(VectorDrawable::Group* ptr, int propertyId, float startValue, argument
48 , mPropertyId(propertyId)
62 FullPathColorPropertyValuesHolder(VectorDrawable::FullPath* ptr, int propertyId, int32_t startValue, argument
65 , mPropertyId(propertyId)
79 FullPathPropertyValuesHolder(VectorDrawable::FullPath* ptr, int propertyId, float startValue, argument
82 , mPropertyId(propertyId)
H A DVectorDrawable.cpp272 void FullPath::FullPathProperties::setColorPropertyValue(int propertyId, int32_t value) { argument
273 Property currentProperty = static_cast<Property>(propertyId);
280 " with id: %d", propertyId);
284 void FullPath::FullPathProperties::setPropertyValue(int propertyId, float value) { argument
285 Property property = static_cast<Property>(propertyId);
306 LOG_ALWAYS_FATAL("Invalid property id: %d for animation", propertyId);
398 float Group::GroupProperties::getPropertyValue(int propertyId) const {
399 Property currentProperty = static_cast<Property>(propertyId);
416 LOG_ALWAYS_FATAL("Invalid property index: %d", propertyId);
422 void Group::GroupProperties::setPropertyValue(int propertyId, floa argument
451 isValidProperty(int propertyId) argument
455 isValidProperty(int propertyId) argument
[all...]
H A DVectorDrawable.h331 void setColorPropertyValue(int propertyId, int32_t value);
332 void setPropertyValue(int propertyId, float value);
479 void setPropertyValue(int propertyId, float value);
480 float getPropertyValue(int propertyId) const;
482 static bool isValidProperty(int propertyId);
518 static bool isValidProperty(int propertyId);
/frameworks/data-binding/integration-tests/MultiModuleTestApp/app/src/androidTest/java/com/android/databinding/multimoduletestapp/
H A DEventIdsTest.java118 public void onPropertyChanged(Observable observable, int propertyId) { argument
119 mCounter.put(propertyId, get(propertyId) + 1);
122 public int get(int propertyId) { argument
123 Integer val = mCounter.get(propertyId);
127 private void assertProperty(int propertyId, int value) { argument
128 assertEquals(get(propertyId), value);
/frameworks/base/core/jni/
H A Dandroid_graphics_drawable_AnimatedVectorDrawable.cpp98 static jlong createGroupPropertyHolder(JNIEnv*, jobject, jlong nativePtr, jint propertyId, argument
101 GroupPropertyValuesHolder* newHolder = new GroupPropertyValuesHolder(group, propertyId,
116 static jlong createPathColorPropertyHolder(JNIEnv*, jobject, jlong nativePtr, jint propertyId, argument
120 propertyId, startValue, endValue);
124 static jlong createPathPropertyHolder(JNIEnv*, jobject, jlong nativePtr, jint propertyId, argument
128 propertyId, startValue, endValue);
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/drawable/
H A DAnimatedVectorDrawable_Delegate.java84 /*package*/ static long nCreateGroupPropertyHolder(long nativePtr, int propertyId, argument
87 Consumer<Float> setter = group.getPropertySetter(propertyId);
102 /*package*/ static long nCreatePathColorPropertyHolder(long nativePtr, int propertyId, argument
105 Consumer<Integer> setter = path.getIntPropertySetter(propertyId);
112 /*package*/ static long nCreatePathPropertyHolder(long nativePtr, int propertyId, argument
115 Consumer<Float> setter = path.getFloatPropertySetter(propertyId);
/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimatedVectorDrawable.java1102 int propertyId;
1106 propertyId = VectorDrawable.VGroup.getPropertyIndex(mTmpValues.propertyName);
1114 if (propertyId < 0) {
1121 long propertyPtr = nCreateGroupPropertyHolder(nativePtr, propertyId,
1147 int propertyId = target.getPropertyIndex(mTmpValues.propertyName);
1151 if (propertyId < 0) {
1159 propertyPtr = nCreatePathPropertyHolder(nativePtr, propertyId,
1163 propertyPtr = nCreatePathColorPropertyHolder(nativePtr, propertyId,
1489 private static native long nCreateGroupPropertyHolder(long nativePtr, int propertyId, argument
1494 private static native long nCreatePathColorPropertyHolder(long nativePtr, int propertyId, argument
1496 nCreatePathPropertyHolder(long nativePtr, int propertyId, float startValue, float endValue) argument
[all...]

Completed in 330 milliseconds