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/tools/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/java/android/support/v4/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.java718 public void setTranslationZ(View view, float translationZ) { argument
1233 public void setTranslationZ(View view, float translationZ) { argument
1234 view.setTranslationZ(translationZ);
2755 public static void setTranslationZ(View view, float translationZ) { argument
2756 IMPL.setTranslationZ(view, translationZ);
3379 * {@link #setTranslationZ(View, float) translationZ} property plus the current
3390 * {@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/android/support/transition/
H A DChangeTransform.java439 float translationZ, float scaleX, float scaleY, float rotationX,
443 ViewCompat.setTranslationZ(view, translationZ);
438 setTransforms(View view, float translationX, float translationY, float translationZ, float scaleX, float scaleY, float rotationX, float rotationY, float rotationZ) argument
/frameworks/support/design/base/android/support/design/widget/
H A DFloatingActionButtonImpl.java95 // Elevate with translationZ when pressed or focused
182 final void setPressedTranslationZ(float translationZ) { argument
183 if (mPressedTranslationZ != translationZ) {
184 mPressedTranslationZ = translationZ;
185 onElevationsChanged(mElevation, translationZ);
/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.java506 public boolean setTranslationZ(float translationZ) { argument
507 return nSetTranslationZ(mNativeRenderNode, translationZ);
929 private static native boolean nSetTranslationZ(long renderNode, float translationZ); argument
H A DView.java14589 * {@link #setTranslationZ(float) translationZ} property plus the current
14601 * {@link #setTranslationZ(float) translationZ} property to be the difference between
14717 public void setTranslationZ(float translationZ) { argument
14718 if (translationZ != getTranslationZ()) {
14720 mRenderNode.setTranslationZ(translationZ);
24344 * A Property wrapper around the <code>translationZ</code> functionality handled by the
24347 public static final Property<View, Float> TRANSLATION_Z = new FloatProperty<View>("translationZ") {
26191 stream.addProperty("drawing:translationZ", getTranslationZ());
/frameworks/base/libs/hwui/tests/unit/
H A DFrameBuilderTests.cpp1860 // creates a 100x100 shadow casting node with provided translationZ
1861 static sp<RenderNode> createWhiteRectShadowCaster(float translationZ) { argument
1863 [translationZ](RenderProperties& properties, RecordingCanvas& canvas) {
1864 properties.setTranslationZ(translationZ);
/frameworks/base/libs/hwui/
H A DRenderProperties.h284 bool setTranslationZ(float translationZ) { argument
285 return RP_SET(mPrimitiveFields.mTranslationZ, translationZ);

Completed in 3873 milliseconds