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

123456

/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/DeskClock/src/com/android/deskclock/
H A DAlarmRecyclerView.java53 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
55 super.onLayout(changed, left, top, right, bottom);
H A DFabController.java10 * {@link #onUpdateFabButtons left/right buttons} including setting them {@link View#INVISIBLE} if
13 * {@link #onRightButtonClick right button}.
32 * Configures the display of the buttons to the left and right of the fab to match the current
36 * @param right button to the right of the fab to configure based on current state
38 void onUpdateFabButtons(@NonNull Button left, @NonNull Button right); argument
55 * Handles a click on the button to the right of the fab component.
57 * @param right the button to the right of the fab component
59 void onRightButtonClick(@NonNull Button right); argument
[all...]
H A DDeskClockFragment.java34 /** The container that houses the fab and its left and right buttons. */
62 public void onRightButtonClick(@NonNull Button right) { argument
79 * @param fabContainer the container that houses the fab and its left and right buttons
/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/Dialer/java/com/android/dialer/searchfragment/cp2/
H A DContactTernarySearchTree.java32 * "O". But if the traversal required visiting {@link Node#left} or {@link Node#right}, {@code
51 node.right = put(node.right, key, value, position);
80 return get(node.right, key, position);
88 /** Node in ternary search trie. Children are denoted as left, middle and right nodes. */
95 private Node right; field in class:ContactTernarySearchTree.Node
/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/Launcher3/src/com/android/launcher3/qsb/
H A DQsbWidgetHostView.java57 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
59 super.onLayout(changed, left, top, right, bottom);
/packages/apps/PackageInstaller/src/com/android/packageinstaller/permission/ui/
H A DManualLayoutFrame.java63 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
/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/Camera2/src/com/android/camera/ui/
H A DPreviewStatusListener.java49 public void onPreviewLayoutChanged(View v, int left, int top, int right, argument
H A DProgressOverlay.java45 public void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
46 super.onLayout(changed, left, top, right, bottom);
48 mCenterX = (right - left) / 2;
H A DRotateLayout.java54 boolean change, int left, int top, int right, int bottom) {
55 int width = right - left;
53 onLayout( boolean change, int left, int top, int right, int bottom) argument
H A DStickyBottomCaptureLayout.java100 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
108 (int) uncoveredPreviewRect.right, (int) uncoveredPreviewRect.bottom);
124 (int) bottomBarRect.right, (int) bottomBarRect.bottom);
161 x = uncoveredPreviewRect.right - distanceFromModeOptions;
173 x = uncoveredPreviewRect.right - threeDotsButtonPadding - modeOptionsToggleWidth;
175 x = uncoveredPreviewRect.right - modeOptionsHeight;
/packages/apps/Dialer/java/com/android/dialer/callcomposer/camera/camerafocus/
H A DOverlayRenderer.java30 private int right; field in class:OverlayRenderer
69 public void layout(int left, int top, int right, int bottom) { argument
71 this.right = right;
85 return right - left;
/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
/packages/apps/Launcher3/src/com/android/launcher3/graphics/
H A DNinePatchDrawHelper.java42 public void draw(Bitmap bitmap, Canvas canvas, float left, float top, float right) { argument
49 draw3Patch(bitmap, canvas, left, right);
59 float right, float bottom) {
60 draw(bitmap, canvas, left, top, right);
68 draw3Patch(bitmap, canvas, left, right);
73 private void draw3Patch(Bitmap bitmap, Canvas canvas, float left, float right) { argument
80 // Draw right edge
81 drawRegion(bitmap, canvas, halfWidth, width, right - halfWidth, right);
86 left + halfWidth, right
58 drawVerticallyStretched(Bitmap bitmap, Canvas canvas, float left, float top, float right, float bottom) argument
[all...]
/packages/apps/Launcher3/src/com/android/launcher3/util/
H A DTransformingTouchDelegate.java51 public void setBounds(int left, int top, int right, int bottom) { argument
52 mBounds.set(left, top, right, bottom);
/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
/packages/apps/TV/tests/common/src/com/android/tv/testing/
H A DComparableTester.java74 int left, int right, Collection<T> leftGroup, Collection<T> rightGroup) {
80 String rightName = "Item[" + right + "," + (rightSub++) + "]";
97 int left, int right, Collection<T> leftGroup, Collection<T> rightGroup) {
103 String rightName = "Item[" + right + "," + (rightSub++) + "]";
73 assertLess( int left, int right, Collection<T> leftGroup, Collection<T> rightGroup) argument
96 assertMore( int left, int right, Collection<T> leftGroup, Collection<T> rightGroup) argument
H A DComparatorTester.java87 int left, int right, Collection<T> leftGroup, Collection<T> rightGroup) {
93 String rName = "Item[" + right + "," + (rightSub++) + "]";
110 int left, int right, Collection<T> leftGroup, Collection<T> rightGroup) {
116 String rName = "Item[" + right + "," + (rightSub++) + "]";
86 assertLess( int left, int right, Collection<T> leftGroup, Collection<T> rightGroup) argument
109 assertMore( int left, int right, Collection<T> leftGroup, Collection<T> rightGroup) argument
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/result/
H A Dsuggested_word.h31 bool operator()(const SuggestedWord &left, const SuggestedWord &right) { argument
32 if (left.getScore() != right.getScore()) {
33 return left.getScore() > right.getScore();
35 return left.getCodePointCount() < right.getCodePointCount();
/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/Contacts/src/com/android/contacts/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);

Completed in 665 milliseconds

123456