Home
last modified time | relevance | path

Searched defs:right (Results 1 – 25 of 284) sorted by relevance

12345678910>>...12

/frameworks/base/graphics/java/android/graphics/
DInsets.java33 public final int right; field in Insets
36 private Insets(int left, int top, int right, int bottom) { in Insets()
55 public static Insets of(int left, int top, int right, int bottom) { in of()
DRectF.java36 public float right; field in RectF
54 public RectF(float left, float top, float right, float bottom) { in RectF()
198 public void set(float left, float top, float right, float bottom) { in set()
303 public boolean contains(float left, float top, float right, float bottom) { in contains()
345 public boolean intersect(float left, float top, float right, float bottom) { in intersect()
418 public boolean intersects(float left, float top, float right, in intersects()
467 public void union(float left, float top, float right, float bottom) { in union()
DRect.java36 public int right; field in Rect
69 public Rect(int left, int top, int right, int bottom) { in Rect()
259 public void set(int left, int top, int right, int bottom) { in set()
351 public boolean contains(int left, int top, int right, int bottom) { in contains()
392 public boolean intersect(int left, int top, int right, int bottom) { in intersect()
455 public boolean intersects(int left, int top, int right, int bottom) { in intersects()
483 public void union(int left, int top, int right, int bottom) { in union()
DOutline.java142 public void setRect(int left, int top, int right, int bottom) { in setRect()
158 public void setRoundRect(int left, int top, int right, int bottom, float radius) { in setRoundRect()
180 public void setOval(int left, int top, int right, int bottom) { in setOval()
DRegion.java76 public Region(int left, int top, int right, int bottom) { in Region()
102 public boolean set(int left, int top, int right, int bottom) { in set()
191 public native boolean quickContains(int left, int top, int right, in quickContains()
208 public native boolean quickReject(int left, int top, int right, int bottom); in quickReject()
267 public boolean op(int left, int top, int right, int bottom, Op op) { in op()
412 int top, int right, int bottom); in nativeSetRect()
420 int right, int bottom, int op); in nativeOp()
DPath.java468 public void arcTo(float left, float top, float right, float bottom, float startAngle, in arcTo()
499 private void detectSimplePath(float left, float top, float right, float bottom, Direction dir) { in detectSimplePath()
530 public void addRect(float left, float top, float right, float bottom, Direction dir) { in addRect()
550 public void addOval(float left, float top, float right, float bottom, Direction dir) { in addOval()
585 public void addArc(float left, float top, float right, float bottom, float startAngle, in addArc()
610 public void addRoundRect(float left, float top, float right, float bottom, float rx, float ry, in addRoundRect()
640 public void addRoundRect(float left, float top, float right, float bottom, float[] radii, in addRoundRect()
805 float right, float bottom, float startAngle, in native_arcTo()
809 float right, float bottom, int dir); in native_addRect()
811 float right, float bottom, int dir); in native_addOval()
[all …]
/frameworks/base/test-runner/src/junit/runner/
DSorter.java13 public void swap(Vector values, int left, int right); in swap()
16 public static void sortStrings(Vector values , int left, int right, Swapper swapper) { in sortStrings()
/frameworks/base/libs/hwui/
DSnapshot.cpp110 bool Snapshot::clipRegionOp(float left, float top, float right, float bottom, SkRegion::Op op) { in clipRegionOp()
126 bool Snapshot::clip(float left, float top, float right, float bottom, SkRegion::Op op) { in clip()
168 void Snapshot::setClip(float left, float top, float right, float bottom) { in setClip()
190 void Snapshot::resetClip(float left, float top, float right, float bottom) { in resetClip()
DDisplayListRenderer.cpp64 float right, float bottom, bool opaque) { in prepareDirty()
119 int DisplayListRenderer::saveLayer(float left, float top, float right, float bottom, in saveLayer()
163 bool DisplayListRenderer::clipRect(float left, float top, float right, float bottom, in clipRect()
253 float left, float top, float right, float bottom, const SkPaint* paint) { in drawPatch()
267 status_t DisplayListRenderer::drawRect(float left, float top, float right, float bottom, in drawRect()
274 status_t DisplayListRenderer::drawRoundRect(float left, float top, float right, float bottom, in drawRoundRect()
283 CanvasPropertyPrimitive* right, CanvasPropertyPrimitive* bottom, in drawRoundRect()
315 status_t DisplayListRenderer::drawOval(float left, float top, float right, float bottom, in drawOval()
322 status_t DisplayListRenderer::drawArc(float left, float top, float right, float bottom, in drawArc()
DOpenGLRenderer.cpp188 float right, float bottom, bool opaque) { in setupFrameState()
221 float right, float bottom, bool opaque) { in prepareDirty()
239 void OpenGLRenderer::discardFramebuffer(float left, float top, float right, float bottom) { in discardFramebuffer()
253 status_t OpenGLRenderer::clear(float left, float top, float right, float bottom, bool opaque) { in clear()
601 int OpenGLRenderer::saveLayer(float left, float top, float right, float bottom, in saveLayer()
661 int OpenGLRenderer::saveLayerDeferred(float left, float top, float right, float bottom, in saveLayerDeferred()
737 bool OpenGLRenderer::createLayer(float left, float top, float right, float bottom, in createLayer()
1234 const float right, const float bottom, const mat4 transform) { in dirtyLayer()
1243 const float right, const float bottom) { in dirtyLayer()
1517 bool OpenGLRenderer::quickRejectSetupScissor(float left, float top, float right, float bottom, in quickRejectSetupScissor()
DRect.h44 float right; variable
60 inline Rect(float left, float top, float right, float bottom): in Rect()
103 inline void set(float left, float top, float right, float bottom) { in set()
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
DSystemViewInfo.java30 int right, int bottom) { in SystemViewInfo()
35 int right, int bottom, Object viewObject, Object layoutParamsObject) { in SystemViewInfo()
/frameworks/base/core/java/android/view/
DWindowInsets.java311 boolean right, boolean bottom) { in consumeSystemWindowInsets()
335 int right, int bottom) { in replaceSystemWindowInsets()
369 boolean right, boolean bottom) { in consumeWindowDecorInsets()
384 public WindowInsets replaceWindowDecorInsets(int left, int top, int right, int bottom) { in replaceWindowDecorInsets()
DGLES20Canvas.java204 private static native int nPrepareDirty(long renderer, int left, int top, int right, int bottom, in nPrepareDirty()
292 public boolean clipRect(float left, float top, float right, float bottom) { in clipRect()
297 float right, float bottom, int op); in nClipRect()
300 public boolean clipRect(float left, float top, float right, float bottom, Region.Op op) { in clipRect()
305 public boolean clipRect(int left, int top, int right, int bottom) { in clipRect()
310 int right, int bottom, int op); in nClipRect()
354 public boolean quickReject(float left, float top, float right, float bottom, EdgeType type) { in quickReject()
359 float right, float bottom); in nQuickReject()
457 public int saveLayer(float left, float top, float right, float bottom, Paint paint, in saveLayer()
467 float right, float bottom, long paint, int saveFlags); in nSaveLayer()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DKeyguardAffordanceHelper.java201 public void startHintAnimation(boolean right, Runnable onFinishedListener) { in startHintAnimation()
206 private void startHintAnimationPhase1(final boolean right, final Runnable onFinishedListener) { in startHintAnimationPhase1()
238 private void startUnlockHintAnimationPhase2(boolean right, final Runnable onFinishedListener) { in startUnlockHintAnimationPhase2()
261 private ValueAnimator getAnimatorToRadius(final boolean right, int radius) { in getAnimatorToRadius()
/frameworks/base/services/core/java/com/android/server/notification/
DGlobalSortKeyComparator.java25 public int compare(NotificationRecord left, NotificationRecord right) { in compare()
DNotificationComparator.java27 public int compare(NotificationRecord left, NotificationRecord right) { in compare()
/frameworks/base/policy/src/com/android/internal/policy/impl/
DRecentApplicationsBackground.java60 protected boolean setFrame(int left, int top, int right, int bottom) { in setFrame()
105 int left, right; in draw() local
/frameworks/support/v7/cardview/src/android/support/v7/widget/
DCardView.java110 public void setPadding(int left, int top, int right, int bottom) { in setPadding()
169 public void setContentPadding(int left, int top, int right, int bottom) { in setContentPadding()
300 public void setShadowPadding(int left, int top, int right, int bottom) { in setShadowPadding()
/frameworks/native/services/surfaceflinger/DisplayHardware/
DFloatRect.h29 float right; variable
/frameworks/av/media/libeffects/lvm/lib/Common/src/
DFrom2iToMS_16x16.c33 LVM_INT32 temp1,left,right; in From2iToMS_16x16() local
/frameworks/support/v4/java/android/support/v4/view/
DPagerTabStrip.java153 public void setPadding(int left, int top, int right, int bottom) { in setPadding()
264 final int right = mCurrText.getRight() + mTabPadding; in onDraw() local
282 int right = mCurrText.getRight() + mTabPadding; in updateTextPositions() local
/frameworks/opt/bitmap/src/com/android/bitmap/drawable/
DStyledCornersBitmapDrawable.java242 float right = bounds.right - mBorderWidth / 2; in draw() local
286 float right = bounds.right; in drawFakeCornersForCompatibilityMode() local
375 float right = bounds.right - mBorderWidth / 2; in recalculatePath() local
/frameworks/base/core/java/android/transition/
DSidePropagation.java96 int right = left + sceneRoot.getWidth(); in getStartDelay() local
123 int left, int top, int right, int bottom) { in distance()
/frameworks/support/v4/java/android/support/v4/graphics/drawable/
DDrawableCompat.java37 void setHotspotBounds(Drawable drawable, int left, int top, int right, int bottom); in setHotspotBounds()
65 public void setHotspotBounds(Drawable drawable, int left, int top, int right, int bottom) { in setHotspotBounds()
116 public void setHotspotBounds(Drawable drawable, int left, int top, int right, int bottom) { in setHotspotBounds()
214 int right, int bottom) { in setHotspotBounds()

12345678910>>...12