Searched defs:left (Results 226 - 250 of 262) sorted by relevance

1234567891011

/frameworks/base/core/java/android/widget/
H A DGridLayout.java202 * {@link android.view.View#getLeft() left},
915 int left = getPaddingLeft() + insets.left;
922 int x = left + xs[i];
931 drawLine(canvas, left, y, right, y, paint);
1112 This method is then left with the simpler task of applying margins, gravity
1116 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
1119 int targetWidth = right - left;
2068 int left, int top, int right, int bottom,
2071 setMargins(left, to
2066 LayoutParams( int width, int height, int left, int top, int right, int bottom, Spec rowSpec, Spec columnSpec) argument
[all...]
H A DNumberPicker.java759 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
761 super.onLayout(changed, left, top, right, bottom);
2541 int left, int top, int right, int bottom) {
2551 boundsInParent.set(left, top, right, bottom);
2563 String text, int left, int top, int right, int bottom) {
2574 boundsInParent.set(left, top, right, bottom);
2596 private AccessibilityNodeInfo createAccessibilityNodeInfoForNumberPicker(int left, int top, argument
2619 boundsInParent.set(left, top, right, bottom);
2540 createAccessibiltyNodeInfoForInputText( int left, int top, int right, int bottom) argument
2562 createAccessibilityNodeInfoForVirtualButton(int virtualViewId, String text, int left, int top, int right, int bottom) argument
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES10.cpp1074 /* void glFrustumf ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar ) */
1077 (JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) {
1079 (GLfloat)left,
1088 /* void glFrustumx ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar ) */
1091 (JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar) {
1093 (GLfixed)left,
2420 /* void glOrthof ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar ) */
2423 (JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) {
2425 (GLfloat)left,
2434 /* void glOrthox ( GLfixed left, GLfixe
1076 android_glFrustumf__FFFFFF(JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) argument
1090 android_glFrustumx__IIIIII(JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar) argument
2422 android_glOrthof__FFFFFF(JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) argument
2436 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.cpp987 /* void glFrustumxOES ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar ) */
990 (JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar) {
992 (GLfixed)left,
1820 /* void glOrthoxOES ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar ) */
1823 (JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar) {
1825 (GLfixed)left,
2826 /* void glFrustumfOES ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar ) */
2829 (JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) {
2831 (GLfloat)left,
2840 /* void glOrthofOES ( GLfloat left, GLfloa
989 android_glFrustumxOES__IIIIII(JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar) argument
1822 android_glOrthoxOES__IIIIII(JNIEnv *_env, jobject _this, jint left, jint right, jint bottom, jint top, jint zNear, jint zFar) argument
2828 android_glFrustumfOES__FFFFFF(JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) argument
2842 android_glOrthofOES__FFFFFF(JNIEnv *_env, jobject _this, jfloat left, jfloat right, jfloat bottom, jfloat top, jfloat zNear, jfloat zFar) argument
[all...]
/frameworks/base/graphics/java/android/graphics/
H A DCanvas.java81 * Flag for drawTextRun indicating left-to-right run direction.
87 * Flag for drawTextRun indicating right-to-left run direction.
462 return saveLayer(bounds.left, bounds.top, bounds.right, bounds.bottom, paint, saveFlags);
475 public int saveLayer(float left, float top, float right, float bottom, @Nullable Paint paint, argument
477 return native_saveLayer(mNativeCanvasWrapper, left, top, right, bottom,
483 * Convenience for saveLayer(left, top, right, bottom, paint, {@link #ALL_SAVE_FLAG})
485 public int saveLayer(float left, float top, float right, float bottom, @Nullable Paint paint) { argument
486 return saveLayer(left, top, right, bottom, paint, ALL_SAVE_FLAG);
521 return saveLayerAlpha(bounds.left, bounds.top, bounds.right, bounds.bottom, alpha, saveFlags);
534 public int saveLayerAlpha(float left, floa argument
544 saveLayerAlpha(float left, float top, float right, float bottom, int alpha) argument
761 clipRect(float left, float top, float right, float bottom, @NonNull Region.Op op) argument
779 clipRect(float left, float top, float right, float bottom) argument
797 clipRect(int left, int top, int right, int bottom) argument
950 quickReject(float left, float top, float right, float bottom, @NonNull EdgeType type) argument
1145 drawRect(float left, float top, float right, float bottom, @NonNull Paint paint) argument
1166 drawOval(float left, float top, float right, float bottom, @NonNull Paint paint) argument
1234 drawArc(float left, float top, float right, float bottom, float startAngle, float sweepAngle, boolean useCenter, @NonNull Paint paint) argument
1261 drawRoundRect(float left, float top, float right, float bottom, float rx, float ry, @NonNull Paint paint) argument
1336 drawBitmap(@onNull Bitmap bitmap, float left, float top, @Nullable Paint paint) argument
1995 native_clipRect(long nativeCanvas, float left, float top, float right, float bottom, int regionOp) argument
2013 native_quickReject(long nativeCanvas, float left, float top, float right, float bottom) argument
2031 native_drawRect(long nativeCanvas, float left, float top, float right, float bottom, long nativePaint) argument
2035 native_drawOval(long nativeCanvas, float left, float top, float right, float bottom, long nativePaint) argument
2040 native_drawArc(long nativeCanvas, float left, float top, float right, float bottom, float startAngle, float sweep, boolean useCenter, long nativePaint) argument
2044 native_drawRoundRect(long nativeCanvas, float left, float top, float right, float bottom, float rx, float ry, long nativePaint) argument
2050 native_drawBitmap(long nativeCanvas, long nativeBitmap, float left, float top, long nativePaintOrZero, int canvasDensity, int screenDensity, int bitmapDensity) argument
[all...]
/frameworks/base/libs/hwui/
H A DDisplayListOp.h241 DrawBoundedOp(float left, float top, float right, float bottom, const SkPaint* paint) argument
242 : DrawOp(paint), mLocalBounds(left, top, right, bottom) {}
253 mLocalBounds.left = fminf(mLocalBounds.left, points[i]);
338 SaveLayerOp(float left, float top, float right, float bottom, int alpha, int flags) argument
339 : mArea(left, top, right, bottom)
346 SaveLayerOp(float left, float top, float right, float bottom, const SkPaint* paint, int flags) argument
347 : mArea(left, top, right, bottom)
361 deferStruct.mRenderer.saveLayerDeferred(mArea.left, mArea.top, mArea.right, mArea.bottom,
366 renderer.saveLayer(mArea.left, mAre
547 ClipRectOp(float left, float top, float right, float bottom, SkRegion::Op op) argument
838 DrawPatchOp(const SkBitmap* bitmap, const Res_png_9patch* patch, float left, float top, float right, float bottom, const SkPaint* paint) argument
999 DrawStrokableOp(float left, float top, float right, float bottom, const SkPaint* paint) argument
1026 DrawRectOp(float left, float top, float right, float bottom, const SkPaint* paint) argument
1076 DrawRoundRectOp(float left, float top, float right, float bottom, float rx, float ry, const SkPaint* paint) argument
1107 DrawRoundRectPropsOp(float* left, float* top, float* right, float* bottom, float *rx, float *ry, const SkPaint* paint) argument
1178 DrawOvalOp(float left, float top, float right, float bottom, const SkPaint* paint) argument
1195 DrawArcOp(float left, float top, float right, float bottom, float startAngle, float sweepAngle, bool useCenter, const SkPaint* paint) argument
1223 float left, top, offset; local
[all...]
H A DOpenGLRenderer.cpp187 void OpenGLRenderer::setupFrameState(float left, float top, argument
190 initializeSaveStack(left, top, right, bottom, mLightCenter);
192 mTilingClip.set(left, top, right, bottom);
201 discardFramebuffer(mTilingClip.left, mTilingClip.top, mTilingClip.right, mTilingClip.bottom);
216 return clear(mTilingClip.left, mTilingClip.top,
220 status_t OpenGLRenderer::prepareDirty(float left, float top, argument
223 setupFrameState(left, top, right, bottom, opaque);
239 void OpenGLRenderer::discardFramebuffer(float left, float top, float right, float bottom) { argument
244 left <= 0.0f && top <= 0.0f && right >= getWidth() && bottom >= getHeight()) {
253 status_t OpenGLRenderer::clear(float left, floa argument
601 saveLayer(float left, float top, float right, float bottom, const SkPaint* paint, int flags, const SkPath* convexMask) argument
661 saveLayerDeferred(float left, float top, float right, float bottom, const SkPaint* paint, int flags) argument
737 createLayer(float left, float top, float right, float bottom, const SkPaint* paint, int flags, const SkPath* convexMask) argument
1233 dirtyLayer(const float left, const float top, const float right, const float bottom, const mat4 transform) argument
1242 dirtyLayer(const float left, const float top, const float right, const float bottom) argument
1517 quickRejectSetupScissor(float left, float top, float right, float bottom, const SkPaint* paint) argument
1714 setupDrawModelView(ModelViewMode mode, bool offset, float left, float top, float right, float bottom, bool ignoreTransform) argument
1933 drawAlphaBitmap(Texture* texture, float left, float top, const SkPaint* paint) argument
2039 float left = FLT_MAX; local
2237 drawPatch(const SkBitmap* bitmap, const Res_png_9patch* patch, float left, float top, float right, float bottom, const SkPaint* paint) argument
2250 drawPatch(const SkBitmap* bitmap, const Patch* mesh, AssetAtlas::Entry* entry, float left, float top, float right, float bottom, const SkPaint* paint) argument
2470 drawShape(float left, float top, const PathTexture* texture, const SkPaint* paint) argument
2483 drawRoundRect(float left, float top, float right, float bottom, float rx, float ry, const SkPaint* p) argument
2524 drawOval(float left, float top, float right, float bottom, const SkPaint* p) argument
2547 drawArc(float left, float top, float right, float bottom, float startAngle, float sweepAngle, bool useCenter, const SkPaint* p) argument
2582 drawRect(float left, float top, float right, float bottom, const SkPaint* p) argument
3090 const float left = x; local
3184 float left = FLT_MAX; local
3236 drawColorRect(float left, float top, float right, float bottom, const SkPaint* paint, bool ignoreTransform) argument
3261 drawTextureRect(float left, float top, float right, float bottom, Texture* texture, const SkPaint* paint) argument
3297 drawTextureMesh(float left, float top, float right, float bottom, GLuint texture, const SkPaint* paint, bool blend, GLvoid* vertices, GLvoid* texCoords, GLenum drawMode, GLsizei elementsCount, bool swapSrcDst, bool ignoreTransform, GLuint vbo, ModelViewMode modelViewMode, bool dirty) argument
3324 drawIndexedTextureMesh(float left, float top, float right, float bottom, GLuint texture, const SkPaint* paint, bool blend, GLvoid* vertices, GLvoid* texCoords, GLenum drawMode, GLsizei elementsCount, bool swapSrcDst, bool ignoreTransform, GLuint vbo, ModelViewMode modelViewMode, bool dirty) argument
3351 drawAlpha8TextureMesh(float left, float top, float right, float bottom, GLuint texture, const SkPaint* paint, GLvoid* vertices, GLvoid* texCoords, GLenum drawMode, GLsizei elementsCount, bool ignoreTransform, ModelViewMode modelViewMode, bool dirty) argument
[all...]
/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 )
618 float left,
626 // C function void glFrustumx ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar )
629 int left,
974 // C function void glOrthof ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar )
977 float left,
985 // C function void glOrthox ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar )
988 int left,
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
1669 arg("left", left);
1677 mgl.glFrustumf(left, right, bottom, top, near, far);
1681 public void glFrustumx(int left, int right, int bottom, int top, int near, argument
1684 arg("left", left);
1692 mgl.glFrustumx(left, right, bottom, top, near, far);
2158 public void glOrthof(float left, float right, float bottom, float top, argument
2161 arg("left", lef
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 )
432 float left,
440 // C function void glFrustumx ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar )
443 int left,
799 // C function void glOrthof ( GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar )
802 float left,
810 // C function void glOrthox ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar )
813 int left,
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/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNotificationPanelView.java225 public void onLayoutChange(View v, int left, int top, int right,
283 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
284 super.onLayout(changed, left, top, right, bottom);
926 public void onLayoutChange(View v, int left, int top, int right, int bottom, int oldLeft,
/frameworks/opt/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java310 textBounds.left = 0;
653 calculateAvailableWidth() - iconWidth - widths[0] - backgroundPadding.left
662 + iconWidth + backgroundPadding.left + backgroundPadding.right);
683 mChipTextEndPadding + backgroundPadding.left :
690 backgroundPadding.left;
691 result.left = iconX;
705 final RectF dst = new RectF(bitMapResult.left, bitMapResult.top, bitMapResult.right,
1026 if (getWidth() > 0 && bounds.right - bounds.left >
1058 // to the left.
1667 // Align the alternates popup with the left sid
3115 float left; field in class:RecipientEditTextView.ChipBitmapContainer
[all...]
/frameworks/rs/driver/
H A DrsdRuntimeStubs.cpp448 int32_t *left, int32_t *right, int32_t *top, int32_t *bottom) {
450 rsrMeasureTextAlloc(rsc, a, left, right, top, bottom);
454 int32_t *left, int32_t *right, int32_t *top, int32_t *bottom) {
456 rsrMeasureText(rsc, text, left, right, top, bottom);
447 SC_MeasureTextAlloc(Allocation *a, int32_t *left, int32_t *right, int32_t *top, int32_t *bottom) argument
453 SC_MeasureText(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 DGridLayoutManager.java185 * (optical) left/right: coordinate quantities - do not reverse
843 // Iterate from left to right, which is a different index traversal
1256 int left, top, right, bottom;
1258 left = start;
1264 left = startSecondary;
1268 v.layout(left, top, right, bottom);
1269 updateChildOpticalInsets(v, left, top, right, bottom);
1273 private void updateChildOpticalInsets(View v, int left, int top, int right, int bottom) { argument
1275 p.setOpticalInsets(left - v.getLeft(), top - v.getTop(),
2296 // we either align "firstView" to left/to
[all...]
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java187 * {@link android.view.View#getLeft() left},
1001 This method is then left with the simpler task of applying margins, gravity
1005 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
1008 int targetWidth = right - left;
1943 int left, int top, int right, int bottom,
1946 setMargins(left, top, right, bottom);
2641 * For horizontal alignments measurement is made from the left edge of the component.
2758 * Indicates that a view should be aligned with the <em>left</em>
1941 LayoutParams( int width, int height, int left, int top, int right, int bottom, Spec rowSpec, Spec columnSpec) argument
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DStaggeredGridLayoutManager.java504 * {@link #getReverseLayout()} is {@code true}, elements will be laid out starting from left.
1001 widthSpec = updateSpecWithExtra(widthSpec, lp.leftMargin + insets.left,
1548 private void layoutDecoratedWithMargins(View child, int left, int top, int right, int bottom) { argument
1553 + ". l:" + left + ",t:" + top
1556 layoutDecorated(child, left + lp.leftMargin, top + lp.topMargin, right - lp.rightMargin
/frameworks/webview/chromium/java/com/android/webview/chromium/
H A DWebViewChromium.java1868 public boolean setFrame(final int left, final int top, final int right, final int bottom) { argument
1869 return mWebViewPrivate.super_setFrame(left, top, right, bottom);
/frameworks/av/media/libstagefright/
H A DACodec.cpp3848 int32_t left, top, right, bottom; local
3851 notify->findRect("crop", &left, &top, &right, &bottom)) {
3854 reply->setRect("crop", left, top, right + 1, bottom + 1);
4637 &crop.left, &crop.top, &crop.right, &crop.bottom)) {
/frameworks/av/media/libstagefright/codecs/avc/common/include/
H A Davcint_common.h471 int left; member in struct:tagNeighborAvailability
634 uint8 *pintra_pred_left; /* pointer to the left intra prediction value */
/frameworks/av/services/audioflinger/
H A DThreads.cpp528 if (mask & AUDIO_CHANNEL_OUT_FRONT_LEFT) s.append("front-left, ");
532 if (mask & AUDIO_CHANNEL_OUT_BACK_LEFT) s.append("back-left, ");
534 if (mask & AUDIO_CHANNEL_OUT_FRONT_LEFT_OF_CENTER) s.append("front-left-of-center, ");
537 if (mask & AUDIO_CHANNEL_OUT_SIDE_LEFT) s.append("side-left, ");
540 if (mask & AUDIO_CHANNEL_OUT_TOP_FRONT_LEFT) s.append("top-front-left, ");
543 if (mask & AUDIO_CHANNEL_OUT_TOP_BACK_LEFT) s.append("top-back-left, ");
548 if (mask & AUDIO_CHANNEL_IN_LEFT) s.append("left, ");
552 if (mask & AUDIO_CHANNEL_IN_LEFT_PROCESSED) s.append("left-processed, ");
3471 ALOGV("Track left volume out of range: %.3g", vlf);
3956 float left, righ local
[all...]
/frameworks/base/core/java/android/view/
H A DKeyEvent.java56 * event: this is left to the IME's discretion, and in fact sending such events is
87 * feature key for selecting a software defined function shown on the bottom left
328 * or the top left trigger button. */
336 * or the bottom left trigger button. */
343 * On a game controller, the left thumb button indicates that the left (or only)
874 * <p>This mask is used to check whether the left ALT meta key is pressed.</p>
902 * <p>This mask is used to check whether the left SHIFT meta key is pressed.</p>
946 * <p>This mask is used to check whether the left CTRL meta key is pressed.</p>
974 * <p>This mask is used to check whether the left MET
2107 metaStateFilterDirectionalModifiers(int metaState, int modifiers, int basic, int left, int right) argument
[all...]
/frameworks/base/core/java/android/webkit/
H A DWebView.java2053 public boolean super_setFrame(int left, int top, int right, int bottom) { argument
2054 return WebView.super.setFrame(left, top, right, bottom);
2434 protected boolean setFrame(int left, int top, int right, int bottom) { argument
2435 return mProvider.getViewDelegate().setFrame(left, top, right, bottom);
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/
H A DGL10.java497 float left,
506 int left,
746 float left,
755 int left,
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/Keyguard/src/com/android/keyguard/
H A DPagedView.java171 // If true, modify alpha of neighboring pages as user scrolls left/right
720 // of the left/right gap and use that as the gap between each page.
743 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
1062 mTmpRect.set(mViewport.left - mViewport.width() / 2, mViewport.top,
1471 int leftBufferEdge = (int) (mapPointFromViewToParent(this, mViewport.left, 0)[0]
1604 // move to the left and fling to the right will register as a fling to the right.
1780 int left;
1783 left = getRelativeChildOffset(i);
1784 right = (left + getScaledMeasuredWidth(getPageAt(i)));
1785 if (left <
[all...]

Completed in 5247 milliseconds

1234567891011