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

1234567891011>>

/frameworks/compile/mclinker/include/mcld/ADT/
H A DBinTree.h33 m_Stack.push(m_pNode->right);
42 m_pNode = m_pNode->right; // should be root
48 m_Stack.push(m_pNode->right);
63 m_Queue.push(m_pNode->right);
72 m_pNode = m_pNode->right; // should be root
78 m_Queue.push(m_pNode->right);
212 bool isRoot() const { return (m_pNode->right == m_pNode); }
275 TreeImpl() : NodeFactory<DataType>() { node.left = node.right = &node; }
289 if ((*data).right == &pClient.node)
290 (*data).right
[all...]
/frameworks/base/graphics/java/android/graphics/
H A DCanvas.java447 return saveLayer(bounds.left, bounds.top, bounds.right, bounds.bottom, paint, saveFlags);
460 public int saveLayer(float left, float top, float right, float bottom, @Nullable Paint paint, argument
462 return native_saveLayer(mNativeCanvasWrapper, left, top, right, bottom,
468 * Convenience for saveLayer(left, top, right, bottom, paint, {@link #ALL_SAVE_FLAG})
470 public int saveLayer(float left, float top, float right, float bottom, @Nullable Paint paint) { argument
471 return saveLayer(left, top, right, bottom, paint, ALL_SAVE_FLAG);
506 return saveLayerAlpha(bounds.left, bounds.top, bounds.right, bounds.bottom, alpha, saveFlags);
519 public int saveLayerAlpha(float left, float top, float right, float bottom, int alpha, argument
522 return native_saveLayerAlpha(mNativeCanvasWrapper, left, top, right, bottom,
527 * Helper for saveLayerAlpha(left, top, right, botto
529 saveLayerAlpha(float left, float top, float right, float bottom, int alpha) argument
748 clipRect(float left, float top, float right, float bottom, @NonNull Region.Op op) argument
766 clipRect(float left, float top, float right, float bottom) argument
784 clipRect(int left, int top, int right, int bottom) argument
937 quickReject(float left, float top, float right, float bottom, @NonNull EdgeType type) argument
1133 drawRect(float left, float top, float right, float bottom, @NonNull Paint paint) argument
1154 drawOval(float left, float top, float right, float bottom, @NonNull Paint paint) argument
1222 drawArc(float left, float top, float right, float bottom, float startAngle, float sweepAngle, boolean useCenter, @NonNull Paint paint) argument
1249 drawRoundRect(float left, float top, float right, float bottom, float rx, float ry, @NonNull Paint paint) argument
2012 native_clipRect(long nativeCanvas, float left, float top, float right, float bottom, int regionOp) argument
2030 native_quickReject(long nativeCanvas, float left, float top, float right, float bottom) argument
2048 native_drawRect(long nativeCanvas, float left, float top, float right, float bottom, long nativePaint) argument
2052 native_drawOval(long nativeCanvas, float left, float top, float right, float bottom, long nativePaint) argument
2057 native_drawArc(long nativeCanvas, float left, float top, float right, float bottom, float startAngle, float sweep, boolean useCenter, long nativePaint) argument
2061 native_drawRoundRect(long nativeCanvas, float left, float top, float right, float bottom, float rx, float ry, long nativePaint) argument
[all...]
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/libs/hwui/
H A DSnapshot.cpp93 bool Snapshot::clip(float left, float top, float right, float bottom, SkRegion::Op op) { argument
95 return mClipArea->clipRectWithTransform(left, top, right, bottom, transform, op);
103 void Snapshot::setClip(float left, float top, float right, float bottom) { argument
104 mClipArea->setClip(left, top, right, bottom);
122 void Snapshot::resetClip(float left, float top, float right, float bottom) { argument
127 setClip(left, top, right, bottom);
205 state->dangerRects[0].right = state->dangerRects[2].right = bounds.left + radius;
206 state->dangerRects[1].left = state->dangerRects[3].left = bounds.right - radius;
249 clipRect.left, clipRect.top, clipRect.right, clipRec
[all...]
H A DClipArea.h93 void setClip(float left, float top, float right, float bottom);
94 bool clipRectWithTransform(float left, float top, float right, float bottom,
129 bool rectangleModeClipRectWithTransform(float left, float top, float right,
134 float right, float bottom, const mat4* transform, SkRegion::Op op);
143 bool regionModeClipRectWithTransform(float left, float top, float right,
148 bool clipRegionOp(float left, float top, float right, float bottom,
H A DOpenGLRenderer.h144 virtual void prepareDirty(float left, float top, float right, float bottom,
175 virtual int saveLayer(float left, float top, float right, float bottom, argument
177 return saveLayer(left, top, right, bottom, paint, flags, nullptr);
182 int saveLayer(float left, float top, float right, float bottom,
185 int saveLayerDeferred(float left, float top, float right, float bottom,
200 float left, float top, float right, float bottom, const SkPaint* paint);
202 void drawRect(float left, float top, float right, float bottom,
204 void drawRoundRect(float left, float top, float right, float bottom,
207 void drawOval(float left, float top, float right, float bottom,
209 void drawArc(float left, float top, float right, floa
342 drawScreenSpaceColorRect(float left, float top, float right, float bottom, int color) argument
384 quickRejectConservative(float left, float top, float right, float bottom) const argument
[all...]
H A DOutline.h35 void setRoundRect(int left, int top, int right, int bottom, float radius, float alpha) { argument
37 mBounds.set(left, top, right, bottom);
40 mPath.addRoundRect(SkRect::MakeLTRB(left, top, right, bottom),
H A DCanvasState.cpp157 bool CanvasState::clipRect(float left, float top, float right, float bottom, SkRegion::Op op) { argument
158 mDirtyClip |= mSnapshot->clip(left, top, right, bottom, op);
180 clipRect(bounds.left, bounds.top, bounds.right, bounds.bottom, SkRegion::kIntersect_Op);
211 float right, float bottom,
214 if (mSnapshot->isIgnored() || bottom <= top || right <= left) {
218 Rect r(left, top, right, bottom);
241 float right, float bottom) const {
242 if (mSnapshot->isIgnored() || bottom <= top || right <= left) {
246 Rect r(left, top, right, bottom);
210 calculateQuickRejectForScissor(float left, float top, float right, float bottom, bool* clipRequired, bool* roundRectClipRequired, bool snapOut) const argument
240 quickRejectConservative(float left, float top, float right, float bottom) const argument
H A DLayerRenderer.h53 virtual void prepareDirty(float left, float top, float right, float bottom,
55 virtual void clear(float left, float top, float right, float bottom, bool opaque) override;
/frameworks/native/include/private/ui/
H A DRegionHelper.h81 TYPE left, right; local
82 int inside = spannerInner.next(current.left, current.right);
84 if (current.left < current.right &&
235 SpannerBase::lhs_tail = lhs.rects->right + lhs.dx;
244 SpannerBase::rhs_tail = rhs.rects->right + rhs.dx;
249 SpannerBase::lhs_tail = lhs.rects->right + lhs.dx;
253 SpannerBase::rhs_tail = rhs.rects->right + rhs.dx;
263 inline int next(TYPE& left, TYPE& right) argument
267 int inside = SpannerBase::next(left, right, more_lhs, more_rhs);
279 void advance(region& reg, TYPE& left, TYPE& right) { argument
[all...]
/frameworks/av/media/libstagefright/codecs/aacenc/src/
H A Dms_stereo.c106 Word32 left, right; local
108 right = (mdctSpectrumRight[j] >> 1);
109 mdctSpectrumLeft[j] = left + right;
110 mdctSpectrumRight[j] = left - right;
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DAccessibilityNodeInfoHelper.java46 displayRect.right = width;
/frameworks/base/core/java/android/view/animation/
H A DClipRectTBAnimation.java45 oldClipRect.right,
/frameworks/base/graphics/java/android/graphics/drawable/shapes/
H A DOvalShape.java43 (int) Math.floor(rect.right), (int) Math.floor(rect.bottom));
/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);
/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...]
/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/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/graphics/drawable/
H A DDrawableCompatLollipop.java35 int right, int bottom) {
36 drawable.setHotspotBounds( left, top, right, bottom);
34 setHotspotBounds(Drawable drawable, int left, int top, int right, int bottom) argument
/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.java155 public void setPadding(int left, int top, int right, int bottom) { argument
159 super.setPadding(left, top, right, bottom);
266 final int right = mCurrText.getRight() + mTabPadding;
270 canvas.drawRect(left, top, right, bottom, mTabPaint);
284 int right = mCurrText.getRight() + mTabPadding;
287 r.set(left, top, right, bottom);
293 right = mCurrText.getRight() + mTabPadding;
294 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.java94 int right = left + sceneRoot.getWidth();
103 epicenterX = (left + right) / 2;
108 left, top, right, bottom);
121 int left, int top, int right, int bottom) {
135 distance = right - viewX + Math.abs(epicenterY - viewY);
120 distance(View sceneRoot, int viewX, int viewY, int epicenterX, int epicenterY, int left, int top, int right, int bottom) argument

Completed in 3863 milliseconds

1234567891011>>