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

1234567891011>>

/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DFontLoader.java327 int right = index + 1;
329 while (right < count) {
330 if (Character.isWhitespace(value.charAt(right))) {
331 right++;
337 // remove all between left and right (non inclusive) and replace by a single space.
343 if (right < count) {
344 rightString = value.substring(right);
H A DGcSnapshot.java336 mLayerBounds.right, mLayerBounds.bottom,
525 public boolean clipRect(float left, float top, float right, float bottom, int regionOp) { argument
526 return clip(new Rectangle2D.Float(left, top, right - left, bottom - top), regionOp);
679 mLayerBounds.left, mLayerBounds.top, mLayerBounds.right, mLayerBounds.bottom,
691 mLayerBounds.left, mLayerBounds.top, mLayerBounds.right, mLayerBounds.bottom,
692 mLayerBounds.left, mLayerBounds.top, mLayerBounds.right, mLayerBounds.bottom,
787 src.right, src.top,
788 src.right, src.bottom,
797 dst.right = Math.max(Math.max(corners[0], corners[2]), Math.max(corners[4], corners[6]));
/frameworks/base/graphics/java/android/graphics/
H A DBitmapRegionDecoder.java187 if (rect.right <= 0 || rect.bottom <= 0 || rect.left >= getWidth()
191 rect.right - rect.left, rect.bottom - rect.top, options);
H A DCanvas.java66 * Flag for drawTextRun indicating left-to-right run direction.
72 * Flag for drawTextRun indicating right-to-left run direction.
357 public int saveLayer(float left, float top, float right, float bottom, Paint paint, argument
359 return native_saveLayer(mNativeCanvas, left, top, right, bottom,
388 public int saveLayerAlpha(float left, float top, float right, float bottom, int alpha, argument
390 return native_saveLayerAlpha(mNativeCanvas, left, top, right, bottom,
536 return native_clipRect(mNativeCanvas, rect.left, rect.top, rect.right, rect.bottom,
549 return native_clipRect(mNativeCanvas, rect.left, rect.top, rect.right, rect.bottom,
579 * @param right The right sid
586 clipRect(float left, float top, float right, float bottom, Region.Op op) argument
603 clipRect(float left, float top, float right, float bottom) argument
618 clipRect(int left, int top, int right, int bottom) argument
752 quickReject(float left, float top, float right, float bottom, EdgeType type) argument
933 drawRect(float left, float top, float right, float bottom, Paint paint) argument
1643 native_clipRect(int nCanvas, float left, float top, float right, float bottom, int regionOp) argument
1664 native_quickReject(int nativeCanvas, float left, float top, float right, float bottom, int native_edgeType) argument
1681 native_drawRect(int nativeCanvas, float left, float top, float right, float bottom, int paint) argument
[all...]
H A DYuvImage.java223 rect.right = rect.left + width;
231 rect.right = rect.left + width;
/frameworks/compile/mclinker/lib/MC/
H A DInputTree.cpp35 pMover.connect(pRoot, iterator(pTree.m_Root.node.right));
39 pTree.m_Root.node.left = pTree.m_Root.node.right = &pTree.m_Root.node;
/frameworks/support/v4/java/android/support/v4/view/
H A DKeyEventCompat.java48 int modifiers, int basic, int left, int right) {
50 final int directional = left | right;
47 metaStateFilterDirectionalModifiers(int metaState, int modifiers, int basic, int left, int right) argument
H A DViewCompat.java126 public void postInvalidateOnAnimation(View view, int left, int top, int right, int bottom); argument
174 public void postInvalidateOnAnimation(View view, int left, int top, int right, int bottom) { argument
175 view.postInvalidateDelayed(getFrameTime(), left, top, right, bottom);
275 public void postInvalidateOnAnimation(View view, int left, int top, int right, int bottom) { argument
276 ViewCompatJB.postInvalidateOnAnimation(view, left, top, right, bottom);
343 * @param direction Negative to check scrolling left, positive to check scrolling right.
557 * @param right The right coordinate of the rectangle to invalidate.
561 int right, int bottom) {
562 IMPL.postInvalidateOnAnimation(view, left, top, right, botto
560 postInvalidateOnAnimation(View view, int left, int top, int right, int bottom) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNotificationPanelView.java73 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
74 super.onLayout(changed, left, top, right, bottom);
/frameworks/base/libs/hwui/
H A DDisplayListRenderer.h324 void setRight(int right) { argument
325 if (right != mRight) {
326 mRight = right;
356 void setLeftTopRightBottom(int left, int top, int right, int bottom) { argument
357 if (left != mLeft || top != mTop || right != mRight || bottom != mBottom) {
360 mRight = right;
553 virtual status_t prepareDirty(float left, float top, float right, float bottom, bool opaque);
565 virtual int saveLayer(float left, float top, float right, float bottom,
567 virtual int saveLayerAlpha(float left, float top, float right, float bottom,
578 virtual bool clipRect(float left, float top, float right, floa
750 addBounds(float left, float top, float right, float bottom) argument
[all...]
H A DPatch.h52 float left, float top, float right, float bottom);
H A DLayerRenderer.cpp46 status_t LayerRenderer::prepareDirty(float left, float top, float right, float bottom, argument
55 Rect dirty(left, top, right, bottom);
57 dirty.right >= width && dirty.bottom >= height)) {
62 android::Rect r(dirty.left, dirty.top, dirty.right, dirty.bottom);
66 return OpenGLRenderer::prepareDirty(dirty.left, dirty.top, dirty.right, dirty.bottom, opaque);
69 status_t LayerRenderer::clear(float left, float top, float right, float bottom, bool opaque) { argument
80 return OpenGLRenderer::clear(left, top, right, bottom, opaque);
172 const float u2 = r->right * texX;
176 TextureVertex::set(mesh++, r->right, r->top, u2, v1);
178 TextureVertex::set(mesh++, r->right,
[all...]
/frameworks/base/core/java/android/util/
H A DDayOfMonthCursor.java26 * <li>Provides methods to move the cursor up / down / left / right.</li>
161 * Move right one box, potentially flipping to the next month.
165 public boolean right() { method in class:DayOfMonthCursor
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarOverlayLayout.java129 boolean bottom, boolean right) {
140 if (right && lp.rightMargin != insets.right) {
142 lp.rightMargin = insets.right;
128 applyInsets(View view, Rect insets, boolean left, boolean top, boolean bottom, boolean right) argument
/frameworks/base/core/jni/
H A Dandroid_view_GLES20DisplayList.cpp153 jobject clazz, DisplayList* displayList, int right) {
154 displayList->setRight(right);
169 int right, int bottom) {
170 displayList->setLeftTopRightBottom(left, top, right, bottom);
152 android_view_GLES20DisplayList_setRight(JNIEnv* env, jobject clazz, DisplayList* displayList, int right) argument
167 android_view_GLES20DisplayList_setLeftTopRightBottom(JNIEnv* env, jobject clazz, DisplayList* displayList, int left, int top, int right, int bottom) argument
H A Dandroid_view_Surface.cpp76 jfieldID right; member in struct:android::__anon998
389 dirty.right = env->GetIntField(dirtyRectObj, gRectClassInfo.right);
431 clipReg.setRect(b.left, b.top, b.right, b.bottom);
436 clipReg.op(r->left, r->top, r->right, r->bottom, SkRegion::kUnion_Op);
450 env->SetIntField(dirtyRectObj, gRectClassInfo.right, bounds.right);
630 crop.right = env->GetIntField(cropObj, gRectClassInfo.right);
633 crop.left = crop.top = crop.right
[all...]
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindowManager.java269 boolean mNavigationBarOnBottom = true; // is the navigation bar on the bottom *right now*?
1044 // The navigation bar is at the right in landscape; it seems always
1200 // XXX right now the app process has complete control over
1555 // focus, so we want to get the IME window up on top of us right away.
1722 // This can be on either the bottom or the right.
1873 // right now to interact with applications.
2405 pf.right = df.right = vf.right = mDockRight;
2460 // Landscape screen; nav bar goes to the right
[all...]
/frameworks/support/v7/gridlayout/gen/android/support/v7/gridlayout/
H A DR.java72 The column span: the difference between the right and left
99 <tr><td><code>right</code></td><td>0x05</td><td> Push object to the right of its container, not changing its size. </td></tr>
113 Additional option that can be set to have the left and/or right edges of
115 The clip will be based on the horizontal gravity: a left gravity will clip the right
116 edge, a right gravity will clip the left edge, and neither will clip both edges.
233 public static int right=0x7f020007; field in class:R.id
440 Specifies extra space on the left, top, right and bottom
447 Specifies extra space on the right side of this view.</td></tr>
456 The column span: the difference between the right an
[all...]
/frameworks/wilhelm/src/itf/
H A DIOutputMixExt.c30 short right; member in struct:__anon1625
245 mixBuffer->right += (short) (source->right * track->mGains[1]);
251 mixBuffer->right += source->right;
259 mixBuffer->right = (short) (source->right * track->mGains[1]);
/frameworks/rs/
H A DrsRuntime.h98 int32_t *left, int32_t *right, int32_t *top, int32_t *bottom);
100 int32_t *left, int32_t *right, int32_t *top, int32_t *bottom);
102 int32_t *left, int32_t *right, int32_t *top, int32_t *bottom);
189 void rsrMatrixLoadOrtho(rs_matrix4x4 *m, float left, float right,
191 void rsrMatrixLoadFrustum(rs_matrix4x4 *m, float left, float right,
/frameworks/base/services/java/com/android/server/wm/
H A DWindowState.java382 final int pw = container.right - container.left;
465 if (content.right > frame.right) content.right = frame.right;
469 if (visible.right > frame.right) visible.right = frame.right;
475 contentInsets.right
[all...]
/frameworks/base/graphics/java/android/graphics/drawable/
H A DLayerDrawable.java143 int right = a.getDimensionPixelOffset(
168 addLayer(dr, id, left, top, right, bottom);
182 * @param right The right padding of the new layer.
185 private void addLayer(Drawable layer, int id, int left, int top, int right, int bottom) { argument
205 childDrawable.mInsetR = right;
304 right -= r;
363 padding.right = 0;
371 padding.right += mPaddingR[i];
495 bounds.right
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPath_Delegate.java320 pathDelegate.addRect(rect.left, rect.top, rect.right, rect.bottom, dir);
325 float left, float top, float right, float bottom, int dir) {
331 pathDelegate.addRect(left, top, right, bottom, dir);
560 bounds.right = (float)rect.getMaxX();
737 * @param right The right side of a rectangle to add to the path
741 private void addRect(float left, float top, float right, float bottom, argument
749 lineTo(right, top);
750 lineTo(right, bottom);
755 lineTo(right, botto
324 native_addRect(int nPath, float left, float top, float right, float bottom, int dir) argument
[all...]
/frameworks/base/core/java/android/text/method/
H A DBaseMovementMethod.java177 return right(widget, buffer);
257 * Performs a right movement action.
258 * Moves the cursor or scrolls right by one character.
264 protected boolean right(TextView widget, Spannable buffer) { method in class:BaseMovementMethod
446 int right = Integer.MIN_VALUE;
449 if (lineRight > right) {
450 right = lineRight;
453 return right;
478 * Performs a scroll right action.
479 * Scrolls right b
[all...]
/frameworks/base/core/java/android/net/
H A DNetworkStats.java485 public NetworkStats subtract(NetworkStats right) { argument
486 return subtract(this, right, null, null);
498 NetworkStats left, NetworkStats right, NonMonotonicObserver<C> observer, C cookie) {
499 long deltaRealtime = left.elapsedRealtime - right.elapsedRealtime;
502 observer.foundNonMonotonic(left, -1, right, -1, cookie);
517 final int j = right.findIndexHinted(entry.iface, entry.uid, entry.set, entry.tag, i);
527 entry.rxBytes = left.rxBytes[i] - right.rxBytes[j];
528 entry.rxPackets = left.rxPackets[i] - right.rxPackets[j];
529 entry.txBytes = left.txBytes[i] - right.txBytes[j];
530 entry.txPackets = left.txPackets[i] - right
497 subtract( NetworkStats left, NetworkStats right, NonMonotonicObserver<C> observer, C cookie) argument
692 foundNonMonotonic( NetworkStats left, int leftIndex, NetworkStats right, int rightIndex, C cookie) argument
[all...]

Completed in 4207 milliseconds

1234567891011>>