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

/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskViewTransform.java54 public float translationZ = 0; field in class:TaskViewTransform
69 translationZ = tv.getTranslationZ();
82 translationZ = other.translationZ;
95 return translationZ == other.translationZ
107 translationZ = 0;
126 return (Float.compare(translationZ, v) != 0);
146 v.setTranslationZ(translationZ);
162 v.getTranslationZ(), translationZ);
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/lowram/
H A DTaskStackLowRamLayoutAlgorithm.java249 private void fillStackTransform(TaskViewTransform transformOut, int y, int translationZ, argument
253 transformOut.translationZ = translationZ;
/frameworks/layoutlib/bridge/src/android/view/
H A DRenderNode_Delegate.java134 /*package*/ static boolean nSetTranslationZ(long renderNode, float translationZ) { argument
136 if (delegate != null && delegate.mTranslationZ != translationZ) {
137 delegate.mTranslationZ = translationZ;
/frameworks/support/compat/src/main/java/androidx/core/view/
H A DViewPropertyAnimatorCompat.java559 * This method will cause the View's <code>translationZ</code> property to be animated by the
578 * This method will cause the View's <code>translationZ</code> property to be animated to the
586 public ViewPropertyAnimatorCompat translationZ(float value) { method in class:ViewPropertyAnimatorCompat
590 view.animate().translationZ(value);
H A DViewCompat.java2036 public static void setTranslationZ(@NonNull View view, float translationZ) { argument
2038 view.setTranslationZ(translationZ);
2870 * {@link #setTranslationZ(View, float) translationZ} property plus the current
2884 * {@link #setTranslationZ(View, float) translationZ} property to be the difference between
/frameworks/base/core/java/android/transition/
H A DChangeTransform.java414 float translationZ, float scaleX, float scaleY, float rotationX,
418 view.setTranslationZ(translationZ);
429 public final float translationZ; field in class:ChangeTransform.Transforms
439 translationZ = view.getTranslationZ();
448 setTransforms(view, translationX, translationY, translationZ, scaleX, scaleY,
460 thatTransform.translationZ == translationZ &&
413 setTransforms(View view, float translationX, float translationY, float translationZ, float scaleX, float scaleY, float rotationX, float rotationY, float rotationZ) argument
/frameworks/support/transition/src/main/java/androidx/transition/
H A DChangeTransform.java440 float translationZ, float scaleX, float scaleY, float rotationX,
444 ViewCompat.setTranslationZ(view, translationZ);
439 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.java651 * This method will cause the View's <code>translationZ</code> property to be animated to the
658 public ViewPropertyAnimator translationZ(float value) { method in class:ViewPropertyAnimator
664 * This method will cause the View's <code>translationZ</code> property to be animated by the
H A DRenderNode.java526 public boolean setTranslationZ(float translationZ) { argument
527 return nSetTranslationZ(mNativeRenderNode, translationZ);
964 private static native boolean nSetTranslationZ(long renderNode, float translationZ); argument
H A DView.java15483 * {@link #setTranslationZ(float) translationZ} property plus the current
15495 * {@link #setTranslationZ(float) translationZ} property to be the difference between
15612 public void setTranslationZ(float translationZ) { argument
15613 if (translationZ != getTranslationZ()) {
15614 translationZ = sanitizeFloatPropertyValue(translationZ, "translationZ");
15616 mRenderNode.setTranslationZ(translationZ);
25532 * A Property wrapper around the <code>translationZ</code> functionality handled by the
25535 public static final Property<View, Float> TRANSLATION_Z = new FloatProperty<View>("translationZ") {
[all...]
/frameworks/base/libs/hwui/tests/unit/
H A DFrameBuilderTests.cpp1858 // creates a 100x100 shadow casting node with provided translationZ
1859 static sp<RenderNode> createWhiteRectShadowCaster(float translationZ) { argument
1861 0, 0, 100, 100, [translationZ](RenderProperties& properties, RecordingCanvas& canvas) {
1862 properties.setTranslationZ(translationZ);
/frameworks/base/libs/hwui/
H A DRenderProperties.h253 bool setTranslationZ(float translationZ) { argument
254 return RP_SET(mPrimitiveFields.mTranslationZ, translationZ);

Completed in 314 milliseconds