Searched refs:vertical (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DScrollBarDrawable.java60 * Indicate whether the vertical scrollbar track should always be drawn regardless of the
70 * Indicates whether the vertical scrollbar track should always be drawn regardless of the
85 public void setParameters(int range, int offset, int extent, boolean vertical) { argument
86 if (mVertical != vertical) {
97 mVertical = vertical;
102 final boolean vertical = mVertical;
109 drawTrack = vertical ? mAlwaysDrawVerticalTrack : mAlwaysDrawHorizontalTrack;
118 drawTrack(canvas, r, vertical);
122 int size = vertical ? r.height() : r.width();
123 int thickness = vertical
147 drawTrack(Canvas canvas, Rect bounds, boolean vertical) argument
162 drawThumb(Canvas canvas, Rect bounds, int offset, int length, boolean vertical) argument
206 getSize(boolean vertical) argument
[all...]
H A DSlidingDrawer.java416 final boolean vertical = mVertical;
417 if (vertical) {
444 if (vertical ? (mExpanded && top < mTapThreshold + mTopOffset) ||
455 animateClose(vertical ? top : left);
457 animateOpen(vertical ? top : left);
460 performFling(vertical ? top : left, velocity, false);
464 performFling(vertical ? top : left, velocity, false);
467 performFling(vertical ? top : left, velocity, false);
/frameworks/support/v7/gridlayout/gen/android/support/v7/gridlayout/
H A DR.java100 <tr><td><code>center_vertical</code></td><td>0x10</td><td> Place object in the vertical center of its container, not changing its size. </td></tr>
101 <tr><td><code>fill_vertical</code></td><td>0x70</td><td> Grow the vertical size of the object if needed so it completely fills its container. </td></tr>
104 <tr><td><code>center</code></td><td>0x11</td><td> Place the object in the center of its container in both the vertical and horizontal axis, not changing its size. </td></tr>
105 <tr><td><code>fill</code></td><td>0x77</td><td> Grow the horizontal and vertical size of the object if needed so it completely fills its container. </td></tr>
109 The clip will be based on the vertical gravity: a top gravity will clip the bottom
161 row is full. The rowCount attribute may be used similarly in the vertical case.
171 <tr><td><code>vertical</code></td><td>1</td><td> Defines a vertical widget. </td></tr>
236 public static int vertical=0x7f020001; field in class:R.id
356 row is full. The rowCount attribute may be used similarly in the vertical cas
[all...]
/frameworks/base/media/java/android/media/
H A DTimedText.java151 * vertical justification 0: top, 1: centered, -1: bottom
158 * @param vertical the vertical justification of the text.
160 public Justification(int horizontal, int vertical) { argument
162 this.verticalJustification = vertical;
486 int vertical = parcel.readInt();
487 mJustification = new Justification(horizontal, vertical);
/frameworks/base/docs/html/reference/renderscript/
H A Ddoxygen.css223 vertical-align: middle;
244 vertical-align: middle;
495 vertical-align: top;
500 vertical-align: top;
505 vertical-align: top;
569 vertical-align: -30%;
600 vertical-align: -30%;
653 vertical-align: top;
838 vertical-align: bottom;
/frameworks/base/core/java/android/text/
H A DStaticLayout.java839 public int getLineForVertical(int vertical) { argument
846 if (lines[mColumns * guess + TOP] > vertical){
H A DLayout.java621 * Return the vertical position of the top of the specified line
980 * Get the line number corresponding to the specified vertical position.
985 public int getLineForVertical(int vertical) { argument
991 if (getLineTop(guess) > vertical)
1141 * Return the vertical position of the bottom of the specified line.
1148 * Return the vertical position of the baseline of the specified line.
1258 * at the specified offset. This will often be a vertical line

Completed in 277 milliseconds