/packages/apps/Launcher3/src/com/android/launcher3/ |
LauncherScroller.java | 346 * @param startY Starting vertical scroll offset in pixels. Positive numbers 353 public void startScroll(int startX, int startY, int dx, int dy) { 354 startScroll(startX, startY, dx, dy, DEFAULT_DURATION); 363 * @param startY Starting vertical scroll offset in pixels. Positive numbers 371 public void startScroll(int startX, int startY, int dx, int dy, int duration) { 377 mStartY = startY; 379 mFinalY = startY + dy; 390 * @param startY Starting point of the scroll (Y) 404 public void fling(int startX, int startY, int velocityX, int velocityY, 435 mStartY = startY; [all...] |
/cts/tests/uiautomator/test-apps/CtsUiAutomatorApp/src/com/android/cts/uiautomator/ |
Test5DetailFragment.java | 38 int startY; 102 mPointerEvent.startX, mPointerEvent.startY, mPointerEvent.endX, 118 mPointerEvent.startX = mPointerEvent.startY = 134 mPointerEvent.startY = (int)(event.getY() + offsetInScreen[1]);
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/ |
FETurbulence.cpp | 330 inline void FETurbulence::fillRegion(Uint8ClampedArray* pixelArray, PaintingData& paintingData, int startY, int endY, float baseFrequencyX, float baseFrequencyY) 333 IntPoint point(0, filterRegion.y() + startY); 334 int indexOfPixelChannel = startY * (filterRegion.width() << 2); 338 for (int y = startY; y < endY; ++y) { 351 parameters->filter->fillRegion(parameters->pixelArray, *parameters->paintingData, parameters->startY, parameters->endY, parameters->baseFrequencyX, parameters->baseFrequencyY); 383 int startY = 0; 389 params.startY = startY; 390 startY += i < jobsWithExtra ? stepY + 1 : stepY; 391 params.endY = startY; [all...] |
/frameworks/base/core/java/android/widget/ |
OverScroller.java | 350 * @param startY Starting vertical scroll offset in pixels. Positive numbers 357 public void startScroll(int startX, int startY, int dx, int dy) { 358 startScroll(startX, startY, dx, dy, DEFAULT_DURATION); 366 * @param startY Starting vertical scroll offset in pixels. Positive numbers 374 public void startScroll(int startX, int startY, int dx, int dy, int duration) { 377 mScrollerY.startScroll(startY, dy, duration); 384 * @param startY Starting Y coordinate 389 * @return true if a springback was initiated, false if startX and startY were 392 public boolean springBack(int startX, int startY, int minX, int maxX, int minY, int maxY) { 397 final boolean spingbackY = mScrollerY.springback(startY, minY, maxY) [all...] |
Scroller.java | 373 * @param startY Starting vertical scroll offset in pixels. Positive numbers 380 public void startScroll(int startX, int startY, int dx, int dy) { 381 startScroll(startX, startY, dx, dy, DEFAULT_DURATION); 390 * @param startY Starting vertical scroll offset in pixels. Positive numbers 398 public void startScroll(int startX, int startY, int dx, int dy, int duration) { 404 mStartY = startY; 406 mFinalY = startY + dy; 417 * @param startY Starting point of the scroll (Y) 431 public void fling(int startX, int startY, int velocityX, int velocityY, 462 mStartY = startY; [all...] |
/packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/ |
OverScrollerSGV.java | 354 * @param startY Starting vertical scroll offset in pixels. Positive numbers 361 public void startScroll(int startX, int startY, int dx, int dy) { 362 startScroll(startX, startY, dx, dy, DEFAULT_DURATION); 370 * @param startY Starting vertical scroll offset in pixels. Positive numbers 378 public void startScroll(int startX, int startY, int dx, int dy, int duration) { 381 mScrollerY.startScroll(startY, dy, duration); 388 * @param startY Starting Y coordinate 393 * @return true if a springback was initiated, false if startX and startY were 396 public boolean springBack(int startX, int startY, int minX, int maxX, int minY, int maxY) { 401 final boolean spingbackY = mScrollerY.springback(startY, minY, maxY) [all...] |
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/ |
OverScroller.java | 352 * @param startY Starting vertical scroll offset in pixels. Positive numbers 359 public void startScroll(int startX, int startY, int dx, int dy) { 360 startScroll(startX, startY, dx, dy, DEFAULT_DURATION); 368 * @param startY Starting vertical scroll offset in pixels. Positive numbers 376 public void startScroll(int startX, int startY, int dx, int dy, int duration) { 379 mScrollerY.startScroll(startY, dy, duration); 386 * @param startY Starting Y coordinate 391 * @return true if a springback was initiated, false if startX and startY were 394 public boolean springBack(int startX, int startY, int minX, int maxX, int minY, int maxY) { 399 final boolean spingbackY = mScrollerY.springback(startY, minY, maxY) [all...] |
/external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/ |
RenderDeviceJme.java | 272 float startY = srcY / imageHeight;
274 float endY = startY + (srcH / imageHeight);
276 startY = 1f - startY;
280 texCoords.put(startX).put(startY);
281 texCoords.put(endX).put(startY);
|
/frameworks/base/core/tests/coretests/src/android/view/ |
VelocityTest.java | 234 private void drag(VelocityTracker vt, int startX, int endX, int startY, int endY, int steps, 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, 245 addMotionEvent(vt, startX, startY, startime, MotionEvent.ACTION_DOWN); 248 int distY = endY - startY; 252 int y = (int) (startY + distY * ii);
|
/frameworks/base/libs/hwui/ |
FontRenderer.cpp | 208 const SkGlyph& glyph, uint32_t* startX, uint32_t* startY) { 210 if (cacheTextures[i]->fitBitmap(glyph, startX, startY)) { 260 uint32_t startY = 0; 262 CacheTexture* cacheTexture = cacheBitmapInTexture(*cacheTextures, glyph, &startX, &startY); 269 cacheTexture = cacheBitmapInTexture(*cacheTextures, glyph, &startX, &startY); 281 *retOriginY = startY; 284 uint32_t endY = startY + glyph.fHeight; 305 uint32_t row = (startY - TEXTURE_BORDER_SIZE) * cacheWidth + startX 311 for (cacheY = startY, bY = 0; cacheY < endY; cacheY++, bY += srcStride) { 321 for (cacheY = startY, bY = 0; cacheY < endY; cacheY++, bY += srcStride) [all...] |
/cts/tests/tests/animation/src/android/animation/cts/ |
AnimatorSetTest.java | 144 float startY = mActivity.mStartY; 146 ObjectAnimator yAnimator = ObjectAnimator.ofFloat(object, property, startY, endY);
|
ValueAnimatorTest.java | 118 float startY = mActivity.mStartY; 120 ObjectAnimator objAnimator = ObjectAnimator.ofFloat(object, property, startY, endY); 218 float startY = mActivity.mStartY; 220 ValueAnimator objAnimator = ObjectAnimator.ofFloat(object, property, startY, endY);
|
AnimationActivity.java | 48 private static final String STARTY = "starty"; 71 mStartY = extras.getFloat(STARTY);
|
/frameworks/base/libs/hwui/font/ |
Font.cpp | 218 uint32_t startY = glyph->mStartY * cacheWidth; 219 uint32_t endY = startY + (glyph->mBitmapHeight * cacheWidth); 224 for (uint32_t cacheY = startY, bitmapY = dstY * bitmapWidth; cacheY < endY; 429 uint32_t startY = 0; 435 mState->cacheBitmap(skiaGlyph, glyph, &startX, &startY, precaching); 442 uint32_t endY = startY + skiaGlyph.fHeight; 445 glyph->mStartY = startY; 455 glyph->mBitmapMinV = startY / (float) cacheHeight;
|
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
FlingScroller.java | 76 public void fling(int startX, int startY, int velocityX, int velocityY, 79 mStartY = startY;
|
/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);
|
/external/jmonkeyengine/engine/src/core/com/jme3/effect/ |
ParticlePointMesh.java | 149 float startY = ((float) imgY) / imagesY; 151 float endY = startY + (1f / imagesY); 153 texcoords.put(startX).put(startY).put(endX).put(endY);
|
/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++) {
|
/frameworks/rs/ |
rsFont.cpp | 256 uint32_t startY = 0; 260 glyph->mIsValid = state->cacheBitmap(bitmap, &startX, &startY); 267 uint32_t endY = startY + bitmap->rows; 270 glyph->mBitmapMinY = startY; 278 glyph->mBitmapMinV = (float)startY / (float)cacheHeight; 425 uint32_t startY = 0; 429 bitmapFit = mCacheLines[i]->fitBitmap(bitmap, &startX, &startY); 441 bitmapFit = mCacheLines[i]->fitBitmap(bitmap, &startX, &startY); 455 *retOriginY = startY; 458 uint32_t endY = startY + bitmap->rows [all...] |
/packages/apps/VideoEditor/src/com/android/videoeditor/util/ |
ImageUtils.java | 384 * @param startY The start vertical position 389 String title, String subTitle, int startX, int startY, int width, int height) { 394 Color.WHITE, title, subTitle, startX, startY, width, height); 401 Color.BLACK, title, subTitle, startX, startY, width, height); 423 int textColor, String title, String subTitle, int startX, int startY, int width, 426 final int startHeight = startY + INSET; 429 height - INSET + startY);
|
/external/chromium_org/third_party/skia/src/core/ |
SkMaskFilter.cpp | 133 int startY = SkMax32(0, r.top() - outerR.top()); 134 int stopY = startY + r.height(); 136 for (int y = startY; y < stopY; ++y) { 146 int startY = outerR.bottom() - r.bottom(); 147 int stopY = startY + r.height(); 149 for (int y = startY; y < stopY; ++y) {
|
/external/skia/src/core/ |
SkMaskFilter.cpp | 133 int startY = SkMax32(0, r.top() - outerR.top()); 134 int stopY = startY + r.height(); 136 for (int y = startY; y < stopY; ++y) { 146 int startY = outerR.bottom() - r.bottom(); 147 int stopY = startY + r.height(); 149 for (int y = startY; y < stopY; ++y) {
|
/frameworks/opt/photoviewer/src/com/android/ex/photo/ |
Intents.java | 107 * upon enter and exit. StartX and StartY represent the screen coordinates 186 public PhotoViewIntentBuilder setScaleAnimation(int startX, int startY, 190 mStartY = startY;
|
/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
TrimTimeBar.java | 149 private boolean inScrubber(float x, float y, int startX, int startY, Bitmap scrubber) { 151 int scrubberBottom = startY + scrubber.getHeight(); 152 return startX < x && x < scrubberRight && startY < y && y < scrubberBottom;
|
/development/samples/devbytes/animation/ListViewItemAnimations/src/com/example/android/listviewitemanimations/ |
ListViewItemAnimations.java | 327 private void moveView(View view, float startX, float endX, float startY, float endY, 339 if (startY != endY) { 340 ObjectAnimator anim = ObjectAnimator.ofFloat(view, View.TRANSLATION_Y, startY, endY); 346 TranslateAnimation translator = new TranslateAnimation(startX, endX, startY, endY);
|