Searched refs:right (Results 1 - 25 of 171) sorted by relevance

1234567

/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DWnnPOS.java28 /** The part of speech at right side */
29 public int right = 0; field in class:WnnPOS
40 * @param right The part of speech at right side
42 public WnnPOS(int left, int right) { argument
44 this.right = right;
H A DWnnClause.java67 new WnnPOS(stem.partOfSpeech.left, fzk.partOfSpeech.right),
/packages/apps/Settings/src/com/android/settings/drawable/
H A DInsetBoundsDrawable.java34 public void setBounds(int left, int top, int right, int bottom) { argument
35 super.setBounds(left + mInsetBoundsSides, top, right - mInsetBoundsSides, bottom);
H A DDrawableWrapper.java48 public void setBounds(int left, int top, int right, int bottom) { argument
49 super.setBounds(left, top, right, bottom);
50 mDrawable.setBounds(left, top, right, bottom);
/packages/apps/Settings/src/com/android/settings/applications/
H A DLinearColorBar.java98 int right = left + (int)(width*mRedRatio);
99 int right2 = right + (int)(width*mYellowRatio);
107 indicatorLeft = right;
146 if (left < right) {
148 mRect.right = right;
151 width -= (right-left);
152 left = right;
155 right = right2;
157 if (left < right) {
[all...]
/packages/apps/Calendar/src/com/android/calendar/
H A DEventGeometry.java102 event.right = event.left + colWidth;
110 if (event.left < selection.right && event.right >= selection.left
122 float right = event.right;
127 if (x <= right) {
140 // x > right
141 float dx = x - right;
143 // the upper right corner
148 // the lower right corne
[all...]
H A DColorChipView.java96 int right = getWidth() - 1;
105 c.drawRect(0, 0, right, bottom, mPaint);
120 lines [ptr++] = right;
124 lines [ptr++] = right;
130 lines [ptr++] = right - halfBorderWidth;
132 lines [ptr++] = right - halfBorderWidth;
/packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
H A DProgressBar.java93 dest.right = width;
100 dest.right = width;
106 dest.right = ((width - left) * progress) / 100;
115 dest.left = dest.right;
116 dest.right = width;
H A DHorizontalScrollView.java810 * if leftFocus is true, or at the right of the bounds if leftFocus
845 * if leftFocus is true, or at the right of the bounds if
849 * @param right the right offset of the bounds in which a focusable must
854 private View findFocusableViewInBounds(boolean leftFocus, int left, int right) { argument
861 * left, and its right is above the bound's right. A partially
874 if (left < viewRight && viewLeft < right) {
881 (viewRight < right);
923 * method will scroll the view by one page left or right an
1000 scrollAndFocus(int direction, int left, int right) argument
[all...]
/packages/apps/Camera/jni/feature_mos/src/mosaic/
H A DMosaicTypes.h37 left = right = top = bottom = 0.0;
42 return right - left;
53 int left, right, top, bottom; member in class:MosaicRect
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
H A DMosaicTypes.h37 left = right = top = bottom = 0.0;
42 return right - left;
53 int left, right, top, bottom; member in class:MosaicRect
/packages/apps/Settings/src/com/android/settings/deviceinfo/
H A DPercentageBarChart.java76 final int right = getWidth() - getPaddingRight();
80 final int width = right - left;
84 float nextX = right;
120 if (nextX > right) {
121 canvas.drawRect(lastX, top, right, bottom, e.paint);
130 canvas.drawRect(lastX, top, right, bottom, mEmptyPaint);
/packages/apps/Browser/src/com/android/browser/view/
H A DStopProgressView.java73 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
74 super.onLayout(changed, left, top, right, bottom);
75 mWidth = (right - left) * 2 / 3;
/packages/apps/Camera/src/com/android/camera/ui/
H A DRenderOverlay.java38 public void layout(int left, int top, int right, int bottom); argument
139 public void layout(int left, int top, int right, int bottom) { argument
141 super.layout(left, top, right, bottom);
144 renderer.layout(left, top, right, bottom);
H A DOverlayRenderer.java66 public void layout(int left, int top, int right, int bottom) { argument
68 mRight = right;
/packages/apps/Gallery/src/com/android/camera/
H A DHighlightView.java125 int right = mDrawRect.right + 1;
139 + ((mDrawRect.right - mDrawRect.left) / 2);
149 mResizeDrawableWidth.setBounds(right - widthWidth,
151 right + widthWidth,
216 && (x < r.right + hysteresis);
222 if ((Math.abs(r.right - x) < hysteresis) && verticalCheck) {
279 Math.min(0, mImageRect.right - mCropRect.right),
334 } else if (r.right > mImageRec
[all...]
/packages/apps/Mms/src/com/android/mms/ui/
H A DQuickContactDivot.java134 final int right = getWidth();
135 final int middle = right / 2;
143 right - mDrawableIntrinsicWidth,
145 right,
/packages/apps/Gallery2/tests/src/com/android/gallery3d/ui/
H A DGLViewMock.java58 int right, int bottom) {
64 item.layout(left, top, right, bottom);
57 onLayout(boolean changeSize, int left, int top, int right, int bottom) argument
H A DGLMock.java130 float left, float right, float bottom, float top,
132 float tx = -(right + left) / (right - left);
136 2 / (right - left), 0, 0, 0,
129 glOrthof( float left, float right, float bottom, float top, float zNear, float zFar) argument
/packages/apps/LegacyCamera/src/com/android/camera/ui/
H A DIndicatorControlWheelContainer.java101 boolean changed, int left, int top, int right, int bottom) {
106 mCenterX = right - left - Util.dpToPixel(FULL_WHEEL_RADIUS);
108 mShutterButton.layout(right - left - shutterButtonWidth,
110 right - left,
113 mIndicatorControlWheel.layout(0, 0, right - left, bottom - top);
100 onLayout( boolean changed, int left, int top, int right, int bottom) argument
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DCropView.java186 rect.right * mImageWidth, rect.bottom * mImageHeight);
316 && r.left >= d && r.right < width - d
351 offsetX + (input.right * mImageWidth - x) * s,
388 mImageWidth * (highlight.left + highlight.right) * 0.5f);
395 (highlight.left + highlight.right) * mImageWidth / 2);
461 dx = Utils.clamp(dx, -r.left, 1 - r.right);
466 r.right += dx;
472 float right = r.right - MIN_SELECTION_LENGTH / mImageWidth;
476 r.right
[all...]
/packages/apps/Contacts/src/com/android/contacts/calllog/
H A DCallTypeIconsView.java103 final int right = left + drawable.getIntrinsicWidth();
104 drawable.setBounds(left, 0, right, drawable.getIntrinsicHeight());
106 left = right + mResources.iconMargin;
/packages/apps/VideoEditor/src/com/android/videoeditor/
H A DKenBurnsActivity.java429 / ((float)(mStartRect.right - mStartRect.left));
433 + mStartRect.right + ", " + mStartRect.bottom);
447 / ((float)(mEndRect.right - mEndRect.left));
451 + mEndRect.right + ", " + mEndRect.bottom);
483 + ", " + mMatrixRect.top + ", " + mMatrixRect.right
489 final int right = (int)(((-mMatrixRect.left + lp.width)/scale) / mImageViewScale);
492 mStartRect.set(left, top, right, bottom);
495 + mStartRect.right + ", " + mStartRect.bottom);
510 + ", " + mMatrixRect.top + ", " + mMatrixRect.right
516 final int right
[all...]
/packages/inputmethods/LatinIME/native/jni/src/
H A Dproximity_info.h127 const int right = left + mKeyWidths[keyId] + 1; local
129 return left < right && top < bottom && x >= left && x < right && y >= top && y < bottom;
/packages/apps/Browser/src/com/android/browser/
H A DPageProgressView.java82 mBounds.right = getWidth() * mCurrentProgress / MAX_PROGRESS;
96 mBounds.right = (r - l) * mCurrentProgress / MAX_PROGRESS;

Completed in 3444 milliseconds

1234567