Searched defs:right (Results 1 - 25 of 106) sorted by relevance

12345

/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;
/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);
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DFolderListLayout.java47 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
49 super.onLayout(changed, left, top, right, bottom);
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/ui/
H A DSelectionRenderer.java24 public static void drawSelection(Canvas canvas, int left, int top, int right, int bottom, argument
26 canvas.drawRect(left, top, right, top + stroke, paint);
27 canvas.drawRect(left, bottom - stroke, right, bottom, paint);
29 canvas.drawRect(right - stroke, top, right, bottom, paint);
32 public static void drawSelection(Canvas canvas, int left, int top, int right, int bottom, argument
34 canvas.drawRect(left, top, right, top + stroke, selectPaint);
35 canvas.drawRect(left, bottom - stroke, right, bottom, selectPaint);
37 canvas.drawRect(right - stroke, top, right, botto
[all...]
/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/Calendar/src/com/android/calendar/
H A DDayOfMonthCursor.java28 * <li>Provides methods to move the cursor up / down / left / right.</li>
163 * Move right one box, potentially flipping to the next month.
167 public boolean right() { method in class:DayOfMonthCursor
/packages/apps/Camera/jni/feature_mos/src/mosaic/
H A DDelaunay.h124 #define right(a) orig(rot(a)) macro
/packages/apps/Camera2/jni/feature_mos/src/mosaic/
H A DDelaunay.h124 #define right(a) orig(rot(a)) macro
/packages/apps/Camera2/src/com/android/camera/ui/
H A DRotateLayout.java52 boolean change, int left, int top, int right, int bottom) {
53 int width = right - left;
51 onLayout( boolean change, int left, int top, int right, int bottom) argument
H A DOverlayRenderer.java66 public void layout(int left, int top, int right, int bottom) { argument
68 mRight = right;
/packages/apps/Dialer/src/com/android/dialer/list/
H A DTileInteractionTeaserView.java59 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
60 super.onLayout(changed, left, top, right, bottom);
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DScrollBarView.java56 boolean changed, int left, int top, int right, int bottom) {
55 onLayout( boolean changed, int left, int top, int right, int bottom) argument
H A DDetailsHelper.java57 public void layout(int left, int top, int right, int bottom) { argument
H A DEdgeView.java54 boolean changeSize, int left, int top, int right, int bottom) {
57 int w = right - left;
62 } else { // left or right
53 onLayout( boolean changeSize, int left, int top, int right, int bottom) argument
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
H A DDelaunay.h124 #define right(a) orig(rot(a)) macro
/packages/apps/LegacyCamera/src/com/android/camera/ui/
H A DRotateLayout.java49 boolean change, int left, int top, int right, int bottom) {
50 int width = right - left;
48 onLayout( boolean change, int left, int top, int right, int bottom) argument
H A DIndicatorControlBar.java88 boolean changed, int left, int top, int right, int bottom) {
92 // We have (equal) paddings at left and right, but no padding at top or
95 int width = right - left;
87 onLayout( boolean changed, int left, int top, int right, int bottom) argument
H A DZoomControlBar.java126 boolean changed, int left, int top, int right, int bottom) {
125 onLayout( boolean changed, int left, int top, int right, int bottom) argument
/packages/apps/Camera/src/com/android/camera/ui/
H A DOverlayRenderer.java66 public void layout(int left, int top, int right, int bottom) { argument
68 mRight = right;
H A DRotateLayout.java63 boolean change, int left, int top, int right, int bottom) {
64 int width = right - left;
62 onLayout( boolean change, int left, int top, int right, int bottom) argument
/packages/apps/Camera2/src/com/android/camera/tinyplanet/
H A DTinyPlanetPreview.java103 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
104 super.onLayout(changed, left, top, right, bottom);
106 int width = right - left;
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
H A DContactListPinnedHeaderView.java115 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
116 int width = right - left;
141 // Take into account left and right padding when laying out the below views.
/packages/apps/ContactsCommon/src/com/android/contacts/common/widget/
H A DProportionalLayout.java122 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
128 child.layout(0, 0, right-left, bottom-top);
/packages/apps/Launcher2/src/com/android/launcher2/
H A DPagedViewGridLayout.java81 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
82 super.onLayout(changed, left, top, right, bottom);
/packages/apps/Launcher3/src/com/android/launcher3/
H A DPagedViewGridLayout.java81 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
82 super.onLayout(changed, left, top, right, bottom);

Completed in 804 milliseconds

12345