Searched refs:bottom (Results 226 - 250 of 473) sorted by relevance

1234567891011>>

/frameworks/av/media/img_utils/src/
H A DDngUtils.cpp135 /*bottom*/activeAreaHeight - 1,
153 /*bottom*/activeAreaHeight - 1,
171 /*bottom*/activeAreaHeight - 1,
189 /*bottom*/activeAreaHeight - 1,
208 uint32_t bottom,
250 bottom,
206 addGainMap(uint32_t top, uint32_t left, uint32_t bottom, uint32_t right, uint32_t plane, uint32_t planes, uint32_t rowPitch, uint32_t colPitch, uint32_t mapPointsV, uint32_t mapPointsH, double mapSpacingV, double mapSpacingH, double mapOriginV, double mapOriginH, uint32_t mapPlanes, const float* mapGains) argument
/frameworks/av/media/libstagefright/colorconversion/
H A DSoftwareRenderer.cpp155 // NOTE: native window uses extended right-bottom coordinate
160 crop.bottom = mCropBottom + 1;
162 crop.left, crop.top, crop.right, crop.bottom, bufWidth, bufHeight);
/frameworks/base/core/java/android/gesture/
H A DGestureStroke.java69 bx.bottom = p.y;
89 boundingBox = new RectF(bbx.left, bbx.top, bbx.right, bbx.bottom);
/frameworks/base/core/java/android/text/method/
H A DTouch.java48 final int bottom = layout.getLineForVertical(y + widget.getHeight() - verticalPadding);
53 for (int i = top; i <= bottom; i++) {
/frameworks/base/core/java/android/transition/
H A DChangeImageTransform.java94 int bottom = view.getBottom();
96 Rect bounds = new Rect(left, top, right, bottom);
H A DExplode.java64 int bottom = top + view.getHeight();
65 transitionValues.values.put(PROPNAME_SCREEN_BOUNDS, new Rect(left, top, right, bottom));
/frameworks/base/core/java/android/view/
H A DWindowManagerPolicy.java228 * @return Rect The left, top, right, and bottom insets, relative
238 * @return Rect The left, top, right, and bottom insets, relative
255 * @param bottom The bottom-most window to consider when determining this.
257 public boolean getNeedsMenuLw(WindowState bottom); argument
498 public void setDisplayOverscan(Display display, int left, int top, int right, int bottom); argument
838 * Returns the bottom-most layer of the system decor, above which no policy decor should
/frameworks/base/core/java/android/view/inputmethod/
H A DSparseRectFArray.java46 * {@code rects[mKeys[0]].right}, {@code rects[mKeys[0]].bottom},
48 * {@code rects[mKeys[1]].right}, {@code rects[mKeys[1]].bottom},
197 * @param bottom bottom of the rectangle.
203 final float left, final float top, final float right, final float bottom,
211 mCoordinates[baseCoordinatesIndex + 3] = bottom;
202 append(final int key, final float left, final float top, final float right, final float bottom, final int flags) argument
/frameworks/base/core/java/android/webkit/
H A DWebViewProvider.java147 public boolean pageDown(boolean bottom); argument
338 public boolean setFrame(int left, int top, int right, int bottom); argument
/frameworks/base/core/java/android/widget/
H A DScrollBarDrawable.java117 if (canvas.quickReject(r.left, r.top, r.right, r.bottom, Canvas.EdgeType.AA)) {
174 bounds.left + offset + length, bounds.bottom);
/frameworks/base/core/java/com/android/internal/view/menu/
H A DIconMenuItemView.java188 // When there is an icon, make sure the text is at the bottom
241 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
242 super.onLayout(changed, left, top, right, bottom);
/frameworks/base/core/jni/
H A Dandroid_view_SurfaceControl.cpp69 jfieldID bottom; member in struct:android::__anon874
130 int bottom = env->GetIntField(sourceCropObj, gRectClassInfo.bottom); local
131 Rect sourceCrop(left, top, right, bottom);
201 int bottom = env->GetIntField(sourceCropObj, gRectClassInfo.bottom); local
202 Rect sourceCrop(left, top, right, bottom);
670 gRectClassInfo.bottom = env->GetFieldID(rectClazz, "bottom", "I");
/frameworks/base/graphics/java/android/graphics/pdf/
H A DPdfRenderer.java357 || destClip.bottom > destination.getHeight()) {
378 final int contentBottom = (destClip != null) ? destClip.bottom
/frameworks/base/libs/hwui/
H A DDamageAccumulator.cpp213 void DamageAccumulator::dirty(float left, float top, float right, float bottom) { argument
214 mHead->pendingDirty.join(left, top, right, bottom);
H A DFontRenderer.cpp554 (x1 > mClip->right || y1 < mClip->top || x2 < mClip->left || y4 > mClip->bottom)) {
564 mBounds->bottom = fmax(mBounds->bottom, y1);
582 mBounds->bottom = fmax(mBounds->bottom, fmax(y1, fmax(y2, fmax(y3, y4))));
618 uint32_t paddedHeight = (uint32_t) (bounds.top - bounds.bottom) + 2 * intRadius;
640 int penY = intRadius - bounds.bottom;
642 if ((bounds.right > bounds.left) && (bounds.top > bounds.bottom)) {
H A DLayer.h100 regionRect.right * texX, (height - regionRect.bottom) * texY);
110 void updateDeferred(RenderNode* renderNode, int left, int top, int right, int bottom);
H A DRenderProperties.cpp168 (int)layerBounds.left, (int)layerBounds.top, (int)layerBounds.right, (int)layerBounds.bottom,
176 (int)clipRect.left, (int)clipRect.top, (int)clipRect.right, (int)clipRect.bottom);
/frameworks/base/media/java/android/media/tv/
H A DTvInputService.java560 * @param bottom Bottom position in pixels, relative to the overlay view.
566 final int bottom) {
567 if (left > right || top > bottom) {
575 + right + ", b=" + bottom + ",)");
577 mSessionCallback.onLayoutSurface(left, top, right, bottom);
976 onOverlayViewSizeChanged(frame.right - frame.left, frame.bottom - frame.top);
1003 frame.right - frame.left, frame.bottom - frame.top,
1023 onOverlayViewSizeChanged(frame.right - frame.left, frame.bottom - frame.top);
1032 mWindowParams.height = frame.bottom - frame.top;
565 layoutSurface(final int left, final int top, final int right, final int bottom) argument
/frameworks/base/opengl/java/android/opengl/
H A DMatrix.java264 * @param bottom
270 float left, float right, float bottom, float top,
275 if (bottom == top) {
276 throw new IllegalArgumentException("bottom == top");
283 final float r_height = 1.0f / (top - bottom);
289 final float ty = -(top + bottom) * r_height;
318 * @param bottom
324 float left, float right, float bottom, float top,
329 if (top == bottom) {
330 throw new IllegalArgumentException("top == bottom");
269 orthoM(float[] m, int mOffset, float left, float right, float bottom, float top, float near, float far) argument
323 frustumM(float[] m, int offset, float left, float right, float bottom, float top, float near, float far) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
H A DUtilities.java69 r.bottom = (int) (r.bottom * scale + 0.5f);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskViewThumbnail.java105 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
106 super.onLayout(changed, left, top, right, bottom);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationContentView.java81 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
82 super.onLayout(changed, left, top, right, bottom);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DUserAvatarView.java128 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
129 super.onLayout(changed, left, top, right, bottom);
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
H A DGLES20Canvas.java596 int bottom = texture.getHeight();
601 bottom -= 1;
603 outRect.set(left, top, right, bottom);
652 source.bottom /= texHeight;
661 if (source.bottom > yBound) {
662 target.bottom = target.top + target.height() * (yBound - source.top) / source.height();
663 source.bottom = yBound;
1001 bounds.bottom = Math.round(mTempMatrix[MATRIX_SIZE + 5]);
/frameworks/native/opengl/tools/glgen/specs/gles11/
H A DGLES10.spec40 void glFrustumf ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar )
41 void glFrustumx ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar )
73 void glOrthof ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar )
74 void glOrthox ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar )

Completed in 3206 milliseconds

1234567891011>>