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

/frameworks/support/v4/api21/android/support/v4/view/
H A DViewPropertyAnimatorCompatLollipop.java23 public static void translationZ(View view, float value) { method in class:ViewPropertyAnimatorCompatLollipop
24 view.animate().translationZ(value);
H A DViewCompatLollipop.java52 public static void setTranslationZ(View view, float translationZ) { argument
53 view.setTranslationZ(translationZ);
/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/support/design/lollipop/android/support/design/widget/
H A DFloatingActionButtonLollipop.java96 void onTranslationZChanged(float translationZ) { argument
98 // Animate translationZ to our value when pressed or focused
100 setupAnimator(ObjectAnimator.ofFloat(mView, "translationZ", translationZ)));
102 setupAnimator(ObjectAnimator.ofFloat(mView, "translationZ", translationZ)));
103 // Animate translationZ to 0 otherwise
105 setupAnimator(ObjectAnimator.ofFloat(mView, "translationZ", 0f)));
/frameworks/base/tools/layoutlib/bridge/src/android/view/
H A DRenderNode_Delegate.java127 /*package*/ static boolean nSetTranslationZ(long renderNode, float translationZ) { argument
129 if (delegate != null && delegate.mTranslationZ != translationZ) {
130 delegate.mTranslationZ = translationZ;
/frameworks/support/design/base/android/support/design/widget/
H A DFloatingActionButtonImpl.java83 final void setPressedTranslationZ(float translationZ) { argument
84 if (mPressedTranslationZ != translationZ) {
85 mPressedTranslationZ = translationZ;
86 onTranslationZChanged(translationZ);
92 abstract void onTranslationZChanged(float translationZ); argument
/frameworks/support/design/eclair-mr1/android/support/design/widget/
H A DFloatingActionButtonEclairMr1.java51 // Elevate with translationZ when pressed or focused
139 void onTranslationZChanged(float translationZ) { argument
141 mShadowDrawable.setMaxShadowSize(mElevation + 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/support/v4/java/android/support/v4/view/
H A DViewPropertyAnimatorCompat.java69 public void translationZ(ViewPropertyAnimatorCompat vpa, View view, float value); method in interface:ViewPropertyAnimatorCompat.ViewPropertyAnimatorCompatImpl
257 public void translationZ(ViewPropertyAnimatorCompat vpa, View view, float value) { method in class:ViewPropertyAnimatorCompat.BaseViewPropertyAnimatorCompatImpl
637 public void translationZ(ViewPropertyAnimatorCompat vpa, View view, float value) { method in class:ViewPropertyAnimatorCompat.LollipopViewPropertyAnimatorCompatImpl
638 ViewPropertyAnimatorCompatLollipop.translationZ(view, value);
1170 * This method will cause the View's <code>translationZ</code> property to be animated by the
1187 * This method will cause the View's <code>translationZ</code> property to be animated to the
1195 public ViewPropertyAnimatorCompat translationZ(float value) { method in class:ViewPropertyAnimatorCompat
1198 IMPL.translationZ(this, view, value);
H A DViewCompat.java434 void setTranslationZ(View view, float translationZ); argument
861 public void setTranslationZ(View view, float translationZ) { argument
1608 public void setTranslationZ(View view, float translationZ) { argument
1609 ViewCompatLollipop.setTranslationZ(view, translationZ);
2823 public static void setTranslationZ(View view, float translationZ) { argument
2824 IMPL.setTranslationZ(view, translationZ);
3306 * {@link #setTranslationZ(View, float) translationZ} property plus the current
3317 * {@link #setTranslationZ(View, float) translationZ} property to be the difference between
/frameworks/base/core/java/android/view/
H A DViewPropertyAnimator.java650 * This method will cause the View's <code>translationZ</code> property to be animated to the
657 public ViewPropertyAnimator translationZ(float value) { method in class:ViewPropertyAnimator
663 * This method will cause the View's <code>translationZ</code> property to be animated by the
H A DRenderNode.java483 public boolean setTranslationZ(float translationZ) { argument
484 return nSetTranslationZ(mNativeRenderNode, translationZ);
861 private static native boolean nSetTranslationZ(long renderNode, float translationZ); argument
H A DView.java12690 * {@link #setTranslationZ(float) translationZ} property plus the current
12702 * {@link #setTranslationZ(float) translationZ} property to be the difference between
12818 public void setTranslationZ(float translationZ) { argument
12819 if (translationZ != getTranslationZ()) {
12821 mRenderNode.setTranslationZ(translationZ);
21911 * A Property wrapper around the <code>translationZ</code> functionality handled by the
21914 public static final Property<View, Float> TRANSLATION_Z = new FloatProperty<View>("translationZ") {
23670 stream.addProperty("drawing:translationZ", getTranslationZ());
/frameworks/base/libs/hwui/tests/unit/
H A DFrameBuilderTests.cpp1746 // creates a 100x100 shadow casting node with provided translationZ
1747 static sp<RenderNode> createWhiteRectShadowCaster(float translationZ) { argument
1749 [translationZ](RenderProperties& properties, RecordingCanvas& canvas) {
1750 properties.setTranslationZ(translationZ);
/frameworks/base/libs/hwui/
H A DRenderProperties.h282 bool setTranslationZ(float translationZ) { argument
283 return RP_SET(mPrimitiveFields.mTranslationZ, translationZ);

Completed in 817 milliseconds