Searched refs:right (Results 76 - 100 of 554) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/view/animation/
H A DTransformation.java129 mClipRect.right + bounds.right, mClipRect.bottom + bounds.bottom);
148 mClipRect.right + bounds.right, mClipRect.bottom + bounds.bottom);
176 setClipRect(r.left, r.top, r.right, r.bottom);
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DSignalTileView.java88 int left, right;
90 right = mIconFrame.getLeft();
91 left = right - indicator.getMeasuredWidth();
94 right = left + indicator.getMeasuredWidth();
99 right,
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPath_Delegate.java302 /*package*/ static void native_arcTo(long nPath, float left, float top, float right, argument
310 pathDelegate.arcTo(left, top, right, bottom, startAngle, sweepAngle, forceMoveTo);
325 float left, float top, float right, float bottom, int dir) {
331 pathDelegate.addRect(left, top, right, bottom, dir);
335 /*package*/ static void native_addOval(long nPath, float left, float top, float right, argument
343 left, top, right - left, bottom - top), false);
359 /*package*/ static void native_addArc(long nPath, float left, float top, float right, argument
368 left, top, right - left, bottom - top,
373 /*package*/ static void native_addRoundRect(long nPath, float left, float top, float right, argument
382 left, top, right
324 native_addRect(long nPath, float left, float top, float right, float bottom, int dir) argument
386 native_addRoundRect(long nPath, float left, float top, float right, float bottom, float[] radii, int dir) argument
776 arcTo(float left, float top, float right, float bottom, float startAngle, float sweepAngle, boolean forceMoveTo) argument
809 addRect(float left, float top, float right, float bottom, int dir) argument
[all...]
/frameworks/base/core/java/android/view/
H A DRenderNode.java115 * // by x pixels to the right and redraw this view. All the commands
310 return nSetClipBounds(mNativeRenderNode, rect.left, rect.top, rect.right, rect.bottom);
357 outline.mRect.right, outline.mRect.bottom, outline.mRadius, outline.mAlpha);
729 * Sets the right position for the display list.
731 * @param right The right position, in pixels, of the display list
735 public boolean setRight(int right) { argument
736 return nSetRight(mNativeRenderNode, right);
755 * @param right The right positio
763 setLeftTopRightBottom(int left, int top, int right, int bottom) argument
840 nSetLeftTopRightBottom(long renderNode, int left, int top, int right, int bottom) argument
843 nSetRight(long renderNode, int right) argument
852 nSetClipBounds(long renderNode, int left, int top, int right, int bottom) argument
857 nSetOutlineRoundRect(long renderNode, int left, int top, int right, int bottom, float radius, float alpha) argument
[all...]
H A DDisplayListCanvas.java193 nPrepareDirty(mNativeCanvasWrapper, dirty.left, dirty.top, dirty.right, dirty.bottom);
200 private static native void nPrepareDirty(long renderer, int left, int top, int right, int bottom); argument
276 dst.left, dst.top, dst.right, dst.bottom, nativePaint);
286 dst.left, dst.top, dst.right, dst.bottom, nativePaint);
290 float left, float top, float right, float bottom, long paint);
302 CanvasProperty<Float> right, CanvasProperty<Float> bottom, CanvasProperty<Float> rx,
305 right.getNativeContainer(), bottom.getNativeContainer(),
289 nDrawPatch(long renderer, Bitmap bitmap, long chunk, float left, float top, float right, float bottom, long paint) argument
301 drawRoundRect(CanvasProperty<Float> left, CanvasProperty<Float> top, CanvasProperty<Float> right, CanvasProperty<Float> bottom, CanvasProperty<Float> rx, CanvasProperty<Float> ry, CanvasProperty<Paint> paint) argument
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DGradientsActivity.java222 float right = 40.0f + mDrawWidth;
228 mMatrix.postTranslate(right, top);
231 canvas.drawRect(right - mDrawWidth, top, right, top + mDrawHeight, mPaint);
240 canvas.drawRect(left, top, right, top + mDrawHeight, mPaint);
243 right += 40.0f + mDrawWidth;
252 canvas.drawRect(left, bottom - mDrawHeight, right, bottom, mPaint);
264 right = left + mDrawWidth;
271 mMatrix.postTranslate(right, top);
274 canvas.drawRect(left, top, right, botto
[all...]
/frameworks/base/core/java/android/text/method/
H A DTouch.java45 int left, right;
51 right = 0;
55 right = (int) Math.max(right, layout.getLineRight(i));
59 right = availableWidth;
62 final int actualWidth = right - left;
71 // direction to resolve it to left or right
77 x = Math.min(x, right - availableWidth);
/frameworks/base/core/java/android/transition/
H A DTransitionUtils.java97 int right = Math.round(bounds.right);
106 int widthSpec = View.MeasureSpec.makeMeasureSpec(right - left, View.MeasureSpec.EXACTLY);
109 copy.layout(left, top, right, bottom);
134 int right = existingBounds.right;
138 drawable.setBounds(left, top, right, bottom);
/frameworks/base/graphics/java/android/graphics/drawable/shapes/
H A DRoundRectShape.java100 (int) Math.floor(rect.right), (int) Math.floor(rect.bottom),
118 r.right - mInset.right, r.bottom - mInset.bottom);
H A DRectShape.java44 (int) Math.floor(rect.right), (int) Math.floor(rect.bottom));
/frameworks/base/libs/hwui/
H A DDisplayListCanvas.h76 void prepareDirty(float left, float top, float right, float bottom);
102 float left, float top, float right, float bottom, const SkPaint* paint);
107 CanvasPropertyPrimitive* right, CanvasPropertyPrimitive* bottom,
156 virtual int saveLayer(float left, float top, float right, float bottom, const SkPaint* paint,
158 virtual int saveLayerAlpha(float left, float top, float right, float bottom,
162 return saveLayer(left, top, right, bottom, &paint, flags);
178 virtual bool quickRejectRect(float left, float top, float right, float bottom) const override;
181 virtual bool clipRect(float left, float top, float right, float bottom, SkRegion::Op op) override;
207 virtual void drawRect(float left, float top, float right, float bottom, const SkPaint& paint) override;
208 virtual void drawRoundRect(float left, float top, float right, floa
[all...]
H A DDamageAccumulator.h50 void dirty(float left, float top, float right, float bottom);
H A DUvMapper.h86 * - right = max. U
92 texCoords.right = lerp(mMinU, mMaxU, texCoords.right);
/frameworks/base/opengl/java/android/opengl/
H A DGLU.java88 * @param right
92 public static void gluOrtho2D(GL10 gl, float left, float right, argument
94 gl.glOrthof(left, right, bottom, top, -1.0f, 1.0f);
116 float right = top * aspect;
117 gl.glFrustumf(left, right, bottom, top, zNear, zFar);
/frameworks/native/libs/ui/tests/
H A DRegion_test.cpp29 EXPECT_FALSE((rhs->right > lhs->left && rhs->right < lhs->right) ||
30 (rhs->left > lhs->left && rhs->left < lhs->right));
/frameworks/base/core/jni/android/graphics/pdf/
H A DPdfEditor.cpp50 jfieldID right; member in struct:android::__anon820
276 float right; local
280 ? FPDFPage_GetMediaBox(page, &left, &top, &right, &bottom)
281 : FPDFPage_GetCropBox(page, &left, &top, &right, &bottom);
291 env->SetIntField(outBox, gRectClassInfo.right, (int) right);
324 const int right = env->GetIntField(box, gRectClassInfo.right); local
328 FPDFPage_SetMediaBox(page, left, top, right, bottom);
330 FPDFPage_SetCropBox(page, left, top, right, botto
[all...]
/frameworks/data-binding/compiler/src/test/java/android/databinding/
H A DBindingExpressionParserTest.java241 assertEquals("two", ((PrimaryContext) expression.right).identifier().getText());
291 assertTrue(expression.right instanceof ExpressionContext);
292 String two = ((PrimaryContext) expression.right).literal().javaLiteral().getText();
303 assertTrue(expression.right instanceof ExpressionContext);
304 String two = ((PrimaryContext) expression.right).literal().javaLiteral().getText();
315 assertTrue(expression.right instanceof ExpressionContext);
316 String two = ((PrimaryContext) expression.right).literal().javaLiteral().getText();
327 assertTrue(expression.right instanceof ExpressionContext);
328 String two = ((PrimaryContext) expression.right).literal().javaLiteral().getText();
339 assertTrue(expression.right instanceo
[all...]
/frameworks/base/core/java/android/widget/
H A DCheckedTextView.java328 protected void internalSetPadding(int left, int top, int right, int bottom) { argument
329 super.internalSetPadding(left, top, right, bottom);
395 final int right;
398 right = left + mCheckMarkWidth;
400 right = width - mBasePadding;
401 left = right - mCheckMarkWidth;
403 checkMarkDrawable.setBounds(mScrollX + left, top, mScrollX + right, bottom);
408 background.setHotspotBounds(mScrollX + left, top, mScrollX + right, bottom);
/frameworks/base/media/java/android/media/tv/
H A DITvInputSessionCallback.aidl39 void onLayoutSurface(int left, int top, int right, int bottom);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DAnimateableViewBounds.java48 mSourceView.getWidth() - mClipRect.right,
81 mSourceView.getWidth() - mClipRect.right,
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DSpeedBumpView.java60 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
61 super.onLayout(changed, left, top, right, bottom);
H A DStackScrollerDecorView.java48 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
49 super.onLayout(changed, left, top, right, bottom);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
H A Dstats_scorer.cpp45 jfloat left, jfloat top, jfloat right, jfloat bottom, jfloatArray statsArray)
49 int xEnd = static_cast<int>(width * right);
43 Java_androidx_media_filterpacks_numeric_StatsFilter_regionscore( JNIEnv* env, jobject thiz, jobject imageBuffer, jint width, jint height, jfloat left, jfloat top, jfloat right, jfloat bottom, jfloatArray statsArray) argument
/frameworks/compile/mclinker/lib/Core/
H A DInputTree.cpp26 pMover.connect(pRoot, pTree.m_Root.node.right);
29 pTree.m_Root.node.left = pTree.m_Root.node.right = &pTree.m_Root.node;
/frameworks/rs/
H A DrsScriptC_LibGL.cpp230 int32_t *left, int32_t *right, int32_t *top, int32_t *bottom) {
234 if (right) {
235 *right = metrics->right;
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

Completed in 3693 milliseconds

1234567891011>>