Searched refs:vertical (Results 1 - 14 of 14) 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.java421 final boolean vertical = mVertical;
422 if (vertical) {
449 if (vertical ? (mExpanded && top < mTapThreshold + mTopOffset) ||
460 animateClose(vertical ? top : left);
462 animateOpen(vertical ? top : left);
465 performFling(vertical ? top : left, velocity, false);
469 performFling(vertical ? top : left, velocity, false);
472 performFling(vertical ? top : left, velocity, false);
/frameworks/base/libs/hwui/utils/
H A DBlur.h30 static void vertical(float* weights, int32_t radius, const uint8_t* source,
H A DBlur.cpp107 void Blur::vertical(float* weights, int32_t radius, function in class:android::uirenderer::Blur
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
H A DUploadedTexture.java86 public boolean vertical; field in class:UploadedTexture.BorderKey
93 return vertical ? x : -x;
100 return vertical == o.vertical
119 boolean vertical, Config config, int length) {
121 key.vertical = vertical;
126 bitmap = vertical
118 getBorderLine( boolean vertical, Config config, int length) argument
/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/support/v4/java/android/support/v4/widget/
H A DAutoScrollHelper.java59 * {@link #setRelativeEdges}. Default value is 20% for both vertical and
74 * Default value is 100% per second for both vertical and horizontal.
289 * @param verticalMax The maximum vertical scrolling velocity, or
307 * @param verticalMin The minimum vertical scrolling velocity, or
327 * @param vertical The target vertical velocity as a fraction of the host
332 public AutoScrollHelper setRelativeVelocity(float horizontal, float vertical) { argument
334 mRelativeVelocity[VERTICAL] = vertical / 1000f;
367 * @param vertical The vertical edg
372 setRelativeEdges(float horizontal, float vertical) argument
[all...]
/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/com/android/internal/widget/
H A DAutoScrollHelper.java58 * {@link #setRelativeEdges}. Default value is 20% for both vertical and
73 * Default value is 100% per second for both vertical and horizontal.
288 * @param verticalMax The maximum vertical scrolling velocity, or
306 * @param verticalMin The minimum vertical scrolling velocity, or
326 * @param vertical The target vertical velocity as a fraction of the host
331 public AutoScrollHelper setRelativeVelocity(float horizontal, float vertical) { argument
333 mRelativeVelocity[VERTICAL] = vertical / 1000f;
366 * @param vertical The vertical edg
371 setRelativeEdges(float horizontal, float vertical) argument
[all...]
/frameworks/base/core/java/android/app/
H A DActivityManager.java1298 public boolean vertical; field in class:ActivityManager.StackBoxInfo
1313 dest.writeInt(vertical ? 1 : 0);
1327 vertical = source.readInt() == 1;
1363 sb.append(" vertical=" + vertical); sb.append(" bounds=" + bounds.toShortString());
/frameworks/base/core/java/android/text/
H A DStaticLayout.java823 public int getLineForVertical(int vertical) { argument
830 if (lines[mColumns * guess + TOP] > vertical){
H A DLayout.java624 * Return the vertical position of the top of the specified line
1004 * Get the line number corresponding to the specified vertical position.
1009 public int getLineForVertical(int vertical) { argument
1015 if (getLineTop(guess) > vertical)
1165 * Return the vertical position of the bottom of the specified line.
1172 * Return the vertical position of the baseline of the specified line.
1299 * at the specified offset. This will often be a vertical line
/frameworks/base/services/java/com/android/server/wm/
H A DDisplayContent.java297 info.vertical = box.mVertical;
/frameworks/base/libs/hwui/
H A DFontRenderer.cpp642 // NOTE: bounds.isEmpty() can't be used here, since vertical coordinates are inverted
768 Blur::vertical(gaussian, radius, scratch, *image, width, height);

Completed in 448 milliseconds