Searched refs:propertyName (Results 1 – 5 of 5) sorted by relevance
/cts/tests/tests/animation/src/android/animation/cts/ |
D | CreationTest.java | 171 private void verifyValues(ObjectAnimator animator, String propertyName, float... values) { in verifyValues() argument 173 assertEquals((Float) animator.getAnimatedValue(propertyName), values[0], EPSILON); in verifyValues() 176 assertEquals((Float) animator.getAnimatedValue(propertyName), values[i], EPSILON); in verifyValues() 179 assertEquals((Float) animator.getAnimatedValue(propertyName), values[values.length - 1], in verifyValues()
|
D | AnimationActivity.java | 81 public ValueAnimator createAnimator(Object object,String propertyName, long duration, in createAnimator() argument 84 ValueAnimator valueAnimator = ObjectAnimator.ofFloat(object, propertyName, start,end); in createAnimator() 112 public ValueAnimator createObjectAnimatorForInt(Object object,String propertyName, in createObjectAnimatorForInt() argument 115 ObjectAnimator objAnimator = ObjectAnimator.ofInt(object, propertyName, start,end); in createObjectAnimatorForInt()
|
D | ObjectAnimatorTest.java | 204 String propertyName = "scrollX"; in testOfPropertyValuesHolder() local 208 … PropertyValuesHolder propertyValuesHolder = PropertyValuesHolder.ofInt(propertyName, values); in testOfPropertyValuesHolder() 288 String propertyName = "backgroundColor"; in testGetPropertyName() local 293 ObjectAnimator colorAnimator = ObjectAnimator.ofObject(object, propertyName, in testGetPropertyName() 296 assertEquals(propertyName, actualPropertyName); in testGetPropertyName() 332 String propertyName = "backgroundColor"; in testGetTarget() local 337 ObjectAnimator colorAnimator = ObjectAnimator.ofObject(object, propertyName, in testGetTarget()
|
/cts/tests/tests/calendarcommon/src/com/android/calendarcommon2/ |
D | RecurrenceSet.java | 32 String propertyName, in addPropertiesForRuleStr() argument
|
/cts/tests/tests/app.usage/src/android/app/usage/cts/ |
D | ActivityTransitionActivity.java | 140 private Transition createVisibilityTransition(boolean isExplode, String propertyName) { in createVisibilityTransition() argument 143 transition.addListener(new VisibilityCheck(R.id.redSquare, propertyName)); in createVisibilityTransition() 268 public VisibilityCheck(int viewId, String propertyName) { in VisibilityCheck() argument 271 mPropertyName = propertyName; in VisibilityCheck()
|