Lines Matching refs:animate

361      * @param animate {@code true} to animate the transition, {@code false}
366 public boolean reset(boolean animate) {
368 return resetLocked(animate);
372 private boolean resetLocked(boolean animate) {
383 mSpecAnimationBridge.updateSentSpec(spec, animate);
395 * @param animate {@code true} to animate the transition, {@code false}
401 public boolean setScale(float scale, float pivotX, float pivotY, boolean animate, int id) {
422 return setScaleAndCenterLocked(scale, centerX, centerY, animate, id);
434 * @param animate {@code true} to animate the transition, {@code false}
440 public boolean setCenter(float centerX, float centerY, boolean animate, int id) {
445 return setScaleAndCenterLocked(Float.NaN, centerX, centerY, animate, id);
459 * @param animate {@code true} to animate the transition, {@code false}
466 float scale, float centerX, float centerY, boolean animate, int id) {
471 return setScaleAndCenterLocked(scale, centerX, centerY, animate, id);
476 boolean animate, int id) {
478 mSpecAnimationBridge.updateSentSpec(mCurrentMagnificationSpec, animate);
655 * @param animate whether the animate the transition
659 boolean resetIfNeeded(boolean animate) {
662 reset(animate);
784 public void updateSentSpec(MagnificationSpec spec, boolean animate) {
787 updateSentSpecInternal(spec, animate);
790 animate ? 1 : 0, 0, spec).sendToTarget();
797 private void updateSentSpecInternal(MagnificationSpec spec, boolean animate) {
806 if (animate) {
840 final boolean animate = msg.arg1 == 1;
842 updateSentSpecInternal(spec, animate);