Searched refs:propagationSpeed (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/transition/
H A DCircularPropagation.java39 * Transition. A <code>propagationSpeed</code> of 1 means that a View centered farthest from
45 * @param propagationSpeed The speed at which propagation occurs, relative to the duration
49 public void setPropagationSpeed(float propagationSpeed) { argument
50 if (propagationSpeed == 0) {
51 throw new IllegalArgumentException("propagationSpeed may not be 0");
53 mPropagationSpeed = propagationSpeed;
H A DSidePropagation.java55 * Transition. A <code>propagationSpeed</code> of 1 means that a View centered at the side
61 * @param propagationSpeed The speed at which propagation occurs, relative to the duration
65 public void setPropagationSpeed(float propagationSpeed) { argument
66 if (propagationSpeed == 0) {
67 throw new IllegalArgumentException("propagationSpeed may not be 0");
69 mPropagationSpeed = propagationSpeed;
/frameworks/support/transition/src/main/java/androidx/transition/
H A DCircularPropagation.java39 * Transition. A <code>propagationSpeed</code> of 1 means that a View centered farthest from
45 * @param propagationSpeed The speed at which propagation occurs, relative to the duration
49 public void setPropagationSpeed(float propagationSpeed) { argument
50 if (propagationSpeed == 0) {
51 throw new IllegalArgumentException("propagationSpeed may not be 0");
53 mPropagationSpeed = propagationSpeed;
H A DSidePropagation.java56 * Transition. A <code>propagationSpeed</code> of 1 means that a View centered at the side
62 * @param propagationSpeed The speed at which propagation occurs, relative to the duration
66 public void setPropagationSpeed(float propagationSpeed) { argument
67 if (propagationSpeed == 0) {
68 throw new IllegalArgumentException("propagationSpeed may not be 0");
70 mPropagationSpeed = propagationSpeed;

Completed in 261 milliseconds