Searched defs:translationZ (Results 1 - 8 of 8) sorted by relevance

/frameworks/support/v4/api21/android/support/v4/view/
H A DViewCompatApi21.java44 public static void setTranslationZ(View view, float translationZ) { argument
45 view.setTranslationZ(translationZ);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskViewTransform.java31 public float translationZ = 0; field in class:TaskViewTransform
45 translationZ = o.translationZ;
57 translationZ = 0;
76 return (Float.compare(translationZ, v) != 0);
92 anim.translationZ(translationZ);
122 v.setTranslationZ(translationZ);
146 return "TaskViewTransform delay: " + startDelay + " y: " + translationY + " z: " + translationZ +
/frameworks/base/core/java/android/transition/
H A DChangeTransform.java412 float translationZ, float scaleX, float scaleY, float rotationX,
416 view.setTranslationZ(translationZ);
427 public final float translationZ; field in class:ChangeTransform.Transforms
437 translationZ = view.getTranslationZ();
446 setTransforms(view, translationX, translationY, translationZ, scaleX, scaleY,
458 thatTransform.translationZ == translationZ &&
411 setTransforms(View view, float translationX, float translationY, float translationZ, float scaleX, float scaleY, float rotationX, float rotationY, float rotationZ) argument
/frameworks/base/core/java/android/view/
H A DViewPropertyAnimator.java652 * This method will cause the View's <code>translationZ</code> property to be animated to the
659 public ViewPropertyAnimator translationZ(float value) { method in class:ViewPropertyAnimator
665 * This method will cause the View's <code>translationZ</code> property to be animated by the
H A DRenderNode.java524 public boolean setTranslationZ(float translationZ) { argument
525 return nSetTranslationZ(mNativeRenderNode, translationZ);
878 private static native boolean nSetTranslationZ(long renderNode, float translationZ); argument
H A DView.java10925 * {@link #setTranslationZ(float) translationZ} property plus the current
10937 * {@link #setTranslationZ(float) translationZ} property to be the difference between
11052 public void setTranslationZ(float translationZ) { argument
11053 if (translationZ != getTranslationZ()) {
11055 mRenderNode.setTranslationZ(translationZ);
19547 * A Property wrapper around the <code>translationZ</code> functionality handled by the
19550 public static final Property<View, Float> TRANSLATION_Z = new FloatProperty<View>("translationZ") {
/frameworks/base/libs/hwui/
H A DRenderProperties.h253 bool setTranslationZ(float translationZ) { argument
254 return RP_SET(mPrimitiveFields.mTranslationZ, translationZ);
/frameworks/support/v4/java/android/support/v4/view/
H A DViewCompat.java327 public void setTranslationZ(View view, float translationZ); argument
707 public void setTranslationZ(View view, float translationZ) { argument
1174 public void setTranslationZ(View view, float translationZ) { argument
1175 ViewCompatApi21.setTranslationZ(view, translationZ);
2216 public static void setTranslationZ(View view, float translationZ) { argument
2217 IMPL.setTranslationZ(view, translationZ);

Completed in 250 milliseconds