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

1 2 3 4

  /frameworks/support/v4/java/android/support/v4/widget/
ScrollerCompat.java 121 * @param startY Starting vertical scroll offset in pixels. Positive numbers
128 public void startScroll(int startX, int startY, int dx, int dy) {
129 mScroller.startScroll(startX, startY, dx, dy);
137 * @param startY Starting vertical scroll offset in pixels. Positive numbers
145 public void startScroll(int startX, int startY, int dx, int dy, int duration) {
146 mScroller.startScroll(startX, startY, dx, dy, duration);
154 * @param startY Starting point of the scroll (Y)
168 public void fling(int startX, int startY, int velocityX, int velocityY,
170 mScroller.fling(startX, startY, velocityX, velocityY, minX, maxX, minY, maxY);
  /cts/tests/tests/animation/src/android/animation/cts/
ObjectAnimatorTest.java 55 float startY = mActivity.mStartY;
57 ObjectAnimator objAnimator = ObjectAnimator.ofFloat(object, property, startY, endY);
68 assertTrue( y >= startY);
75 float startY = mActivity.mStartY;
77 ObjectAnimator animator = ObjectAnimator.ofFloat(object, property, startY, endY);
165 float startY = mActivity.mStartY;
167 float[] values = {startY, endY};
179 assertTrue( y >= startY);
199 float startY = mActivity.mStartY;
202 ObjectAnimator objAnimator = ObjectAnimator.ofFloat(object, property, startY, endY)
    [all...]
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);
  /frameworks/base/core/java/android/app/
ActivityOptions.java 199 * defines the coordinate space for <var>startX</var> and <var>startY</var>.
201 * @param startY The y starting location of the activity, relative to <var>source</var>.
208 int startX, int startY, int startWidth, int startHeight) {
215 opts.mStartY = pts[1] + startY;
232 * defines the coordinate space for <var>startX</var> and <var>startY</var>.
236 * @param startY The y starting location of the bitmap, relative to <var>source</var>.
241 Bitmap thumbnail, int startX, int startY) {
242 return makeThumbnailScaleUpAnimation(source, thumbnail, startX, startY, null);
251 * defines the coordinate space for <var>startX</var> and <var>startY</var>.
255 * @param startY The y starting location of the bitmap, relative to <var>source</var>
    [all...]
  /external/replicaisland/tools/
ExtractPoints.js 78 edge.startY = firstPoint.anchor[1];
83 var normalX = -(edge.endY - edge.startY);
106 var height = edge.endY - edge.startY;
147 edge.startY -= tile.yOffset;
172 edge.startY = tileSizeY - edge.startY;
177 Math.floor(edge.startY) + ":" + Math.floor(edge.endX) + "," +
227 lineArray[y] = Array(offsetX + edge.startX, offsetY + edge.startY);
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
Scroller.java 310 * @param startY Starting vertical scroll offset in pixels. Positive numbers
317 public void startScroll(int startX, int startY, int dx, int dy) {
318 startScroll(startX, startY, dx, dy, DEFAULT_DURATION);
326 * @param startY Starting vertical scroll offset in pixels. Positive numbers
334 public void startScroll(int startX, int startY, int dx, int dy, int duration) {
340 mStartY = startY;
342 mFinalY = startY + dy;
353 * @param startY Starting point of the scroll (Y)
367 public void fling(int startX, int startY, int velocityX, int velocityY,
399 mStartY = startY;
    [all...]
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/webkit/Source/WebCore/platform/graphics/filters/
FEMorphology.cpp 135 int startY = max(0, y - radiusY);
141 unsigned char columnExtrema = srcPixelArray->get(startY * effectWidth + 4 * j + channel);
142 for (int i = startY; i <= endY; ++i) {
154 unsigned char columnExtrema = srcPixelArray->get(startY * effectWidth + endX * 4 + channel);
155 for (int i = startY; i <= endY; ++i) {
  /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 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);
362 * @param startY Starting vertical scroll offset in pixels. Positive numbers
370 public void startScroll(int startX, int startY, int dx, int dy, int duration) {
376 mStartY = startY;
378 mFinalY = startY + dy;
389 * @param startY Starting point of the scroll (Y)
403 public void fling(int startX, int startY, int velocityX, int velocityY,
434 mStartY = startY;
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
BaseLayerAndroid.cpp 203 float startY = startPoint.y();
211 backgroundRect.fTop = origin.y() - startY;
231 ALOGV("repeatedQuadData: startX %f, startY %f , getWidth() %f, getHeight() %f,"
234 startX , startY , getWidth(), getHeight(), nbX , nbY,
238 // Adding startX and startY into the transform can handle the fixed right /
241 matrix.translate(repeatX ? -startX : 0, repeatY ? -startY : 0);
261 float startY = startPoint.y();
263 float dy = (i * getHeight()) - 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);
  /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;
  /external/webkit/Source/WebCore/platform/image-decoders/
ImageDecoder.h 95 // Copies the pixel data at [(startX, startY), (endX, startY)) to the
98 void copyRowNTimes(int startX, int endX, int startY, int endY)
102 ASSERT(startY < height());
105 const PixelData* const startAddr = getAddr(startX, startY);
106 for (int destY = startY + 1; destY < endY; ++destY)
  /frameworks/base/core/java/com/android/internal/widget/
LockPatternView.java 704 float startY = getCenterYForRow(lastCell.row);
721 if (startY < y) {
722 top = startY;
726 bottom = startY;
741 if (startY < oldY) {
742 top = startY;
746 bottom = startY;
756 startY = getCenterYForRow(hitCell.row);
772 if (startY < oldY) {
773 top = startY;
    [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);
  /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/mesa3d/src/pixelflinger2/
raster.cpp 110 for (unsigned y = args->startY; y <= args->endY; y += 2) {
214 const unsigned int startY = tlv.position.y;
217 if (endY < startY)
220 const VectorComp_t yDistInv = VectorComp_t_CTR(1.0f / (endY - startY));
260 args.startY = startY + 1;
262 if (args.startY <= args.endY) {
297 for (unsigned y = startY; y <= endY; y += 1 + USE_DUAL_THREAD) {
  /external/skia/gm/
bitmapscroll.cpp 98 void drawLabel(SkCanvas* canvas, const char *text, int startX, int startY,
103 path.moveTo(SkIntToScalar(startX), SkIntToScalar(startY));
  /frameworks/base/core/java/android/view/
IWindowManager.aidl 87 void overridePendingAppTransitionScaleUp(int startX, int startY, int startWidth,
89 void overridePendingAppTransitionThumb(in Bitmap srcThumb, int startX, int 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++) {
  /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;

Completed in 1105 milliseconds

1 2 3 4