Searched defs:setTranslationZ (Results 1 - 5 of 5) sorted by relevance

/frameworks/support/v4/api21/android/support/v4/view/
H A DViewCompatLollipop.java52 public static void setTranslationZ(View view, float translationZ) { method in class:ViewCompatLollipop
53 view.setTranslationZ(translationZ);
/frameworks/base/core/java/android/view/
H A DRenderNode.java480 * @see View#setTranslationZ(float)
483 public boolean setTranslationZ(float translationZ) { method in class:RenderNode
490 * @see #setTranslationZ(float)
H A DView.java4653 setTranslationZ(tz);
12690 * {@link #setTranslationZ(float) translationZ} property plus the current
12702 * {@link #setTranslationZ(float) translationZ} property to be the difference between
12708 setTranslationZ(z - getElevation());
12818 public void setTranslationZ(float translationZ) { method in class:View
12821 mRenderNode.setTranslationZ(translationZ);
21912 * {@link View#setTranslationZ(float)} and {@link View#getTranslationZ()} methods.
21917 object.setTranslationZ(value);
/frameworks/base/libs/hwui/
H A DRenderProperties.h282 bool setTranslationZ(float translationZ) { function in class:android::uirenderer::RenderProperties
313 return setTranslationZ(value - getElevation());
/frameworks/support/v4/java/android/support/v4/view/
H A DViewCompat.java434 void setTranslationZ(View view, float translationZ); method in interface:ViewCompat.ViewCompatImpl
861 public void setTranslationZ(View view, float translationZ) { method in class:ViewCompat.BaseViewCompatImpl
1608 public void setTranslationZ(View view, float translationZ) { method in class:ViewCompat.LollipopViewCompatImpl
1609 ViewCompatLollipop.setTranslationZ(view, translationZ);
2823 public static void setTranslationZ(View view, float translationZ) { method in class:ViewCompat
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

Completed in 2354 milliseconds