Searched defs:elevation (Results 1 - 19 of 19) sorted by relevance

/frameworks/support/v4/api21/android/support/v4/view/
H A DViewCompatApi21.java36 public static void setElevation(View view, float elevation) { argument
37 view.setElevation(elevation);
/frameworks/wilhelm/src/itf/
H A DI3DDoppler.c43 SLmillidegree azimuth, SLmillidegree elevation, SLmillimeter speed)
50 thiz->mVelocitySpherical.mElevation = elevation;
42 I3DDoppler_SetVelocitySpherical(SL3DDopplerItf self, SLmillidegree azimuth, SLmillidegree elevation, SLmillimeter speed) argument
H A DI3DLocation.c43 SLmillidegree azimuth, SLmillidegree elevation, SLmillimeter distance)
48 (-90000 <= elevation) && (elevation <= 90000) &&
55 thiz->mLocationSpherical.mElevation = elevation;
42 I3DLocation_SetLocationSpherical(SL3DLocationItf self, SLmillidegree azimuth, SLmillidegree elevation, SLmillimeter distance) argument
/frameworks/support/v7/cardview/api21/android/support/v7/widget/
H A DCardViewApi21.java25 float radius, float elevation, float maxElevation) {
30 view.setElevation(elevation);
71 public void setElevation(CardViewDelegate cardView, float elevation) { argument
72 ((View) cardView).setElevation(elevation);
86 float elevation = getMaxElevation(cardView);
89 .calculateHorizontalPadding(elevation, radius, cardView.getPreventCornerOverlap()));
91 .calculateVerticalPadding(elevation, radius, cardView.getPreventCornerOverlap()));
24 initialize(CardViewDelegate cardView, Context context, int backgroundColor, float radius, float elevation, float maxElevation) argument
/frameworks/support/v7/cardview/base/android/support/v7/widget/
H A DCardViewImpl.java24 float elevation, float maxElevation);
30 void setElevation(CardViewDelegate cardView, float elevation); argument
23 initialize(CardViewDelegate cardView, Context context, int backgroundColor, float radius, float elevation, float maxElevation) argument
/frameworks/support/v7/cardview/eclair-mr1/android/support/v7/widget/
H A DCardViewEclairMr1.java76 float radius, float elevation, float maxElevation) {
78 elevation, maxElevation);
85 float radius, float elevation, float maxElevation) {
87 elevation, maxElevation);
128 public void setElevation(CardViewDelegate cardView, float elevation) { argument
129 getShadowBackground(cardView).setShadowSize(elevation);
75 initialize(CardViewDelegate cardView, Context context, int backgroundColor, float radius, float elevation, float maxElevation) argument
84 createBackground(Context context, int backgroundColor, float radius, float elevation, float maxElevation) argument
/frameworks/base/core/java/android/app/
H A DActionBar.java997 * Set the Z-axis elevation of the action bar in pixels.
999 * <p>The action bar's elevation is the distance it is placed from its parent surface. Higher
1002 * @param elevation Elevation value in pixels
1004 public void setElevation(float elevation) { argument
1005 if (elevation != 0) {
1006 throw new UnsupportedOperationException("Setting a non-zero elevation is " +
1012 * Get the Z-axis elevation of the action bar in pixels.
1014 * <p>The action bar's elevation is the distance it is placed from its parent surface. Higher
/frameworks/base/core/java/com/android/internal/app/
H A DToolbarActionBar.java132 public void setElevation(float elevation) { argument
133 mDecorToolbar.getViewGroup().setElevation(elevation);
H A DWindowDecorActionBar.java225 final int elevation = a.getDimensionPixelSize(R.styleable.ActionBar_elevation, 0);
226 if (elevation != 0) {
227 setElevation(elevation);
244 public void setElevation(float elevation) { argument
245 mContainerView.setElevation(elevation);
247 mSplitView.setElevation(elevation);
/frameworks/base/core/jni/
H A Dandroid_view_RenderNode.cpp212 jobject clazz, jlong renderNodePtr, float elevation) {
213 return SET_AND_DIRTY(setElevation, elevation, RenderNode::Z);
211 android_view_RenderNode_setElevation(JNIEnv* env, jobject clazz, jlong renderNodePtr, float elevation) argument
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DActionBar.java1000 * Set the Z-axis elevation of the action bar in pixels.
1002 * <p>The action bar's elevation is the distance it is placed from its parent surface. Higher
1005 * @param elevation Elevation value in pixels
1007 public void setElevation(float elevation) { argument
1008 if (elevation != 0) {
1009 throw new UnsupportedOperationException("Setting a non-zero elevation is " +
1015 * Get the Z-axis elevation of the action bar in pixels.
1017 * <p>The action bar's elevation is the distance it is placed from its parent surface. Higher
/frameworks/support/v7/appcompat/src/android/support/v7/internal/app/
H A DToolbarActionBar.java148 public void setElevation(float elevation) { argument
149 ViewCompat.setElevation(mDecorToolbar.getViewGroup(), elevation);
H A DWindowDecorActionBar.java235 final int elevation = a.getDimensionPixelSize(R.styleable.ActionBar_elevation, 0);
236 if (elevation != 0) {
237 setElevation(elevation);
254 public void setElevation(float elevation) { argument
255 ViewCompat.setElevation(mContainerView, elevation);
257 ViewCompat.setElevation(mSplitView, elevation);
/frameworks/base/core/java/android/widget/
H A DPopupWindow.java352 * @return the elevation for this popup window in pixels
361 * Specifies the elevation for this popup window.
363 * @param elevation the popup's elevation in pixels
367 public void setElevation(float elevation) { argument
368 mElevation = elevation;
/frameworks/base/libs/hwui/
H A DRenderProperties.h228 bool setElevation(float elevation) { argument
229 return RP_SET(mPrimitiveFields.mElevation, elevation);
/frameworks/support/v4/java/android/support/v4/view/
H A DViewCompat.java325 public void setElevation(View view, float elevation); argument
698 public void setElevation(View view, float elevation) { argument
1164 public void setElevation(View view, float elevation) { argument
1165 ViewCompatApi21.setElevation(view, elevation);
2198 * Sets the base elevation of this view, in pixels.
2200 public static void setElevation(View view, float elevation) { argument
2201 IMPL.setElevation(view, elevation);
2205 * The base elevation of this view relative to its parent, in pixels.
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}
[all...]
/frameworks/base/core/java/android/view/
H A DWindow.java1100 * Sets the window elevation.
1106 * @param elevation The window elevation.
1110 public void setElevation(float elevation) {} argument
H A DView.java3713 float elevation = 0;
3798 elevation = a.getDimensionPixelOffset(attr, 0);
4181 setElevation(elevation);
10926 * {@link #getElevation() elevation} property.
10938 * the x value passed in and the current {@link #getElevation() elevation} property.
10947 * The base elevation of this view relative to its parent, in pixels.
10957 * Sets the base elevation of this view, in pixels.
10961 public void setElevation(float elevation) { argument
10962 if (elevation != getElevation()) {
10964 mRenderNode.setElevation(elevation);
[all...]
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindow.java1260 final float elevation = a.getDimension(R.styleable.Window_windowElevation, 0);
1261 if (elevation != 0) {
1262 st.decorView.setElevation(elevation);
1345 public final void setElevation(float elevation) { argument
1346 mElevation = elevation;
1348 mDecor.setElevation(elevation);

Completed in 353 milliseconds