Searched defs:getElevation (Results 1 - 16 of 16) sorted by relevance

/frameworks/support/v4/api21/android/support/v4/view/
H A DViewCompatApi21.java40 public static float getElevation(View view) { method in class:ViewCompatApi21
41 return view.getElevation();
/frameworks/base/location/java/android/location/
H A DGpsSatellite.java76 public float getElevation() { method in class:GpsSatellite
/frameworks/support/v7/cardview/api21/android/support/v7/widget/
H A DCardViewApi21.java76 public float getElevation(CardViewDelegate cardView) { method in class:CardViewApi21
77 return ((View) cardView).getElevation();
/frameworks/support/v7/cardview/base/android/support/v7/widget/
H A DCardViewImpl.java32 float getElevation(CardViewDelegate cardView); method in interface:CardViewImpl
/frameworks/support/v7/cardview/eclair-mr1/android/support/v7/widget/
H A DCardViewEclairMr1.java133 public float getElevation(CardViewDelegate cardView) { method in class:CardViewEclairMr1
/frameworks/base/core/java/android/app/
H A DActionBar.java1019 public float getElevation() { method in class:ActionBar
/frameworks/base/core/java/com/android/internal/app/
H A DToolbarActionBar.java137 public float getElevation() { method in class:ToolbarActionBar
138 return mDecorToolbar.getViewGroup().getElevation();
H A DWindowDecorActionBar.java252 public float getElevation() { method in class:WindowDecorActionBar
253 return mContainerView.getElevation();
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DActionBar.java1022 public float getElevation() { method in class:ActionBar
/frameworks/support/v7/appcompat/src/android/support/v7/internal/app/
H A DToolbarActionBar.java153 public float getElevation() { method in class:ToolbarActionBar
154 return ViewCompat.getElevation(mDecorToolbar.getViewGroup());
H A DWindowDecorActionBar.java262 public float getElevation() { method in class:WindowDecorActionBar
263 return ViewCompat.getElevation(mContainerView);
/frameworks/base/core/java/android/view/
H A DRenderNode.java472 public float getElevation() { method in class:RenderNode
H A DView.java10926 * {@link #getElevation() elevation} property.
10932 return getElevation() + getTranslationZ();
10938 * the x value passed in and the current {@link #getElevation() elevation} property.
10943 setTranslationZ(z - getElevation());
10952 public float getElevation() { method in class:View
10953 return mRenderNode.getElevation();
10962 if (elevation != getElevation()) {
11038 * The depth location of this view relative to its {@link #getElevation() elevation}.
11048 * Sets the depth location of this view relative to its {@link #getElevation() elevation}.
/frameworks/base/core/java/android/widget/
H A DPopupWindow.java356 public float getElevation() { method in class:PopupWindow
364 * @see #getElevation()
/frameworks/base/libs/hwui/
H A DRenderProperties.h233 float getElevation() const { function in class:android::uirenderer::RenderProperties
284 return setTranslationZ(value - getElevation());
288 return getElevation() + getTranslationZ();
/frameworks/support/v4/java/android/support/v4/view/
H A DViewCompat.java326 public float getElevation(View view); method in interface:ViewCompat.ViewCompatImpl
702 public float getElevation(View view) { method in class:ViewCompat.BaseViewCompatImpl
1169 public float getElevation(View view) { method in class:ViewCompat.Api21ViewCompatImpl
1170 return ViewCompatApi21.getElevation(view);
2209 public static float getElevation(View view) { method in class:ViewCompat
2210 return IMPL.getElevation(view);
2214 * Sets the depth location of this view relative to its {@link #getElevation(View) elevation}.
2221 * The depth location of this view relative to its {@link #getElevation(View) elevation}.

Completed in 570 milliseconds