Searched defs:bottom (Results 101 - 125 of 276) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/view/animation/
H A DAnimationSet.java337 public void initializeInvalidateRegion(int left, int top, int right, int bottom) { argument
339 region.set(left, top, right, bottom);
/frameworks/base/core/java/android/view/inputmethod/
H A DCursorAnchorInfo.java338 * @param bottom y coordinate of the bottom edge of the character in local coordinates.
346 final float right, final float bottom, final int flags) {
353 mCharacterBoundsArrayBuilder.append(index, left, top, right, bottom, flags);
514 * Returns the vertical bottom position of the insertion marker, in the local coordinates
345 addCharacterBounds(final int index, final float left, final float top, final float right, final float bottom, final int flags) argument
/frameworks/base/core/java/android/widget/
H A DCheckedTextView.java336 protected void internalSetPadding(int left, int top, int right, int bottom) { argument
337 super.internalSetPadding(left, top, right, bottom);
401 final int bottom = top + height;
411 checkMarkDrawable.setBounds(mScrollX + left, top, mScrollX + right, bottom);
416 background.setHotspotBounds(mScrollX + left, top, mScrollX + right, bottom);
H A DDayPickerView.java213 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
225 final int height = bottom - top;
/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/java/com/android/internal/widget/
H A DDecorCaptionView.java299 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
/frameworks/base/core/jni/android/graphics/pdf/
H A DPdfEditor.cpp51 jfieldID bottom; member in struct:android::__anon848
210 // PDF's coordinate system origin is left-bottom while in graphics it
277 float bottom; local
280 ? FPDFPage_GetMediaBox(page, &left, &top, &right, &bottom)
281 : FPDFPage_GetCropBox(page, &left, &top, &right, &bottom);
292 env->SetIntField(outBox, gRectClassInfo.bottom, (int) bottom);
325 const int bottom = env->GetIntField(box, gRectClassInfo.bottom); local
328 FPDFPage_SetMediaBox(page, left, top, right, bottom);
[all...]
/frameworks/base/core/jni/
H A Dandroid_view_Surface.cpp73 jfieldID bottom; member in struct:android::__anon947
307 dirtyRect.bottom = env->GetIntField(dirtyRectObj, gRectClassInfo.bottom);
342 dirtyRect.right, dirtyRect.bottom);
349 env->SetIntField(dirtyRectObj, gRectClassInfo.bottom, dirtyRect.bottom);
592 gRectClassInfo.bottom = GetFieldIDOrDie(env, clazz, "bottom", "I");
/frameworks/base/graphics/java/android/graphics/
H A DRegion.java71 nativeSetRect(mNativeRegion, r.left, r.top, r.right, r.bottom);
76 public Region(int left, int top, int right, int bottom) { argument
78 nativeSetRect(mNativeRegion, left, top, right, bottom);
97 return nativeSetRect(mNativeRegion, r.left, r.top, r.right, r.bottom);
102 public boolean set(int left, int top, int right, int bottom) { argument
103 return nativeSetRect(mNativeRegion, left, top, right, bottom);
182 return quickContains(r.left, r.top, r.right, r.bottom);
192 int bottom);
200 return quickReject(r.left, r.top, r.right, r.bottom);
208 public native boolean quickReject(int left, int top, int right, int bottom); argument
191 quickContains(int left, int top, int right, int bottom) argument
267 op(int left, int top, int right, int bottom, Op op) argument
412 nativeSetRect(long native_dst, int left, int top, int right, int bottom) argument
420 nativeOp(long native_dst, int left, int top, int right, int bottom, int op) argument
[all...]
/frameworks/base/libs/hwui/
H A DCanvasState.cpp206 bool CanvasState::clipRect(float left, float top, float right, float bottom, SkRegion::Op op) { argument
207 mSnapshot->clip(Rect(left, top, right, bottom), op);
232 clipRect(bounds.left, bounds.top, bounds.right, bounds.bottom, SkRegion::kIntersect_Op);
263 float right, float bottom,
266 if (mSnapshot->isIgnored() || bottom <= top || right <= left) {
270 Rect r(left, top, right, bottom);
293 float right, float bottom) const {
294 if (mSnapshot->isIgnored() || bottom <= top || right <= left) {
298 Rect r(left, top, right, bottom);
262 calculateQuickRejectForScissor(float left, float top, float right, float bottom, bool* clipRequired, bool* roundRectClipRequired, bool snapOut) const argument
H A DClipArea.cpp39 handlePoint(transformedBounds, transform, r.left, r.bottom);
40 handlePoint(transformedBounds, transform, r.right, r.bottom);
155 rectPath.addRect(bounds.left, bounds.top, bounds.right, bounds.bottom);
211 void ClipArea::setClip(float left, float top, float right, float bottom) { argument
214 mClipRect.set(left, top, right, bottom);
H A DLayerRenderer.cpp47 float left, float top, float right, float bottom, bool opaque) {
55 Rect dirty(left, top, right, bottom);
57 dirty.right >= width && dirty.bottom >= height)) {
62 android::Rect r(dirty.left, dirty.top, dirty.right, dirty.bottom);
68 dirty.left, dirty.top, dirty.right, dirty.bottom, opaque);
71 void LayerRenderer::clear(float left, float top, float right, float bottom, bool opaque) { argument
79 OpenGLRenderer::clear(left, top, right, bottom, opaque);
174 const float v2 = (height - r->bottom) * texY;
178 TextureVertex::set(mesh++, r->left, r->bottom, u1, v2);
179 TextureVertex::set(mesh++, r->right, r->bottom, u
46 prepareDirty(int viewportWidth, int viewportHeight, float left, float top, float right, float bottom, bool opaque) argument
[all...]
H A DMatrix.cpp396 void Matrix4::loadOrtho(float left, float right, float bottom, float top, float near, float far) { argument
400 data[kScaleY] = 2.0f / (top - bottom);
403 data[kTranslateY] = -(top + bottom) / (top - bottom);
455 MUL_ADD_STORE(r.bottom, data[kScaleY], data[kTranslateY]);
463 if (r.top > r.bottom) {
465 r.top = r.bottom;
466 r.bottom = y;
475 r.right, r.bottom,
476 r.left, r.bottom
[all...]
/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/PrintSpooler/src/com/android/printspooler/ui/
H A DPrintPreviewController.java217 public void setPadding(int left, int top , int right, int bottom) { argument
218 mRecyclerView.setPadding(left, top, right, bottom);
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DDessertCaseView.java527 protected void onLayout (boolean changed, int left, int top, int right, int bottom) { argument
529 final float h = bottom-top;
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSAnimator.java329 public void onLayoutChange(View v, int left, int top, int right, int bottom, int oldLeft, argument
H A DQSContainer.java101 // Since we control our own bottom, be whatever size we want.
120 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
121 super.onLayout(changed, left, top, right, bottom);
255 mQsBounds.bottom = mQSPanel.getHeight();
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
H A DTiledImageView.java170 int bottom) {
171 super.onLayout(changed, left, top, right, bottom);
169 onLayout(boolean changed, int left, int top, int right, int bottom) argument
/frameworks/base/tools/layoutlib/bridge/src/android/webkit/
H A DWebView.java143 public boolean pageDown(boolean bottom) { argument
/frameworks/ex/framesequence/jni/
H A DFrameSequence_webp.cpp45 const int bottom = top + frame.height; local
46 return x >= left && x < right && y >= top && y < bottom;
/frameworks/rs/
H A DrsScriptC_LibGL.cpp230 int32_t *left, int32_t *right, int32_t *top, int32_t *bottom) {
240 if (bottom) {
241 *bottom = metrics->bottom;
246 int32_t *left, int32_t *right, int32_t *top, int32_t *bottom) {
252 SetMetrics(&metrics, left, right, top, bottom);
257 int32_t *left, int32_t *right, int32_t *top, int32_t *bottom) {
261 SetMetrics(&metrics, left, right, top, bottom);
229 SetMetrics(Font::Rect *metrics, int32_t *left, int32_t *right, int32_t *top, int32_t *bottom) argument
245 rsrMeasureTextAlloc(Context *rsc, Allocation *a, int32_t *left, int32_t *right, int32_t *top, int32_t *bottom) argument
256 rsrMeasureText(Context *rsc, const char *text, int32_t *left, int32_t *right, int32_t *top, int32_t *bottom) argument
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DStreamingTextView.java245 float x, int top, int y, int bottom, Paint paint) {
244 draw(Canvas canvas, CharSequence text, int start, int end, float x, int top, int y, int bottom, Paint paint) argument
/frameworks/support/v7/appcompat/src/android/support/v7/graphics/drawable/
H A DDrawableWrapper.java206 public void setHotspotBounds(int left, int top, int right, int bottom) { argument
207 DrawableCompat.setHotspotBounds(mDrawable, left, top, right, bottom);
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DBaseWrapContentWithAspectRatioTest.java82 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
83 super.onLayout(changed, left, top, right, bottom);
84 mBehavior.onLayout(changed, left, top, right, bottom);
169 public void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
171 layouts.add(new Pair<>(right - left, bottom - top));

Completed in 3600 milliseconds

1234567891011>>