Searched refs:right (Results 51 - 75 of 501) sorted by relevance

1234567891011>>

/frameworks/support/v4/java/android/support/v4/graphics/drawable/
H A DDrawableCompat.java37 void setHotspotBounds(Drawable drawable, int left, int top, int right, int bottom); argument
65 public void setHotspotBounds(Drawable drawable, int left, int top, int right, int bottom) { argument
116 public void setHotspotBounds(Drawable drawable, int left, int top, int right, int bottom) { argument
117 DrawableCompatL.setHotspotBounds(drawable, left, top, right, bottom);
167 * direction is RTL (right-to left). See
183 * direction is RTL right-to-left. See {@link android.util.LayoutDirection}.
214 int right, int bottom) {
215 IMPL.setHotspotBounds(drawable, left, top, right, bottom);
213 setHotspotBounds(Drawable drawable, int left, int top, int right, int bottom) argument
/frameworks/av/media/libstagefright/codecs/aacenc/src/
H A Dms_stereo.c107 Word32 left, right; local
109 right = (mdctSpectrumRight[j] >> 1);
110 mdctSpectrumLeft[j] = left + right;
111 mdctSpectrumRight[j] = left - right;
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DAccessibilityNodeInfoHelper.java46 displayRect.right = width;
/frameworks/base/graphics/java/android/graphics/drawable/shapes/
H A DOvalShape.java43 (int) Math.floor(rect.right), (int) Math.floor(rect.bottom));
/frameworks/base/libs/hwui/
H A DSnapshot.h115 bool clip(float left, float top, float right, float bottom,
134 void setClip(float left, float top, float right, float bottom);
150 void resetClip(float left, float top, float right, float bottom);
304 bool clipRegionOp(float left, float top, float right, float bottom, SkRegion::Op op);
H A DDisplayListRenderer.cpp64 float right, float bottom, bool opaque) {
119 int DisplayListRenderer::saveLayer(float left, float top, float right, float bottom, argument
125 addStateOp(new (alloc()) SaveLayerOp(left, top, right, bottom, paint, flags));
163 bool DisplayListRenderer::clipRect(float left, float top, float right, float bottom, argument
165 addStateOp(new (alloc()) ClipRectOp(left, top, right, bottom, op));
166 return StatefulBaseRenderer::clipRect(left, top, right, bottom, op);
253 float left, float top, float right, float bottom, const SkPaint* paint) {
258 addDrawOp(new (alloc()) DrawPatchOp(bitmap, patch, left, top, right, bottom, paint));
267 status_t DisplayListRenderer::drawRect(float left, float top, float right, float bottom, argument
270 addDrawOp(new (alloc()) DrawRectOp(left, top, right, botto
63 prepareDirty(float left, float top, float right, float bottom, bool opaque) argument
252 drawPatch(const SkBitmap* bitmap, const Res_png_9patch* patch, float left, float top, float right, float bottom, const SkPaint* paint) argument
274 drawRoundRect(float left, float top, float right, float bottom, float rx, float ry, const SkPaint* paint) argument
281 drawRoundRect( CanvasPropertyPrimitive* left, CanvasPropertyPrimitive* top, CanvasPropertyPrimitive* right, CanvasPropertyPrimitive* bottom, CanvasPropertyPrimitive* rx, CanvasPropertyPrimitive* ry, CanvasPropertyPaint* paint) argument
315 drawOval(float left, float top, float right, float bottom, const SkPaint* paint) argument
322 drawArc(float left, float top, float right, float bottom, float startAngle, float sweepAngle, bool useCenter, const SkPaint* paint) argument
[all...]
H A DLayerRenderer.h53 virtual status_t prepareDirty(float left, float top, float right, float bottom, bool opaque);
54 virtual status_t clear(float left, float top, float right, float bottom, bool opaque);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
H A Dstats_scorer.h37 jfloat lefp, jfloat top, jfloat right, jfloat bottom, jfloatArray statsArray);
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DPathDestructionActivity.java59 float left, top, right, bottom;
62 right = left + MathUtils.random(getWidth() - left);
66 path.lineTo(right, top);
67 path.lineTo(right, bottom);
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/packages/SystemUI/src/com/android/systemui/recent/
H A DFadedEdgeDrawHelper.java86 int left, int right, int top, int bottom, int scrollX, int scrollY,
123 if (!mIsVertical && (left + length > right - length)) {
124 length = (right - left) / 2;
146 canvas.drawRect(left, top, right, top + length, mFadePaint);
153 canvas.drawRect(left, top - mPaddingTop, right, top, mBlackPaint);
162 canvas.drawRect(left, bottom - length, right, bottom, mFadePaint);
177 mFadeMatrix.postTranslate(right, top);
180 canvas.drawRect(right - length, top, right, bottom, mFadePaint);
85 drawCallback(Canvas canvas, int left, int right, int top, int bottom, int scrollX, int scrollY, float topFadingEdgeStrength, float bottomFadingEdgeStrength, float leftFadingEdgeStrength, float rightFadingEdgeStrength, int mPaddingTop) argument
/frameworks/support/v7/cardview/src/android/support/v7/widget/
H A DCardView.java110 public void setPadding(int left, int top, int right, int bottom) { argument
161 * @param right The right padding in pixels
169 public void setContentPadding(int left, int top, int right, int bottom) { argument
170 mContentPadding.set(left, top, right, bottom);
216 mContentPadding.right = a.getDimensionPixelSize(R.styleable.CardView_contentPaddingRight,
247 * Returns the inner padding before the Card's right edge
249 * @return the inner padding before the Card's right edge
252 return mContentPadding.right;
300 public void setShadowPadding(int left, int top, int right, in argument
[all...]
/frameworks/base/core/java/android/view/
H A DFocusFinder.java125 // make up a rect at top left or bottom right of root
273 * @param direction the direction (up, down, left, right)
371 return (srcRect.right > destRect.right || srcRect.left >= destRect.right)
374 return (srcRect.left < destRect.left || srcRect.right <= destRect.left)
375 && srcRect.right < destRect.right;
390 * @param direction the direction (up, down, left, right)
402 return (rect2.right >
[all...]
H A DRenderNode.java115 * // by x pixels to the right and redraw this view. All the commands
315 return nSetClipBounds(mNativeRenderNode, rect.left, rect.top, rect.right, rect.bottom);
362 outline.mRect.right, outline.mRect.bottom, outline.mRadius, outline.mAlpha);
734 * Sets the right position for the display list.
736 * @param right The right position, in pixels, of the display list
740 public boolean setRight(int right) { argument
741 return nSetRight(mNativeRenderNode, right);
760 * @param right The right positio
768 setLeftTopRightBottom(int left, int top, int right, int bottom) argument
845 nSetLeftTopRightBottom(long renderNode, int left, int top, int right, int bottom) argument
848 nSetRight(long renderNode, int right) argument
857 nSetClipBounds(long renderNode, int left, int top, int right, int bottom) argument
862 nSetOutlineRoundRect(long renderNode, int left, int top, int right, int bottom, float radius, float alpha) argument
[all...]
/frameworks/base/core/java/android/hardware/camera2/marshal/impl/
H A DMarshalQueryableRect.java55 int right = left + width;
58 return new Rect(left, top, right, bottom);
/frameworks/base/graphics/java/android/graphics/
H A DLargeBitmap.java54 if (rect.left < 0 || rect.top < 0 || rect.right > getWidth() || rect.bottom > getHeight())
57 rect.right - rect.left, rect.bottom - rect.top, options);
/frameworks/base/media/java/android/media/tv/
H A DITvInputSessionCallback.aidl39 void onLayoutSurface(int left, int top, int right, int bottom);
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DSortingCursorWrapper.java178 int right = start;
180 while (left < right) {
181 int mid = (left + right) >>> 1;
188 right = mid;
224 int right = start;
226 while (left < right) {
227 int mid = (left + right) >>> 1;
233 right = mid;
/frameworks/support/v4/api21/android/support/v4/view/
H A DWindowInsetsCompatApi21.java76 public WindowInsetsCompat replaceSystemWindowInsets(int left, int top, int right, int bottom) { argument
77 return new WindowInsetsCompatApi21(mSource.replaceSystemWindowInsets(left, top, right, bottom));
/frameworks/support/v4/java/android/support/v4/view/
H A DPagerTabStrip.java153 public void setPadding(int left, int top, int right, int bottom) { argument
157 super.setPadding(left, top, right, bottom);
264 final int right = mCurrText.getRight() + mTabPadding;
268 canvas.drawRect(left, top, right, bottom, mTabPaint);
282 int right = mCurrText.getRight() + mTabPadding;
285 r.set(left, top, right, bottom);
291 right = mCurrText.getRight() + mTabPadding;
292 r.union(left, top, right, bottom);
/frameworks/support/v4/jellybean/android/support/v4/view/
H A DViewCompatJB.java41 int right, int bottom) {
42 view.postInvalidate(left, top, right, bottom);
40 postInvalidateOnAnimation(View view, int left, int top, int right, int bottom) argument
/frameworks/base/core/java/android/transition/
H A DSidePropagation.java96 int right = left + sceneRoot.getWidth();
105 epicenterX = (left + right) / 2;
110 left, top, right, bottom);
123 int left, int top, int right, int bottom) {
137 distance = right - viewX + Math.abs(epicenterY - viewY);
122 distance(View sceneRoot, int viewX, int viewY, int epicenterX, int epicenterY, int left, int top, int right, int bottom) argument
/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.java300 /*package*/ static void native_arcTo(long nPath, float left, float top, float right, argument
308 pathDelegate.arcTo(left, top, right, bottom, startAngle, sweepAngle, forceMoveTo);
323 float left, float top, float right, float bottom, int dir) {
329 pathDelegate.addRect(left, top, right, bottom, dir);
333 /*package*/ static void native_addOval(long nPath, float left, float top, float right, argument
341 left, top, right - left, bottom - top), false);
357 /*package*/ static void native_addArc(long nPath, float left, float top, float right, argument
366 left, top, right - left, bottom - top,
371 /*package*/ static void native_addRoundRect(long nPath, float left, float top, float right, argument
380 left, top, right
322 native_addRect(long nPath, float left, float top, float right, float bottom, int dir) argument
384 native_addRoundRect(long nPath, float left, float top, float right, float bottom, float[] radii, int dir) argument
727 arcTo(float left, float top, float right, float bottom, float startAngle, float sweepAngle, boolean forceMoveTo) argument
760 addRect(float left, float top, float right, float bottom, int dir) argument
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DDrawableWrapper.java50 public void setBounds(int left, int top, int right, int bottom) { argument
51 super.setBounds(left, top, right, bottom);
52 mDrawable.setBounds(left, top, right, bottom);
206 public void setHotspotBounds(int left, int top, int right, int bottom) { argument
207 DrawableCompat.setHotspotBounds(mDrawable, left, top, right, bottom);

Completed in 3076 milliseconds

1234567891011>>