/frameworks/base/core/tests/coretests/src/android/view/ |
D | VelocityTest.java | 234 private void drag(VelocityTracker vt, int startX, int endX, int startY, int endY, int steps, in drag() argument 236 drag(vt, startX, endX, startY, endY, steps, startime, duration, new LinearInterpolator()); in drag() 243 private void drag(VelocityTracker vt, int startX, int endX, int startY, int endY, int steps, in drag() argument 247 int distX = endX - startX; in drag() 256 addMotionEvent(vt, endX, endY, startime + duration, MotionEvent.ACTION_UP); in drag()
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | RotarySelector.java | 608 private void startAnimation(int startX, int endX, int duration) { in startAnimation() argument 613 mAnimatingDeltaXEnd = endX; in startAnimation() 619 private void startAnimationWithVelocity(int startX, int endX, int pixelsPerSecond) { in startAnimationWithVelocity() argument 622 mAnimationDuration = 1000 * (endX - startX) / pixelsPerSecond; in startAnimationWithVelocity() 624 mAnimatingDeltaXEnd = endX; in startAnimationWithVelocity()
|
/frameworks/base/libs/hwui/font/ |
D | Font.cpp | 108 uint32_t endX = glyph->mStartX + glyph->mBitmapWidth; in drawCachedGlyphBitmap() local 117 for (cacheX = glyph->mStartX, bX = nPenX; cacheX < endX; cacheX++, bX++) { in drawCachedGlyphBitmap() 389 uint32_t endX = startX + skiaGlyph.fWidth; in updateGlyphCache() local 402 glyph->mBitmapMaxU = endX / (float) cacheWidth; in updateGlyphCache()
|
/frameworks/rs/ |
D | rsFont.cpp | 116 uint32_t endX = glyph->mBitmapMinX + glyph->mBitmapWidth; in drawCachedGlyph() local 125 for (cacheX = glyph->mBitmapMinX, bX = nPenX; cacheX < endX; cacheX++, bX++) { in drawCachedGlyph() 264 uint32_t endX = startX + bitmap->width; in updateGlyphCache() local 277 glyph->mBitmapMaxU = (float)endX / (float)cacheWidth; in updateGlyphCache() 451 uint32_t endX = startX + bitmap->width; in cacheBitmap() local 460 for (cacheX = startX, bX = 0; cacheX < endX; cacheX ++, bX ++) { in cacheBitmap()
|
/frameworks/base/libs/hwui/ |
D | FontRenderer.cpp | 206 uint32_t endX = startX + glyph.fWidth; in cacheBitmap() local 223 for (cacheX = startX - TEXTURE_BORDER_SIZE; cacheX < endX + TEXTURE_BORDER_SIZE; cacheX++) { in cacheBitmap() 231 cacheBuffer[cacheY * cacheWidth + endX + TEXTURE_BORDER_SIZE - 1] = 0; in cacheBitmap() 235 for (cacheX = startX, bX = 0; cacheX < endX; cacheX++, bX++) { in cacheBitmap() 242 for (cacheX = startX, bX = 0; cacheX < endX; cacheX++, bX++) { in cacheBitmap()
|
/frameworks/testing/uiautomator/library/src/com/android/uiautomator/core/ |
D | UiDevice.java | 397 public boolean swipe(int startX, int startY, int endX, int endY, int steps) { in swipe() argument 398 Tracer.trace(startX, startY, endX, endY, steps); in swipe() 400 .scrollSwipe(startX, startY, endX, endY, steps); in swipe()
|
/frameworks/base/core/java/android/webkit/ |
D | WebViewCore.java | 3118 int startX, int startY, int endX, int endY); in nativeDeleteText() argument 3135 int startX, int startY, int endX, int endY); in nativeGetText() argument
|
/frameworks/base/docs/html/tools/help/uiautomator/ |
D | UiDevice.jd | 793 …pe(int, int, int, int, int)">swipe</a></span>(int startX, int startY, int endX, int endY, int step… 2719 <span class="normal">(int startX, int startY, int endX, int endY, int steps)</span>
|