HomeSort by relevance Sort by last modified time
    Searched refs:startY (Results 1 - 25 of 244) sorted by null

1 2 3 4 5 6 7 8 910

  /frameworks/support/compat/java/android/support/v4/widget/
ScrollerCompat.java 152 * @param startY Starting vertical scroll offset in pixels. Positive numbers
162 public void startScroll(int startX, int startY, int dx, int dy) {
163 mScroller.startScroll(startX, startY, dx, dy);
171 * @param startY Starting vertical scroll offset in pixels. Positive numbers
182 public void startScroll(int startX, int startY, int dx, int dy, int duration) {
183 mScroller.startScroll(startX, startY, dx, dy, duration);
191 * @param startY Starting point of the scroll (Y)
208 public void fling(int startX, int startY, int velocityX, int velocityY,
210 mScroller.fling(startX, startY, velocityX, velocityY, minX, maxX, minY, maxY);
218 * @param startY Starting point of the scroll (Y
    [all...]
  /frameworks/base/core/java/android/transition/
PathMotion.java 47 * Provide a Path to interpolate between two points <code>(startX, startY)</code> and
51 * @param startY The y coordinate of the starting point.
55 * must start at point <code>(startX, startY)</code>, typically using
58 public abstract Path getPath(float startX, float startY, float endX, float endY);
PatternPathMotion.java 111 float startY = pos[1];
113 if (startX == endX && startY == endY) {
117 mTempMatrix.setTranslate(-startX, -startY);
119 float dy = endY - startY;
130 public Path getPath(float startX, float startY, float endX, float endY) {
132 double dy = endY - startY;
138 mTempMatrix.postTranslate(startX, startY);
ArcMotion.java 180 public Path getPath(float startX, float startY, float endX, float endY) {
198 path.moveTo(startX, startY);
203 float deltaY = endY - startY;
210 float dy = (startY + endY) / 2;
217 boolean isMovingUpwards = startY > endY;
230 ey = startY + eDistY;
241 ey = startY;
269 float control1Y = (startY + ey) / 2;
TranslationAnimationCreator.java 44 * @param startY The start translation y of view
48 * @return An animator that moves from (startX, startY) to (endX, endY) unless there was
52 float startX, float startY, float endX, float endY, TimeInterpolator interpolator,
59 startY = startPosition[1] - viewPosY + terminalY;
61 // Initial position is at translation startX, startY, so position is offset by that amount
63 int startPosY = viewPosY + Math.round(startY - terminalY);
66 view.setTranslationY(startY);
67 if (startX == endX && startY == endY) {
71 path.moveTo(startX, startY);
99 int startX, int startY, float terminalX, float terminalY)
    [all...]
ChangeScroll.java 75 int startY = (Integer) startValues.values.get(PROPNAME_SCROLL_Y);
83 if (startY != endY) {
84 view.setScrollY(startY);
85 scrollYAnimator = ObjectAnimator.ofInt(view, "scrollY", startY, endY);
  /frameworks/support/transition/src/android/support/transition/
PathMotion.java 50 * Provide a Path to interpolate between two points <code>(startX, startY)</code> and
54 * @param startY The y coordinate of the starting point.
58 * must start at point <code>(startX, startY)</code>, typically using
61 public abstract Path getPath(float startX, float startY, float endX, float endY);
PatternPathMotion.java 111 float startY = pos[1];
113 if (startX == endX && startY == endY) {
117 mTempMatrix.setTranslate(-startX, -startY);
119 float dy = endY - startY;
130 public Path getPath(float startX, float startY, float endX, float endY) {
132 float dy = endY - startY;
138 mTempMatrix.postTranslate(startX, startY);
ArcMotion.java 180 public Path getPath(float startX, float startY, float endX, float endY) {
198 path.moveTo(startX, startY);
203 float deltaY = endY - startY;
210 float dy = (startY + endY) / 2;
217 boolean isMovingUpwards = startY > endY;
230 ey = startY + eDistY;
241 ey = startY;
269 float control1Y = (startY + ey) / 2;
TranslationAnimationCreator.java 42 * @param startY The start translation y of view
46 * @return An animator that moves from (startX, startY) to (endX, endY) unless there was
50 float startX, float startY, float endX, float endY, TimeInterpolator interpolator) {
56 startY = startPosition[1] - viewPosY + terminalY;
58 // Initial position is at translation startX, startY, so position is offset by that amount
60 int startPosY = viewPosY + Math.round(startY - terminalY);
63 view.setTranslationY(startY);
64 if (startX == endX && startY == endY) {
69 PropertyValuesHolder.ofFloat(View.TRANSLATION_Y, startY, endY));
92 int startX, int startY, float terminalX, float terminalY)
    [all...]
ChangeScroll.java 80 int startY = (Integer) startValues.values.get(PROPNAME_SCROLL_Y);
88 if (startY != endY) {
89 view.setScrollY(startY);
90 scrollYAnimator = ObjectAnimator.ofInt(view, "scrollY", startY, endY);
  /external/droiddriver/src/io/appium/droiddriver/actions/
SwipeAction.java 156 int startY;
163 startY = adjustedbottom;
169 startY = adjustedTop;
175 startY = elementRect.centerY();
181 startY = elementRect.centerY();
190 double yStep = ((double) (endY - startY)) / steps;
193 long downTime = Events.touchDown(injector, startX, startY);
199 Events.touchMove(injector, downTime, startX + (int) (xStep * i), startY + (int) (yStep * i));
  /frameworks/support/v17/leanback/api21/android/support/v17/leanback/transition/
TranslationAnimationCreator.java 37 * @param startY The start translation y of view
41 * @return An animator that moves from (startX, startY) to (endX, endY) unless there was
45 float startX, float startY, float endX, float endY, TimeInterpolator interpolator,
52 startY = startPosition[1] - viewPosY + terminalY;
54 // Initial position is at translation startX, startY, so position is offset by that amount
56 int startPosY = viewPosY + Math.round(startY - terminalY);
59 view.setTranslationY(startY);
60 if (startX == endX && startY == endY) {
64 path.moveTo(startX, startY);
92 int startX, int startY, float terminalX, float terminalY)
    [all...]
  /packages/apps/Camera2/jni/
jpegutil.h 202 // The line is defined by (startX, startY) -> (endX, endY), computed via the
205 int startY;
206 transform_.Map(0, y, &startX, &startY);
212 // Clamp (startX, startY) and (endX, endY) to the valid bounds of the plane.
214 startY = min(startY, plane_.height - 1);
218 startY = max(startY, 0);
226 int dy = sgn(endY - startY);
228 // The index into plane_.data of (startX, startY)
    [all...]
  /frameworks/support/compat/java/android/support/v4/app/
ActivityOptionsCompat.java 82 * defines the coordinate space for startX and startY.
85 * @param startY The y starting location of the activity, relative to source.
92 int startX, int startY, int startWidth, int startHeight) {
95 source, startX, startY, startWidth, startHeight));
106 * defines the coordinate space for <var>startX</var> and <var>startY</var>.
108 * @param startY The y starting location of the activity, relative to <var>source</var>.
115 int startX, int startY, int width, int height) {
118 source, startX, startY, width, height));
134 * defines the coordinate space for startX and startY.
138 * @param startY The y starting location of the bitmap, relative to source
    [all...]
  /frameworks/support/compat/ics/android/support/v4/view/animation/
PathInterpolatorApi14.java 92 final float startY = mY[startIndex];
95 return startY + (fraction * (endY - startY));
  /frameworks/base/libs/hwui/font/
FontCacheHistoryTracker.cpp 27 glyph.startX, glyph.startY, glyph.bitmapW, glyph.bitmapH, glyph.generation);
68 entry.glyph.startY = glyphInfo->mStartY;
81 glyph.startY = y;
91 glyph.startY = 0;
FontCacheHistoryTracker.h 43 uint16_t startY;
  /packages/apps/Messaging/src/com/android/messaging/ui/
MultiAttachmentLayout.java 83 public final int startY;
87 private Tile(final int startX, final int startY, final int endX, final int endY) {
89 this.startY = startY;
100 return MeasureSpec.makeMeasureSpec((endY - startY + 1) * cellHeight - padding * 2,
104 public static Tile large(final int startX, final int startY) {
105 return new Tile(startX, startY, startX + 1, startY + 1);
108 public static Tile wide(final int startX, final int startY) {
109 return new Tile(startX, startY, startX + 1, startY)
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
FreePathInterpolator.java 127 float startY = mY[startIndex];
129 return startY + (fraction * (endY - startY));
  /packages/apps/Dialer/java/com/android/dialer/compat/
PathInterpolatorCompat.java 114 final float startY = mY[startIndex];
117 return startY + (fraction * (endY - startY));
  /packages/apps/PhoneCommon/src/com/android/phone/common/compat/
PathInterpolatorCompat.java 99 final float startY = mY[startIndex];
102 return startY + (fraction * (endY - startY));
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
SimpleMonthView.java 32 int x, int y, int startX, int stopX, int startY, int stopY) {
  /external/replicaisland/tools/
ExtractPoints.js 78 edge.startY = firstPoint.anchor[1];
83 var normalX = -(edge.endY - edge.startY);
106 var height = edge.endY - edge.startY;
147 edge.startY -= tile.yOffset;
172 edge.startY = tileSizeY - edge.startY;
177 Math.floor(edge.startY) + ":" + Math.floor(edge.endX) + "," +
227 lineArray[y] = Array(offsetX + edge.startX, offsetY + edge.startY);
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
Scroller.java 309 * @param startY Starting vertical scroll offset in pixels. Positive numbers
316 public void startScroll(int startX, int startY, int dx, int dy) {
317 startScroll(startX, startY, dx, dy, DEFAULT_DURATION);
325 * @param startY Starting vertical scroll offset in pixels. Positive numbers
333 public void startScroll(int startX, int startY, int dx, int dy, int duration) {
339 mStartY = startY;
341 mFinalY = startY + dy;
352 * @param startY Starting point of the scroll (Y)
366 public void fling(int startX, int startY, int velocityX, int velocityY,
398 mStartY = startY;
    [all...]

Completed in 642 milliseconds

1 2 3 4 5 6 7 8 910