Searched defs:endX (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/view/
H A DVelocityTest.java234 private void drag(VelocityTracker vt, int startX, int endX, int startY, int endY, int steps, argument
236 drag(vt, startX, endX, startY, endY, steps, startime, duration, new LinearInterpolator());
243 private void drag(VelocityTracker vt, int startX, int endX, int startY, int endY, int steps, argument
247 int distX = endX - startX;
256 addMotionEvent(vt, endX, endY, startime + duration, MotionEvent.ACTION_UP);
/frameworks/base/core/java/com/android/internal/widget/
H A DRotarySelector.java606 private void startAnimation(int startX, int endX, int duration) { argument
611 mAnimatingDeltaXEnd = endX;
617 private void startAnimationWithVelocity(int startX, int endX, int pixelsPerSecond) { argument
620 mAnimationDuration = 1000 * (endX - startX) / pixelsPerSecond;
622 mAnimatingDeltaXEnd = endX;
/frameworks/base/libs/rs/
H A DrsFont.cpp115 uint32_t endX = glyph->mBitmapMinX + glyph->mBitmapWidth; local
124 for (cacheX = glyph->mBitmapMinX, bX = nPenX; cacheX < endX; cacheX++, bX++) {
263 uint32_t endX = startX + bitmap->width; local
276 glyph->mBitmapMaxU = (float)endX / (float)cacheWidth;
450 uint32_t endX = startX + bitmap->width; local
459 for (cacheX = startX, bX = 0; cacheX < endX; cacheX ++, bX ++) {
/frameworks/base/libs/hwui/
H A DFontRenderer.cpp118 uint32_t endX = glyph->mStartX + glyph->mBitmapWidth; local
126 for (cacheX = glyph->mStartX, bX = nPenX; cacheX < endX; cacheX++, bX++) {
254 uint32_t endX = startX + skiaGlyph.fWidth; local
267 glyph->mBitmapMaxU = (float) endX / (float) cacheWidth;
445 uint32_t endX = startX + glyph.fWidth; local
455 for (cacheX = startX, bX = 0; cacheX < endX; cacheX++, bX++) {

Completed in 74 milliseconds