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

1 2 3 4 5 6 7 8 910

  /frameworks/support/compat/java/android/support/v4/widget/
ScrollerCompat.java 150 * @param startX Starting horizontal scroll offset in pixels. Positive
162 public void startScroll(int startX, int startY, int dx, int dy) {
163 mScroller.startScroll(startX, startY, dx, dy);
169 * @param startX Starting horizontal scroll offset in pixels. Positive
182 public void startScroll(int startX, int startY, int dx, int dy, int duration) {
183 mScroller.startScroll(startX, startY, dx, dy, duration);
190 * @param startX Starting point of the scroll (X)
208 public void fling(int startX, int startY, int velocityX, int velocityY,
210 mScroller.fling(startX, startY, velocityX, velocityY, minX, maxX, minY, maxY);
217 * @param startX Starting point of the scroll (X
    [all...]
  /packages/apps/TV/common/src/com/android/tv/common/ui/setup/animation/
TranslationAnimationCreator.java 30 * @param startX The start translation x of view
33 * @return An animator that moves from (startX, startY) to (endX, endY) unless there was a
37 static Animator createAnimation(View view, TransitionValues values, int viewPosX, float startX,
42 startX = startPosition - viewPosX + terminalX;
44 // Initial position is at translation startX, startY, so position is offset by that
46 int startPosX = viewPosX + Math.round(startX - terminalX);
48 view.setTranslationX(startX);
49 if (startX == endX) {
53 path.moveTo(startX, 0);
77 private TransitionPositionListener(View movingView, View viewInHierarchy, int startX,
    [all...]
  /frameworks/base/core/java/android/transition/
PathMotion.java 47 * Provide a Path to interpolate between two points <code>(startX, startY)</code> and
50 * @param startX The x 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 110 float startX = pos[0];
113 if (startX == endX && startY == endY) {
117 mTempMatrix.setTranslate(-startX, -startY);
118 float dx = endX - startX;
130 public Path getPath(float startX, float startY, float endX, float endY) {
131 double dx = endX - startX;
138 mTempMatrix.postTranslate(startX, startY);
TranslationAnimationCreator.java 43 * @param startX The start translation x 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,
58 startX = startPosition[0] - viewPosX + terminalX;
61 // Initial position is at translation startX, startY, so position is offset by that amount
62 int startPosX = viewPosX + Math.round(startX - terminalX);
65 view.setTranslationX(startX);
67 if (startX == endX && startY == endY) {
71 path.moveTo(startX, startY);
99 int startX, int startY, float terminalX, float terminalY)
    [all...]
ChangeScroll.java 73 int startX = (Integer) startValues.values.get(PROPNAME_SCROLL_X);
79 if (startX != endX) {
80 view.setScrollX(startX);
81 scrollXAnimator = ObjectAnimator.ofInt(view, "scrollX", startX, endX);
ArcMotion.java 180 public Path getPath(float startX, float startY, float endX, float endY) {
198 path.moveTo(startX, startY);
202 float deltaX = endX - startX;
209 float dx = (startX + endX) / 2;
231 ex = startX;
240 ex = startX + eDistX;
268 float control1X = (startX + ex) / 2;
  /frameworks/support/transition/src/android/support/transition/
PathMotion.java 50 * Provide a Path to interpolate between two points <code>(startX, startY)</code> and
53 * @param startX The x 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 110 float startX = pos[0];
113 if (startX == endX && startY == endY) {
117 mTempMatrix.setTranslate(-startX, -startY);
118 float dx = endX - startX;
130 public Path getPath(float startX, float startY, float endX, float endY) {
131 float dx = endX - startX;
138 mTempMatrix.postTranslate(startX, startY);
TranslationAnimationCreator.java 41 * @param startX The start translation x 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) {
55 startX = startPosition[0] - viewPosX + terminalX;
58 // Initial position is at translation startX, startY, so position is offset by that amount
59 int startPosX = viewPosX + Math.round(startX - terminalX);
62 view.setTranslationX(startX);
64 if (startX == endX && startY == endY) {
68 PropertyValuesHolder.ofFloat(View.TRANSLATION_X, startX, endX),
92 int startX, int startY, float terminalX, float terminalY)
    [all...]
ChangeScroll.java 78 int startX = (Integer) startValues.values.get(PROPNAME_SCROLL_X);
84 if (startX != endX) {
85 view.setScrollX(startX);
86 scrollXAnimator = ObjectAnimator.ofInt(view, "scrollX", startX, endX);
ArcMotion.java 180 public Path getPath(float startX, float startY, float endX, float endY) {
198 path.moveTo(startX, startY);
202 float deltaX = endX - startX;
209 float dx = (startX + endX) / 2;
231 ex = startX;
240 ex = startX + eDistX;
268 float control1X = (startX + ex) / 2;
  /external/droiddriver/src/io/appium/droiddriver/actions/
SwipeAction.java 155 int startX;
162 startX = elementRect.centerX();
168 startX = elementRect.centerX();
174 startX = adjustedLeft;
180 startX = adjustedRight;
189 double xStep = ((double) (endX - startX)) / 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 36 * @param startX The start translation x 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,
51 startX = startPosition[0] - viewPosX + terminalX;
54 // Initial position is at translation startX, startY, so position is offset by that amount
55 int startPosX = viewPosX + Math.round(startX - terminalX);
58 view.setTranslationX(startX);
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
204 int startX;
206 transform_.Map(0, y, &startX, &startY);
212 // Clamp (startX, startY) and (endX, endY) to the valid bounds of the plane.
213 startX = min(startX, plane_.width - 1);
217 startX = max(startX, 0);
225 int dx = sgn(endX - startX);
228 // The index into plane_.data of (startX, startY
    [all...]
  /external/skia/src/codec/
SkMaskSwizzler.cpp 14 uint32_t startX, uint32_t sampleX) {
17 uint16_t* srcPtr = ((uint16_t*) srcRow) + startX;
31 uint32_t startX, uint32_t sampleX) {
34 uint16_t* srcPtr = ((uint16_t*) srcRow) + startX;
48 uint32_t startX, uint32_t sampleX) {
51 uint16_t* srcPtr = ((uint16_t*) srcRow) + startX;
66 uint32_t startX, uint32_t sampleX) {
69 uint16_t* srcPtr = ((uint16_t*) srcRow) + startX;
84 uint32_t startX, uint32_t sampleX) {
87 uint16_t* srcPtr = ((uint16_t*) srcRow) + startX;
    [all...]
SkMaskSwizzler.h 61 SkMasks* masks, uint32_t startX, uint32_t sampleX);
  /external/mesa3d/src/mesa/swrast/
s_aatritemp.h 190 GLint ix, startX = (GLint) (x - xAdj);
199 while (startX < SWRAST_MAX_WIDTH) {
200 coverage = compute_coveragef(pMin, pMid, pMax, startX, iy);
203 startX++;
207 ix = startX;
238 if (ix > startX) {
239 span.x = startX;
241 span.end = (GLuint) ix - (GLuint) startX;
259 GLint ix, left, startX = (GLint) (x + xAdj);
268 if (startX >= ctx->DrawBuffer->_Xmax)
    [all...]
  /frameworks/support/compat/java/android/support/v4/app/
ActivityOptionsCompat.java 82 * defines the coordinate space for startX and startY.
83 * @param startX The x starting location of the new activity, relative to
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>.
107 * @param startX The x starting location of the new 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.
137 * @param startX The x starting location of the bitmap, relative to source
    [all...]
  /frameworks/base/libs/hwui/font/
FontCacheHistoryTracker.cpp 27 glyph.startX, glyph.startY, glyph.bitmapW, glyph.bitmapH, glyph.generation);
67 entry.glyph.startX = glyphInfo->mStartX;
80 glyph.startX = x;
90 glyph.startX = 0;
FontCacheHistoryTracker.h 42 uint16_t startX;
  /packages/apps/Messaging/src/com/android/messaging/ui/
MultiAttachmentLayout.java 82 public final int startX;
87 private Tile(final int startX, final int startY, final int endX, final int endY) {
88 this.startX = startX;
95 return MeasureSpec.makeMeasureSpec((endX - startX + 1) * cellWidth - 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 166 float startX = mX[startIndex];
168 return startX + (fraction * (endX - startX));
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
SimpleMonthView.java 32 int x, int y, int startX, int stopX, int startY, int stopY) {
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
Scroller.java 307 * @param startX Starting horizontal scroll offset in pixels. Positive
316 public void startScroll(int startX, int startY, int dx, int dy) {
317 startScroll(startX, startY, dx, dy, DEFAULT_DURATION);
323 * @param startX Starting horizontal scroll offset in pixels. Positive
333 public void startScroll(int startX, int startY, int dx, int dy, int duration) {
338 mStartX = startX;
340 mFinalX = startX + dx;
351 * @param startX Starting point of the scroll (X)
366 public void fling(int startX, int startY, int velocityX, int velocityY,
397 mStartX = startX;
    [all...]

Completed in 804 milliseconds

1 2 3 4 5 6 7 8 910