HomeSort by relevance Sort by last modified time
    Searched defs:startY (Results 26 - 50 of 213) sorted by null

12 3 4 5 6 7 8 9

  /frameworks/base/core/java/android/animation/
PathKeyframes.java 110 float startY = mKeyframeData[startBase + Y_OFFSET];
114 float y = interpolate(intervalFraction, startY, endY);
  /frameworks/base/core/java/android/transition/
Explode.java 90 float startY = endY + mTempLoc[1];
93 startX, startY, endX, endY, sDecelerate, this);
106 float startY = view.getTranslationY();
108 float endY = startY;
122 viewPosX, viewPosY, startX, startY, endX, endY, sAccelerate, this);
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);
Slide.java 243 float startY = mSlideCalculator.getGoneY(sceneRoot, view, mSlideFraction);
246 startX, startY, endX, endY, sDecelerate, this);
257 float startY = view.getTranslationY();
262 startX, startY, endX, endY, sAccelerate, this);
  /frameworks/base/core/java/android/view/animation/
PathInterpolator.java 232 float startY = mY[startIndex];
234 return startY + (fraction * (endY - startY));
  /frameworks/base/tests/JankBench/app/src/main/java/com/android/benchmark/ui/automation/
Interaction.java 56 public static Interaction newFling(float startX, float startY,
59 new float[]{startY, endY}, duration);
62 public static Interaction newFlingDown(float startX, float startY) {
65 new float[]{startY, startY + DEFAULT_FLING_SIZE_PX}, DEFAULT_FLING_DURATION_MS);
68 public static Interaction newFlingUp(float startX, float startY) {
70 new float[]{startX, startX}, new float[]{startY, startY - DEFAULT_FLING_SIZE_PX},
74 public static Interaction newTap(float startX, float startY) {
76 new float[]{startX, startX}, new float[]{startY, startY}
    [all...]
  /frameworks/support/graphics/drawable/animated/src/main/java/androidx/vectordrawable/graphics/drawable/
PathInterpolatorCompat.java 221 float startY = mY[startIndex];
223 return startY + (fraction * (endY - startY));
  /frameworks/support/leanback/api21/androidx/leanback/transition/
FadeAndShortSlide.java 239 float startY = mSlideCalculator.getGoneY(this, sceneRoot, view, position);
241 left, top, startX, startY, endX, endY, sDecelerate, this);
269 float startY = view.getTranslationY();
272 startValues, left, top, startX, startY, endX, endY, sDecelerate /* sAccelerate */,
  /frameworks/support/transition/src/main/java/androidx/transition/
Explode.java 92 float startY = endY + mTempLoc[1];
95 startX, startY, endX, endY, sDecelerate);
108 float startY = view.getTranslationY();
110 float endY = startY;
124 viewPosX, viewPosY, startX, startY, endX, endY, sAccelerate);
PatternPathMotion.java 112 float startY = pos[1];
114 if (startX == endX && startY == endY) {
118 mTempMatrix.setTranslate(-startX, -startY);
120 float dy = endY - startY;
131 public Path getPath(float startX, float startY, float endX, float endY) {
133 float dy = endY - startY;
139 mTempMatrix.postTranslate(startX, startY);
Slide.java 254 float startY = mSlideCalculator.getGoneY(sceneRoot, view);
257 startX, startY, endX, endY, sDecelerate);
268 float startY = view.getTranslationY();
273 startX, startY, endX, endY, sAccelerate);
  /hardware/intel/img/psb_video/src/
tng_vld_dec.c 83 uint32_t startX = 0, startY = 0, luma_addr_offset = 0, chroma_addr_offset = 0;
103 startY = ((uint32_t)obj_context->current_render_target->offset_y_s + 0x1) & ~0x1;
104 luma_addr_offset = (((uint32_t)(startX + out_loop_surface->stride * startY)) + 0x3f ) & ~0x3f;
105 chroma_addr_offset = (((uint32_t)(startX + out_loop_surface->stride * startY / 2)) + 0x3f ) & ~0x3f;
  /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...]
  /packages/apps/Settings/src/com/android/settings/widget/
DonutView.java 176 final float startY = centerY + totalHeight / 2;
191 canvas.drawText(mFullString, centerX, startY - mTextPaint.descent(), mTextPaint);
  /cts/tests/tests/animation/src/android/animation/cts/
AnimatorTest.java 135 float startY = mActivity.mStartY;
137 Animator animator = ObjectAnimator.ofFloat(object, property, startY, endY);
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
BouncingBalls.java 87 float startY = newBall.getY();
92 ValueAnimator bounceAnim = ObjectAnimator.ofFloat(newBall, "y", startY, endY);
120 startY);
  /development/samples/CubeLiveWallpaper/src/com/example/android/livecubes/cube1/
CubeWallpaper1.java 224 float startY = newy1 / (4 - newz1 / 400);
228 c.drawLine(startX, startY, stopX, stopY, mPaint);
  /external/opencv/
cvjni.cpp 515 int startY = MAX(face->y - PAD_FACE_AREA, 0);
517 int h = m_smallImage->height - startY - face->height - PAD_FACE_AREA_2;
519 m_faceCropArea = cvRect(startX, startY,
  /external/skqp/src/core/
SkMaskFilter.cpp 148 int startY = SkMax32(0, r.top() - outerR.top());
149 int stopY = startY + r.height();
151 for (int y = startY; y < stopY; ++y) {
161 int startY = outerR.bottom() - r.bottom();
162 int stopY = startY + r.height();
164 for (int y = startY; y < stopY; ++y) {
  /frameworks/base/core/java/com/android/internal/transition/
EpicenterTranslateClipReveal.java 132 final float startY = startBounds.centerY() - endBounds.centerY();
137 view.setTranslationY(startY);
152 final State startStateY = new State(startClip.top, startClip.bottom, startY);
173 final float startY = (float) endValues.values.get(PROPNAME_TRANSLATE_Y);
184 final State startStateY = new State(startClip.top, startClip.bottom, startY);
210 private static Animator createRectAnimator(final View view, State startX, State startY,
228 final ObjectAnimator animY = ObjectAnimator.ofObject(view, propY, evaluator, startY, endY);
  /frameworks/base/libs/hwui/font/
Font.cpp 217 uint32_t startY = glyph->mStartY * srcStride;
218 uint32_t endY = startY + (glyph->mBitmapHeight * srcStride);
222 for (uint32_t cacheY = startY, bitmapY = dstY * bitmapWidth; cacheY < endY;
427 uint32_t startY = 0;
433 mState->cacheBitmap(skiaGlyph, glyph, &startX, &startY, precaching);
440 uint32_t endY = startY + skiaGlyph.fHeight;
443 glyph->mStartY = startY;
453 glyph->mBitmapMinV = startY / (float)cacheHeight;
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
CtsTouchUtils.java 388 final int startY = isDownwardsFlingGesture ? viewOnScreenXY[1] + viewHeight / 4
397 emulateDragGesture(instrumentation, x, startY, 0, amountY, durationMs, durationMs / 16,
  /cts/tests/tests/media/src/android/media/cts/
PresentationSyncTest.java 400 int startX, startY;
402 startY = (num / 16) * (mHeight / 4);
414 GLES20.glScissor(startX, startY, mWidth / 16, mHeight / 4);
  /external/replicaisland/src/com/replica/replicaisland/
TiledVertexGrid.java 193 final int startY = bottomTile;
195 final int endY = startY + verticalSlop + vertTileCount;
209 for (int tileY = startY; tileY < endY && tileY < mTilesPerColumn; tileY++) {
  /external/skia/src/core/
SkMaskFilter.cpp 149 int startY = SkMax32(0, r.top() - outerR.top());
150 int stopY = startY + r.height();
152 for (int y = startY; y < stopY; ++y) {
162 int startY = outerR.bottom() - r.bottom();
163 int stopY = startY + r.height();
165 for (int y = startY; y < stopY; ++y) {

Completed in 348 milliseconds

12 3 4 5 6 7 8 9