Searched refs:elevation (Results 26 - 37 of 37) sorted by relevance

12

/frameworks/base/core/java/com/android/internal/policy/
H A DDecorView.java121 // size calculation takes the shadow size into account. We set the elevation currently
742 // our shadow elevation.
2047 // element which owns the caption and has the elevation.
2139 * The elevation gets set for the first time and the framework needs to be informed that
2149 float elevation = 0;
2154 elevation = hasWindowFocus() ?
2161 elevation = DECOR_SHADOW_FOCUSED_HEIGHT_IN_DIP;
2163 // Convert the DP elevation into physical pixels.
2164 elevation = dipToPx(elevation);
[all...]
H A DPhoneWindow.java1342 final float elevation = a.getDimension(R.styleable.Window_windowElevation, 0);
1343 if (elevation != 0) {
1344 st.decorView.setElevation(elevation);
1427 public final void setElevation(float elevation) { argument
1428 mElevation = elevation;
1431 mDecor.setElevation(elevation);
/frameworks/support/compat/java/android/support/v4/view/
H A DViewCompat.java439 void setElevation(View view, float elevation); argument
871 public void setElevation(View view, float elevation) { argument
1634 public void setElevation(View view, float elevation) { argument
1635 ViewCompatLollipop.setElevation(view, elevation);
2901 * Sets the base elevation of this view, in pixels.
2903 public static void setElevation(View view, float elevation) { argument
2904 IMPL.setElevation(view, elevation);
2908 * The base elevation of this view relative to its parent, in pixels.
2917 * Sets the depth location of this view relative to its {@link #getElevation(View) elevation}.
2924 * The depth location of this view relative to its {@link #getElevation(View) elevation}
[all...]
/frameworks/base/core/java/android/app/
H A DActivityTransitionCoordinator.java133 protected static final String KEY_ELEVATION = "shared_element:elevation";
444 float elevation = sharedElementBundle.getFloat(KEY_ELEVATION);
445 view.setElevation(elevation);
/frameworks/base/core/jni/
H A Dandroid_view_RenderNode.cpp274 jobject clazz, jlong renderNodePtr, float elevation) {
275 return SET_AND_DIRTY(setElevation, elevation, RenderNode::Z);
273 android_view_RenderNode_setElevation(JNIEnv* env, jobject clazz, jlong renderNodePtr, float elevation) argument
/frameworks/support/design/src/android/support/design/widget/
H A DAppBarLayout.java534 * @deprecated target elevation is now deprecated. AppBarLayout's elevation is now
536 * elevation is set, either by this method or the {@code app:elevation} attribute,
537 * a new state list animator is created which uses the given {@code elevation} value.
542 public void setTargetElevation(float elevation) { argument
544 ViewUtilsLollipop.setDefaultAppBarLayoutStateListAnimator(this, elevation);
549 * @deprecated target elevation is now deprecated. AppBarLayout's elevation is now
1154 // Update the AppBarLayout's drawable state (for any elevation change
[all...]
/frameworks/base/services/core/jni/
H A Dcom_android_server_location_GnssLocationProvider.cpp173 info.elevation = sv_status->sv_list[i].elevation;
747 elev[i] = info.elevation;
/frameworks/base/core/java/android/view/
H A DWindow.java1379 * Sets the window elevation.
1385 * @param elevation The window elevation.
1389 public void setElevation(float elevation) {} argument
1392 * Gets the window elevation.
H A DView.java4177 float elevation = 0;
4263 elevation = a.getDimension(attr, 0);
4682 setElevation(elevation);
12777 * {@link #getElevation() elevation} property.
12789 * the x value passed in and the current {@link #getElevation() elevation} property.
12798 * The base elevation of this view relative to its parent, in pixels.
12808 * Sets the base elevation of this view, in pixels.
12812 public void setElevation(float elevation) { argument
12813 if (elevation != getElevation()) {
12815 mRenderNode.setElevation(elevation);
[all...]
/frameworks/base/core/java/android/widget/
H A DPopupWindow.java531 * @return the elevation for this popup window in pixels
540 * Specifies the elevation for this popup window.
542 * @param elevation the popup's elevation in pixels
546 public void setElevation(float elevation) { argument
547 mElevation = elevation;
/frameworks/support/core-ui/java/android/support/v4/widget/
H A DDrawerLayout.java181 /** Whether the drawer shadow comes from setting elevation on the drawer. */
412 * Sets the base elevation of the drawer(s) relative to the parent, in pixels. Note that the
413 * elevation change is only supported in API 21 and above.
415 * @param elevation The base depth position of the view, in pixels.
417 public void setDrawerElevation(float elevation) { argument
418 mDrawerElevation = elevation;
428 * The base elevation of the drawer(s) relative to the parent, in pixels. Note that the
429 * elevation change is only supported in API 21 and above. For unsupported API levels, 0 will
430 * be returned as the elevation.
455 * nonzero intrinsic width. For API 21 and above, an elevation wil
[all...]
/frameworks/wilhelm/include/SLES/
H A DOpenSLES.h1726 SLmillidegree elevation,
1779 SLmillidegree elevation,

Completed in 2388 milliseconds

12