Searched refs:elevation (Results 1 - 22 of 22) sorted by relevance

/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/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/eclair-mr1/android/support/v7/widget/
H A DCardViewEclairMr1.java70 float radius, float elevation, float maxElevation) {
72 elevation, maxElevation);
79 float radius, float elevation, float maxElevation) {
81 elevation, maxElevation);
117 public void setElevation(CardViewDelegate cardView, float elevation) { argument
118 getShadowBackground(cardView).setShadowSize(elevation);
69 initialize(CardViewDelegate cardView, Context context, int backgroundColor, float radius, float elevation, float maxElevation) argument
78 createBackground(Context context, int backgroundColor, float radius, float elevation, float maxElevation) argument
/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/src/android/support/v7/widget/
H A DCardView.java30 * CardView uses <code>elevation</code> property on L for shadows and falls back to a custom shadow
52 * To change CardView's elevation in a backward compatible way, use
53 * {@link #setCardElevation(float)}. CardView will use elevation API on L and before L, it will
55 * clamped by {@link #getMaxCardElevation()}. If you want to change elevation dynamically, you
207 float elevation = a.getDimension(R.styleable.CardView_cardElevation, 0);
220 if (elevation > maxElevation) {
221 maxElevation = elevation;
224 IMPL.initialize(this, context, backgroundColor, radius, elevation, maxElevation);
297 * Updates the backward compatible elevation of the CardView.
299 * @param radius The backward compatible elevation i
[all...]
/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/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
H A DActivityTransitionCoordinator.java131 protected static final String KEY_ELEVATION = "shared_element:elevation";
399 float elevation = sharedElementBundle.getFloat(KEY_ELEVATION);
400 view.setElevation(elevation);
/frameworks/base/core/java/com/android/internal/app/
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);
H A DToolbarActionBar.java134 public void setElevation(float elevation) { argument
135 mToolbar.setElevation(elevation);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/app/
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);
H A DToolbarActionBar.java150 public void setElevation(float elevation) { argument
151 ViewCompat.setElevation(mToolbar, elevation);
/frameworks/support/v4/java/android/support/v4/view/
H A DViewCompat.java323 public void setElevation(View view, float elevation); argument
690 public void setElevation(View view, float elevation) { argument
1124 public void setElevation(View view, float elevation) { argument
1125 ViewCompatApi21.setElevation(view, elevation);
2153 * Sets the base elevation of this view, in pixels.
2155 public static void setElevation(View view, float elevation) { argument
2156 IMPL.setElevation(view, elevation);
2160 * The base elevation of this view relative to its parent, in pixels.
2169 * Sets the depth location of this view relative to its {@link #getElevation(View) elevation}.
2176 * The depth location of this view relative to its {@link #getElevation(View) elevation}
[all...]
/frameworks/base/libs/hwui/
H A DRenderProperties.h228 bool setElevation(float elevation) { argument
229 return RP_SET(mPrimitiveFields.mElevation, 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/base/core/java/android/widget/
H A DPopupWindow.java349 * @return the elevation for this popup window in pixels
358 * Specifies the elevation for this popup window.
360 * @param elevation the popup's elevation in pixels
364 public void setElevation(float elevation) { argument
365 mElevation = elevation;
/frameworks/wilhelm/include/SLES/
H A DOpenSLES.h1726 SLmillidegree elevation,
1779 SLmillidegree elevation,
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindow.java1250 final float elevation = a.getDimension(R.styleable.Window_windowElevation, 0);
1251 if (elevation != 0) {
1252 st.decorView.setElevation(elevation);
/frameworks/base/core/java/android/view/
H A DView.java3706 float elevation = 0;
3791 elevation = a.getDimensionPixelOffset(attr, 0);
4168 setElevation(elevation);
10815 * {@link #getElevation() elevation} property.
10827 * the x value passed in and the current {@link #getElevation() elevation} property.
10836 * The base elevation of this view relative to its parent, in pixels.
10846 * Sets the base elevation of this view, in pixels.
10850 public void setElevation(float elevation) { argument
10851 if (elevation != getElevation()) {
10853 mRenderNode.setElevation(elevation);
[all...]
/frameworks/base/services/core/jni/
H A Dcom_android_server_location_GpsLocationProvider.cpp615 elev[i] = sGpsSvStatus.sv_list[i].elevation;

Completed in 720 milliseconds