Searched defs:left (Results 1 - 25 of 38) sorted by relevance

12

/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DWnnPOS.java25 /** The part of speech at left side */
26 public int left = 0; field in class:WnnPOS
39 * @param left The part of speech at left side
42 public WnnPOS(int left, int right) { argument
43 this.left = left;
/packages/apps/Mms/src/com/android/mms/ui/
H A DAdaptableSlideViewInterface.java27 void setTextRegion(int left, int top, int width, int height); argument
31 void setImageRegion(int left, int top, int width, int height); argument
35 void setVideoRegion(int left, int top, int width, int height); argument
H A DSearchActivity.java102 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
175 super.onLayout(changed, left, top, right, bottom);
/packages/apps/Calendar/src/com/android/calendar/
H A DDayOfMonthCursor.java28 * <li>Provides methods to move the cursor up / down / left / right.</li>
138 * Move left one box, potentially flipping to the previous month.
142 public boolean left() { method in class:DayOfMonthCursor
H A DEventGeometry.java48 boolean computeEventRect(int date, int left, int top, int cellWidth, Event event) { argument
101 event.left = left + mCellMargin + col * colWidth;
102 event.right = event.left + colWidth;
110 if (event.left < selection.right && event.right >= selection.left
121 float left = event.left;
126 if (x >= left) {
155 // x < left
[all...]
/packages/apps/Camera/src/com/android/camera/ui/
H A DRotatePane.java38 boolean change, int left, int top, int right, int bottom) {
39 int width = right - left;
37 onLayout( boolean change, int left, int top, int right, int bottom) argument
H A DIndicatorBar.java48 mHighlight.draw(root, bounds.left, bounds.top,
111 boolean changed, int left, int top, int right, int bottom) {
113 getComponent(0).layout(0, 0, right - left, bottom - top);
118 int cRight = right - left - p.right;
120 int xoffset = mPaddings.left;
110 onLayout( boolean changed, int left, int top, int right, int bottom) argument
H A DPopupWindow.java79 Math.max(0, width - p.left - p.right
94 + p.left + p.right + mAnchor.getWidth() - mAnchorOffset,
100 boolean change, int left, int top, int right, int bottom) {
103 view.layout(p.left, p.top,
99 onLayout( boolean change, int left, int top, int right, int bottom) argument
H A DHeadUpDisplay.java162 boolean changed, int left, int top, int right, int bottom) {
163 int width = right - left;
196 int anchorX = rect.left + sPopupWindowOverlap;
161 onLayout( boolean changed, int left, int top, int right, int bottom) argument
/packages/apps/Contacts/src/com/android/contacts/
H A DPinnedHeaderListView.java122 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
123 super.onLayout(changed, left, top, right, bottom);
H A DContactListItemView.java188 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
190 int width = right - left;
205 // Positions of views on the left are fixed and so are those on the right side.
207 // by laying out the left and right sides. Then we will allocate the remainder
/packages/apps/Gallery3D/src/com/cooliris/media/
H A DFloatUtils.java147 * @param left
148 * : the x coordinate of the left most point
161 public static final boolean boundsContainsPoint(float left, float right, float top, float bottom, float posX, float posY) { argument
163 if (posX < left || posX > right || posY < top || posY > bottom)
H A DMatrixStack.java46 public void glFrustumf(float left, float right, float bottom, float top, float near, float far) { argument
47 Matrix.frustumM(mMatrix, mTop, left, right, bottom, top, near, far);
50 public void glFrustumx(int left, int right, int bottom, int top, int near, int far) { argument
51 glFrustumf(fixedToFloat(left), fixedToFloat(right), fixedToFloat(bottom), fixedToFloat(top), fixedToFloat(near),
103 public void glOrthof(float left, float right, float bottom, float top, float near, float far) { argument
104 Matrix.orthoM(mMatrix, mTop, left, right, bottom, top, near, far);
107 public void glOrthox(int left, int right, int bottom, int top, int near, int far) { argument
108 glOrthof(fixedToFloat(left), fixedToFloat(right), fixedToFloat(bottom), fixedToFloat(top), fixedToFloat(near),
H A DCropImage.java563 if (faceRect.left < 0) {
564 faceRect.inset(-faceRect.left, -faceRect.left);
680 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
681 super.onLayout(changed, left, top, right, bottom);
857 int panDeltaX1 = Math.max(0, getLeft() - r.left);
H A DImageViewTouchBase.java77 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
78 super.onLayout(changed, left, top, right, bottom);
79 mThisWidth = right - left;
203 deltaX = (viewWidth - width) / 2 - rect.left;
204 } else if (rect.left > 0) {
205 deltaX = -rect.left;
/packages/apps/Launcher2/src/com/android/launcher2/
H A DBubbleTextView.java80 protected boolean setFrame(int left, int top, int right, int bottom) { argument
81 if (mLeft != left || mRight != right || mTop != top || mBottom != bottom) {
84 return super.setFrame(left, top, right, bottom);
124 final int left = getCompoundPaddingLeft();
127 rect.set(left + layout.getLineLeft(0) - mPaddingH,
129 Math.min(left + layout.getLineRight(0) + mPaddingH, mScrollX + mRight - mLeft),
H A DDragView.java66 int left, int top, int width, int height) {
78 mBitmap = Bitmap.createBitmap(bitmap, left, top, width, height, scale, true);
65 DragView(Context context, Bitmap bitmap, int registrationX, int registrationY, int left, int top, int width, int height) argument
/packages/apps/Mms/src/com/android/mms/model/
H A DRegionModel.java30 public RegionModel(String regionId, int left, int top, argument
32 this(regionId, DEFAULT_FIT, left, top, width, height);
35 public RegionModel(String regionId, String fit, int left, int top, argument
37 this(regionId, fit, left, top, width, height, null);
40 public RegionModel(String regionId, String fit, int left, int top, argument
44 mLeft = left;
81 * @param left the mLeft to set
83 public void setLeft(int left) { argument
84 mLeft = left;
/packages/apps/Phone/src/com/android/phone/
H A DButtonGridLayout.java35 * - horizontal = left + right padding and
141 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
H A DInCallMenuView.java288 // Start at the left
309 childLayoutParams.left = (int) itemLeft;
376 child.layout(childLayoutParams.left, childLayoutParams.top,
468 * Layout parameters specific to InCallMenuView (stores the left, top,
472 int left, top, right, bottom; field in class:InCallMenuView.LayoutParams
/packages/apps/Calculator/src/com/android/calculator2/
H A DCalculatorDisplay.java64 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
65 super.onLayout(changed, left, top, right, bottom);
/packages/apps/Mms/src/com/android/mms/dom/smil/
H A DSmilRegionElementImpl.java46 private static final String LEFT_ATTRIBUTE_NAME = "left";
138 public void setLeft(int left) throws DOMException { argument
139 this.setAttribute(LEFT_ATTRIBUTE_NAME, String.valueOf(left));
281 + ", left=" + getLeft()
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
H A DOpenWnnClauseConverterJAJP.java326 if (connectible(stem.partOfSpeech.right, terminal.left)) {
330 if (connectible(stem.partOfSpeech.right, fzk.partOfSpeech.left)
331 && connectible(fzk.partOfSpeech.right, terminal.left)) {
378 * @param left Left attribute of the following word/clause
381 private boolean connectible(int right, int left) { argument
383 if (mConnectMatrix[left][right] != 0) {
443 if (connectible(word.partOfSpeech.right, follow.partOfSpeech.left)) {
444 fzks.add(new WnnWord(key, key, new WnnPOS(word.partOfSpeech.left, follow.partOfSpeech.right)));
/packages/apps/Gallery/src/com/android/camera/
H A DCropImage.java444 if (faceRect.left < 0) {
445 faceRect.inset(-faceRect.left, -faceRect.left);
565 protected void onLayout(boolean changed, int left, int top, argument
567 super.onLayout(changed, left, top, right, bottom);
740 int panDeltaX1 = Math.max(0, mLeft - r.left);
H A DImageViewTouchBase.java77 protected void onLayout(boolean changed, int left, int top, argument
79 super.onLayout(changed, left, top, right, bottom);
80 mThisWidth = right - left;
218 deltaX = (viewWidth - width) / 2 - rect.left;
219 } else if (rect.left > 0) {
220 deltaX = -rect.left;

Completed in 212 milliseconds

12