Searched defs:top (Results 301 - 325 of 343) sorted by relevance

<<11121314

/frameworks/base/core/java/android/widget/
H A DNumberPicker.java129 * The strength of fading in the top and bottom while drawing the selector.
449 * The top of the top selection divider.
776 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
778 super.onLayout(changed, left, top, right, bottom);
1621 // draw the top divider
2645 int left, int top, int right, int bottom) {
2655 boundsInParent.set(left, top, right, bottom);
2667 String text, int left, int top, int right, int bottom) {
2678 boundsInParent.set(left, top, righ
2644 createAccessibiltyNodeInfoForInputText( int left, int top, int right, int bottom) argument
2666 createAccessibilityNodeInfoForVirtualButton(int virtualViewId, String text, int left, int top, int right, int bottom) argument
2700 createAccessibilityNodeInfoForNumberPicker(int left, int top, int right, int bottom) argument
[all...]
H A DRemoteViews.java875 rect.top = (int) (pos[1] * appScale + 0.5f);
1901 public ViewPaddingAction(int viewId, int left, int top, int right, int bottom) { argument
1904 this.top = top;
1912 top = parcel.readInt();
1921 dest.writeInt(top);
1930 target.setPadding(left, top, right, bottom);
1937 int left, top, right, bottom; field in class:RemoteViews.ViewPaddingAction
2552 * @param top The id of a drawable to place above the text, or 0
2556 public void setTextViewCompoundDrawables(int viewId, int left, int top, in argument
2571 setTextViewCompoundDrawablesRelative(int viewId, int start, int top, int end, int bottom) argument
2610 setTextViewCompoundDrawables(int viewId, Icon left, Icon top, Icon right, Icon bottom) argument
2628 setTextViewCompoundDrawablesRelative(int viewId, Icon start, Icon top, Icon end, Icon bottom) argument
2965 setViewPadding(int viewId, int left, int top, int right, int bottom) argument
[all...]
/frameworks/base/core/java/com/android/internal/policy/
H A DDecorView.java607 drawingBounds.top += frameOffsets.top;
613 drawingBounds.top += framePadding.top - frameOffsets.top;
697 heightSize - mFloatingInsets.top - mFloatingInsets.bottom, AT_MOST);
704 if (mOutsets.top > 0 || mOutsets.bottom > 0) {
709 height + mOutsets.top + mOutsets.bottom, mode);
757 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
758 super.onLayout(changed, left, top, righ
[all...]
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES10.cpp1263 /* void glFrustumf ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar ) */
1266 (JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) {
1271 (GLfloat)top,
1277 /* void glFrustumx ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar ) */
1280 (JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar) {
1285 (GLfixed)top,
2714 /* void glOrthof ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar ) */
2717 (JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) {
2722 (GLfloat)top,
2728 /* void glOrthox ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixe
1265 android_glFrustumf__FFFFFF(JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) argument
1279 android_glFrustumx__IIIIII(JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar) argument
2716 android_glOrthof__FFFFFF(JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) argument
2730 android_glOrthox__IIIIII(JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar) argument
[all...]
H A Dandroid_opengl_GLES11Ext.cpp1198 /* void glFrustumxOES ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar ) */
1201 (JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar) {
1206 (GLfixed)top,
2177 /* void glOrthoxOES ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar ) */
2180 (JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar) {
2185 (GLfixed)top,
3273 /* void glFrustumfOES ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar ) */
3276 (JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) {
3281 (GLfloat)top,
3287 /* void glOrthofOES ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloa
1200 android_glFrustumxOES__IIIIII(JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar) argument
2179 android_glOrthoxOES__IIIIII(JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar) argument
3275 android_glFrustumfOES__FFFFFF(JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) argument
3289 android_glOrthofOES__FFFFFF(JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) argument
[all...]
/frameworks/base/media/java/android/media/tv/
H A DTvInputManager.java468 * @param top Top position.
472 public void onLayoutSurface(Session session, int left, int top, int right, int bottom) { argument
651 void postLayoutSurface(final int left, final int top, final int right, argument
656 mSessionCallback.onLayoutSurface(mSession, left, top, right, bottom);
1008 public void onLayoutSurface(int left, int top, int right, int bottom, int seq) {
1015 record.postLayoutSurface(left, top, right, bottom);
/frameworks/base/opengl/java/android/opengl/
H A DGLErrorWrapper.java333 public void glFrustumf(float left, float right, float bottom, float top, argument
336 mgl.glFrustumf(left, right, bottom, top, near, far);
340 public void glFrustumx(int left, int right, int bottom, int top, int near, argument
343 mgl.glFrustumx(left, right, bottom, top, near, far);
607 public void glOrthof(float left, float right, float bottom, float top, argument
610 mgl.glOrthof(left, right, bottom, top, near, far);
614 public void glOrthox(int left, int right, int bottom, int top, int near, argument
617 mgl.glOrthox(left, right, bottom, top, near, far);
H A DGLES10.java615 // C function void glFrustumf ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar )
621 float top,
626 // C function void glFrustumx ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar )
632 int top,
974 // C function void glOrthof ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar )
980 float top,
985 // C function void glOrthox ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar )
991 int top,
617 glFrustumf( float left, float right, float bottom, float top, float zNear, float zFar ) argument
628 glFrustumx( int left, int right, int bottom, int top, int zNear, int zFar ) argument
976 glOrthof( float left, float right, float bottom, float top, float zNear, float zFar ) argument
987 glOrthox( int left, int right, int bottom, int top, int zNear, int zFar ) argument
H A DGLLogWrapper.java1666 public void glFrustumf(float left, float right, float bottom, float top, argument
1672 arg("top", top);
1677 mgl.glFrustumf(left, right, bottom, top, near, far);
1681 public void glFrustumx(int left, int right, int bottom, int top, int near, argument
1687 arg("top", top);
1692 mgl.glFrustumx(left, right, bottom, top, near, far);
2158 public void glOrthof(float left, float right, float bottom, float top, argument
2164 arg("top", to
2173 glOrthox(int left, int right, int bottom, int top, int near, int far) argument
[all...]
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DGLImpl.java429 // C function void glFrustumf ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar )
435 float top,
440 // C function void glFrustumx ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar )
446 int top,
799 // C function void glOrthof ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar )
805 float top,
810 // C function void glOrthox ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar )
816 int top,
431 glFrustumf( float left, float right, float bottom, float top, float zNear, float zFar ) argument
442 glFrustumx( int left, int right, int bottom, int top, int zNear, int zFar ) argument
801 glOrthof( float left, float right, float bottom, float top, float zNear, float zFar ) argument
812 glOrthox( int left, int right, int bottom, int top, int zNear, int zFar ) argument
/frameworks/base/services/core/java/com/android/server/wm/
H A DAppTransition.java105 /** A window in a new activity is being opened on top of an existing one in the same task. */
107 /** The window in the top-most activity is being closed to reveal the
110 /** A window in a new task is being opened on top of an existing one
113 /** A window in the top-most activity is being closed to reveal the
116 /** A window in an existing task is being displayed on top of an existing one
121 /** A window in a new activity that doesn't have a wallpaper is being opened on top of one that
127 /** A window in a new activity is being opened on top of an existing one, and both are on top
130 /** The window in the top-most activity is being closed to reveal the previous activity, and
131 * both are on top o
736 putDefaultNextAppTransitionCoordinates(int left, int top, int width, int height, GraphicBuffer buffer) argument
[all...]
H A DDisplayContent.java271 * (except a future lockscreen TaskStack) moves to the top. */
683 // because the resizing could change the top-left position (in addition to
692 // we always recompute the top-left in this case.
1019 // the top of the method, the caller is obligated to call computeNewConfigurationLocked().
1185 final int topInset = mTmpRect.top;
1187 config.setAppBounds(leftInset /*left*/, topInset /*top*/, leftInset + displayInfo.appWidth /*right*/,
1605 int top = (physHeight - height) / 2;
1606 out.set(left, top, left + width, top + height);
1987 // - If IME is visible, and focus is on top, divide
2428 getNeedsMenu(WindowState top, WindowManagerPolicy.WindowState bottom) argument
[all...]
/frameworks/base/tools/aapt/
H A DCommand.cpp1880 FeatureGroup& top = featureGroups.editTop(); local
1897 top.features.add(name, feature);
1898 addParentFeatures(&top, name);
1904 if (vers > top.openGLESVersion) {
1905 top.openGLESVersion = vers;
2116 // Merge the features defined in the top level (not inside a <feature-group>)
/frameworks/native/opengl/libagl/
H A Dcontext.h469 matrixf_t& top() { return stack[depth]; } function in struct:android::gl::matrix_stack_t
470 const matrixf_t& top() const { return stack[depth]; } function in struct:android::gl::matrix_stack_t
/frameworks/native/services/surfaceflinger/
H A DLayer.cpp569 float insetT = winCrop.top * yScale;
574 crop.top += insetT;
658 activeTransparentRegion.orSelf(Rect(0, 0, s.active.w, activeCrop.top));
661 activeTransparentRegion.orSelf(Rect(0, activeCrop.top,
663 activeTransparentRegion.orSelf(Rect(activeCrop.right, activeCrop.top,
682 mName.string(), transformedFrame.left, transformedFrame.top,
693 "%s (%d)", mName.string(), sourceCrop.left, sourceCrop.top,
951 position.top);
954 position.top, to_string(error).c_str(),
1187 float top local
[all...]
/frameworks/rs/driver/
H A DrsdRuntimeStubs.cpp1094 int *top, int *bottom) {
1096 rsrMeasureText(rsc, text, left, right, top, bottom);
1100 int *top, int *bottom) {
1102 rsrMeasureTextAlloc(rsc, (Allocation *)a.p, left, right, top, bottom);
1093 rsgMeasureText(const char *text, int *left, int *right, int *top, int *bottom) argument
1099 rsgMeasureText(::rs_allocation a, int *left, int *right, int *top, int *bottom) argument
/frameworks/support/compat/java/android/support/v4/view/
H A DViewCompat.java377 * Scroll indicator direction for the top edge of the view.
502 public void postInvalidateOnAnimation(View view, int left, int top, int right, int bottom) { argument
503 view.postInvalidate(left, top, right, bottom);
580 public void setPaddingRelative(View view, int start, int top, int end, int bottom) { argument
581 view.setPadding(start, top, end, bottom);
1017 public void postInvalidateOnAnimation(View view, int left, int top, int right, int bottom) { argument
1018 view.postInvalidateOnAnimation(left, top, right, bottom);
1132 public void setPaddingRelative(View view, int start, int top, int end, int bottom) { argument
1133 view.setPaddingRelative(start, top, end, bottom);
1849 * @param top Th
1853 postInvalidateOnAnimation(View view, int left, int top, int right, int bottom) argument
2378 setPaddingRelative(View view, int start, int top, int end, int bottom) argument
[all...]
/frameworks/support/core-ui/java/android/support/v4/widget/
H A DDrawerLayout.java62 * DrawerLayout acts as a top-level container for window content that allows for
2093 public void onViewPositionChanged(View changedView, int left, int top, int dx, int dy) { argument
2218 public int clampViewPositionVertical(View child, int top, int dy) { argument
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java195 * {@link android.view.View#getTop() top},
216 * the quantity {@code top - layoutParams.topMargin} is the same for all children that
1013 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
1017 int targetHeight = bottom - top;
1946 int left, int top, int right, int bottom,
1949 setMargins(left, top, right, bottom);
2652 * returned should indicate the distance from the top of the view to the
2751 * Indicates that a view should be aligned with the <em>top</em>
2841 return 0; // baseline gravity is top
1944 LayoutParams( int width, int height, int left, int top, int right, int bottom, Spec rowSpec, Spec columnSpec) argument
/frameworks/base/core/java/android/app/assist/
H A DAssistStructure.java486 mY = rect.top - view.getTop();
546 * Returns the top edge of the window, in pixels, relative to the top
1069 * Returns the top edge of this view, in pixels, relative to the top edge of its parent.
1463 public void setDimens(int left, int top, int scrollX, int scrollY, int width, int height) { argument
1465 mNode.mY = top;
/frameworks/base/core/java/android/webkit/
H A DWebView.java713 * Gets the SSL certificate for the main top-level page or null if there is
716 * @return the SSL certificate for the main top-level page
724 * Sets the SSL certificate for the main top-level page.
1166 * @param top true to jump to the top of the page
1169 public boolean pageUp(boolean top) { argument
1171 return mProvider.pageUp(top);
2322 public boolean super_setFrame(int left, int top, int right, int bottom) { argument
2323 return WebView.super.setFrame(left, top, right, bottom);
2831 protected boolean setFrame(int left, int top, in argument
[all...]
/frameworks/base/graphics/java/android/graphics/
H A DPaint.java1387 * metrics, and also increases top and bottom bounds to provide more space.
1676 public float top; field in class:Paint.FontMetrics
1728 public int top; field in class:Paint.FontMetricsInt
1748 return "FontMetricsInt: top=" + top + " ascent=" + ascent +
/frameworks/base/media/java/android/media/
H A DCea708CaptionRenderer.java1079 if (lhs.top != rhs.top) {
1080 return lhs.top - rhs.top;
1201 mRectArray[i].top -= overflowedHeight;
1202 if (mRectArray[i].top < 0) {
1203 mRectArray[i].bottom -= mRectArray[i].top;
1204 mRectArray[i].top = 0;
1207 mRectArray[i].top -= mRectArray[i].bottom - height;
1217 // Step 1. Sort rectangles by position (top
1985 onLayoutChange(View v, int left, int top, int right, int bottom, int oldLeft, int oldTop, int oldRight, int oldBottom) argument
[all...]
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/
H A DGL10.java500 float top,
509 int top,
749 float top,
758 int top,
496 glFrustumf( float left, float right, float bottom, float top, float zNear, float zFar ) argument
505 glFrustumx( int left, int right, int bottom, int top, int zNear, int zFar ) argument
745 glOrthof( float left, float right, float bottom, float top, float zNear, float zFar ) argument
754 glOrthox( int left, int right, int bottom, int top, int zNear, int zFar ) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DExpandableNotificationRow.java618 * Set this notification to be pinned to the top if {@link #isHeadsUp()} is true. By doing this
619 * the notification will be rendered on top of the screen.
1099 * Get the relative top padding of a view relative to this view. This recursively walks up the
1642 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
1643 super.onLayout(changed, left, top, right, bottom);
1656 * the top.

Completed in 286 milliseconds

<<11121314