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

1 2

  /frameworks/base/core/java/android/widget/
Scroller.java 253 * @param startY Starting vertical scroll offset in pixels. Positive numbers
260 public void startScroll(int startX, int startY, int dx, int dy) {
261 startScroll(startX, startY, dx, dy, DEFAULT_DURATION);
269 * @param startY Starting vertical scroll offset in pixels. Positive numbers
277 public void startScroll(int startX, int startY, int dx, int dy, int duration) {
283 mStartY = startY;
285 mFinalY = startY + dy;
296 * @param startY Starting point of the scroll (Y)
310 public void fling(int startX, int startY, int velocityX, int velocityY,
322 mStartY = startY;
    [all...]
OverScroller.java 299 * @param startY Starting vertical scroll offset in pixels. Positive numbers
306 public void startScroll(int startX, int startY, int dx, int dy) {
307 startScroll(startX, startY, dx, dy, DEFAULT_DURATION);
315 * @param startY Starting vertical scroll offset in pixels. Positive numbers
323 public void startScroll(int startX, int startY, int dx, int dy, int duration) {
326 mScrollerY.startScroll(startY, dy, duration);
333 * @param startY Starting Y coordinate
338 * @return true if a springback was initiated, false if startX and startY were
341 public boolean springBack(int startX, int startY, int minX, int maxX, int minY, int maxY) {
346 final boolean spingbackY = mScrollerY.springback(startY, minY, maxY)
    [all...]
  /external/webkit/WebCore/svg/graphics/filters/
SVGFEMorphology.cpp 112 int startY = max(0, y - radiusY);
118 unsigned char columnExtrema = srcPixelArray->get(startY * effectWidth + 4 * j + channel);
119 for (int i = startY; i <= endY; ++i) {
131 unsigned char columnExtrema = srcPixelArray->get(startY * effectWidth + endX * 4 + channel);
132 for (int i = startY; i <= endY; ++i) {
  /external/webkit/WebCore/rendering/
RenderFieldset.cpp 218 int startY = ty;
233 startY = lb;
236 drawLineForBoxSide(graphicsContext, tx, startY, tx + borderLeftWidth, ty + h, BSLeft, lc, style->color(), ls,
242 int startY = ty;
257 startY = lb;
260 drawLineForBoxSide(graphicsContext, tx + w - borderRightWidth, startY, tx + w, ty + h, BSRight, rc, style->color(), rs,
  /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);
  /external/webkit/WebCore/platform/image-decoders/
ImageDecoder.h 91 // Copies the pixel data at [(startX, startY), (endX, startY)) to the
94 void copyRowNTimes(int startX, int endX, int startY, int endY)
98 ASSERT(startY < height());
101 const PixelData* const startAddr = getAddr(startX, startY);
102 for (int destY = startY + 1; destY < endY; ++destY)
  /frameworks/base/core/java/com/android/internal/widget/
LockPatternView.java 604 final float startY = getCenterYForRow(hitCell.row);
609 invalidate((int) (startX - widthOffset), (int) (startY - heightOffset),
610 (int) (startX + widthOffset), (int) (startY + heightOffset));
661 float startY = getCenterYForRow(lastCell.row);
678 if (startY < y) {
679 top = startY;
683 bottom = startY;
698 if (startY < oldY) {
699 top = startY;
703 bottom = startY;
    [all...]
  /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/skia/src/images/
SkImageDecoder_libjpeg.cpp 515 int startY = region.fTop;
552 int oriStartY = startY;
556 &startX, &startY, &width, &height);
598 oriWidth, oriHeight, startX, startY);
661 oriWidth, oriHeight, startX, startY);
  /external/webkit/WebCore/editing/
SelectionController.cpp 692 int startY;
693 if (!absoluteCaretY(pos, startY))
696 startY = -startY;
697 int lastY = startY;
710 if (nextY - startY > verticalDistance)
    [all...]
  /external/skia/src/core/
SkScan_Hairline.cpp 108 SkFixed startY = SkFDot6ToFixed(y0) + (slope * ((32 - x0) & 63) >> 6);
110 horiline(ix0, ix1, startY, slope, blitter);
  /external/webkit/WebCore/platform/graphics/wince/
PlatformPathWince.cpp 720 float startX, startY, endX, endY;
725 getEllipsePointByAngle(sar, a, b, startX, startY);
728 transformArcPoint(startX, startY, p);
731 FloatPoint start(startX, startY);
GraphicsContextWince.cpp 825 int startX, startY, endX, endY;
829 startY = stableRound(fstartY);
834 startY = centerY - startY;
845 if (startY < endY) {
846 clipRect.top = startY;
850 clipRect.bottom = startY;
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
LatinKeyboardBaseView.java     [all...]
  /frameworks/base/graphics/java/android/graphics/
Canvas.java 804 * @param startY The y-coordinate of the start point of the line
807 public void drawLine(float startX, float startY, float stopX, float stopY,
809 native_drawLine(mNativeCanvas, startX, startY, stopX, stopY,
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Canvas.java 862 public void drawLine(float startX, float startY, float stopX, float stopY, Paint paint) {
866 g.drawLine((int)startX, (int)startY, (int)stopX, (int)stopY);
    [all...]
  /frameworks/base/core/jni/android/graphics/
Canvas.cpp 392 jfloat startX, jfloat startY, jfloat stopX,
394 canvas->drawLine(SkFloatToScalar(startX), SkFloatToScalar(startY),
    [all...]
  /cts/tests/tests/webkit/src/android/webkit/cts/
WebViewTest.java 349 int startY = mWebView.getScrollY();
361 int insetOffsetY = mWebView.getScrollY() - startY;
385 int overlayOffsetY = mWebView.getScrollY() - startY;
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
CalendarView.java     [all...]
  /external/quake/quake/src/QW/scitech/include/
mgraph.h 684 m_int startX,startY; /* Starting point on arc */
    [all...]
  /external/quake/quake/src/WinQuake/scitech/INCLUDE/
MGRAPH.H 684 m_int startX,startY; /* Starting point on arc */
    [all...]
  /prebuilt/common/jfreechart/
jfreechart-1.0.9.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/5/
android.jar 

Completed in 1444 milliseconds

1 2