Searched refs:left (Results 1 - 25 of 73) sorted by relevance

123

/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;
H A DWnnClause.java67 new WnnPOS(stem.partOfSpeech.left, fzk.partOfSpeech.right),
H A DWnnSentence.java70 this.partOfSpeech = new WnnPOS(headClause.partOfSpeech.left, lastClause.partOfSpeech.right);
105 this.partOfSpeech = new WnnPOS(prev.partOfSpeech.left, clause.partOfSpeech.right);
136 this.partOfSpeech = new WnnPOS(head.partOfSpeech.left, tail.partOfSpeech.right);
/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 DSlideView.java125 public void setImageRegion(int left, int top, int width, int height) { argument
128 mImageView.setLayoutParams(new LayoutParams(width, height, left, top));
242 public void setTextRegion(int left, int top, int width, int height) { argument
245 mScrollText.setLayoutParams(new LayoutParams(width, height, left, top));
249 public void setVideoRegion(int left, int top, int width, int height) { argument
251 mVideoView.setLayoutParams(new LayoutParams(width, height, left, top));
412 public Position(int left, int top) { argument
414 mLeft = left;
455 protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
456 super.onLayout(changed, left, to
[all...]
/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/Calendar/src/com/android/calendar/
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 DGLView.java96 private boolean setBounds(int left, int top, int right, int bottom) { argument
97 boolean sizeChanged = (right - left) != (mBounds.right - mBounds.left)
99 mBounds.set(left, top, right, bottom);
160 return mBounds.right - mBounds.left;
205 int xoffset = component.mBounds.left - mScrollX;
239 int left = rect.left;
242 event.offsetLocation(-left, -top);
244 event.offsetLocation(left, to
291 setPaddings(int left, int top, int right, int bottom) argument
295 layout(int left, int top, int right, int bottom) argument
340 onLayout( boolean changeSize, int left, int top, int right, int bottom) argument
[all...]
H A DAbstractIndicator.java51 int width = getWidth() - p.left - p.right;
56 matrix.preTranslate(p.left + width / 2, p.top + height / 2);
62 p.left + (width - icon.getWidth()) / 2,
H A DLinearLayout.java42 int offsetX = p.left;
43 int width = (r - l) - p.left - p.right;
H A DMeasureHelper.java41 getLength(widthSpec, mPreferredWidth + p.left + p.right),
H A DIndicatorBar.java50 mHighlight.draw(root, bounds.left, bounds.top);
112 boolean changed, int left, int top, int right, int bottom) {
114 getComponent(0).layout(0, 0, right - left, bottom - top);
119 int cRight = right - left - p.right;
121 int xoffset = mPaddings.left;
111 onLayout( boolean changed, int left, int top, int right, int bottom) argument
H A DZoomController.java121 mSliderLeft = p.left + mMaxLabelWidth + sHorizontalPadding
225 int xoffset = mPaddings.left + mMaxLabelWidth;
260 int left = mSliderLeft;
264 sBackground.draw(root, left, top);
267 sSlider.draw(root, left, (int)
270 sSlider.draw(root, left, mSliderPosition);
/packages/apps/Gallery/src/com/android/camera/
H A DEvenlySpacedLayout.java83 int left = mKeepEndSpace ? spacing : 0;
90 child.layout(left, top, left + w, top + h);
91 left += w;
92 left += spacing;
111 int left = 0;
117 child.layout(left, top, left + w, top + h);
H A DActionMenuButton.java77 final int left = getCompoundPaddingLeft();
80 rect.set(left + layout.getLineLeft(0) - PADDING_H,
82 Math.min(left + layout.getLineRight(0) + PADDING_H,
H A DHighlightView.java92 path.addCircle(mDrawRect.left + (width / 2),
115 int x = mDrawRect.left
124 int left = mDrawRect.left + 1;
138 int xMiddle = mDrawRect.left
139 + ((mDrawRect.right - mDrawRect.left) / 2);
143 mResizeDrawableWidth.setBounds(left - widthWidth,
145 left + widthWidth,
215 boolean horizCheck = (x >= r.left - hysteresis)
219 if ((Math.abs(r.left
[all...]
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;
/packages/apps/Gallery3D/src/com/cooliris/media/
H A DHighlightView.java89 path.addCircle(mDrawRect.left + (width / 2), mDrawRect.top + (height / 2), width / 2, Path.Direction.CW);
107 int x = mDrawRect.left + (mDrawRect.width() / 2) + d - width / 2;
113 int left = mDrawRect.left + 1;
123 int xMiddle = mDrawRect.left + ((mDrawRect.right - mDrawRect.left) / 2);
126 mResizeDrawableWidth.setBounds(left - widthWidth, yMiddle - widthHeight, left + widthWidth, yMiddle
188 boolean horizCheck = (x >= r.left - hysteresis) && (x < r.right + hysteresis);
191 if ((Math.abs(r.left
[all...]
H A DIconTitleDrawable.java67 int x = bounds.left + mConfig.mTitleLeft;
90 int left = bounds.left;
95 int iconLeft = left + config.mIconLeft;
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 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)
/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),
/packages/apps/Camera/src/com/android/camera/
H A DRotateImageView.java80 int w = bounds.right - bounds.left;
99 int left = getPaddingLeft();
103 int width = getWidth() - left - right;
107 canvas.translate(left + width / 2, top + height / 2);
/packages/apps/Contacts/src/com/android/contacts/
H A DTabStripView.java103 selBounds.left = selectedChild.getLeft() - getScrollX();
107 Math.min(0, selBounds.left
110 selBounds.left,
/packages/apps/IM/src/com/android/im/engine/
H A DChatGroupManager.java77 * have left.
125 * registered GroupListeners will be notified when the the user left the
199 * @param left a list of users that have left the group.
202 ArrayList<Contact> left) {
213 if (left != null) {
214 for (Contact contact : left) {
242 * Notifies the GroupListeners that the user has left a certain group.
281 * Notifies that a contact has left this group.
283 * @param group the group which the contact has left
201 notifyGroupChanged(Address groupAddress, ArrayList<Contact> joined, ArrayList<Contact> left) argument
[all...]

Completed in 202 milliseconds

123