HomeSort by relevance Sort by last modified time
    Searched refs:moveTo (Results 26 - 50 of 128) sorted by null

12 3 4 5 6

  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Path_Delegate.java 217 pathDelegate.moveTo(x, y);
571 private void moveTo(float x, float y) {
572 mPath.moveTo(mLastX = x, mLastY = y);
578 * same as moveTo().
588 mPath.moveTo(mLastX = dx, mLastY = dy);
593 * If no moveTo() call has been made for this contour, the first point is
605 * point on this contour. If there is no previous point, then a moveTo(0,0)
615 mPath.moveTo(mLastX = 0, mLastY = 0);
624 * (x1,y1), and ending at (x2,y2). If no moveTo() call has been made for
638 * point on this contour. If there is no previous point, then a moveTo(0,0
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
SuggestionsAdapter.java 158 mCursor.moveTo(position);
166 mCursor.moveTo(position);
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
SuggestionCursorUtil.java 45 expected.moveTo(positionExpected);
46 observed.moveTo(positionObserved);
RankAwarePromoterTest.java 61 promoted.moveTo(i);
  /cts/tests/tests/graphics/src/android/graphics/cts/
ComposePathEffectTest.java 49 path.moveTo(START_X, CENTER);
DashPathEffectTest.java 61 path.moveTo(START_X, COORD_Y);
DiscretePathEffectTest.java 61 path.moveTo(START_X, COORD_Y);
EmbossMaskFilterTest.java 60 path.moveTo(START_X, CENTER_Y);
PathDashPathEffectTest.java 85 p.moveTo(0, HEIGHT / 2);
  /external/skia/src/effects/
SkDiscretePathEffect.cpp 68 dst->moveTo(p);
  /external/webkit/WebCore/inspector/front-end/
SummaryBar.js 194 ctx.moveTo(x + 4, y + h - 3 - 0.5);
231 ctx.moveTo(x, y + r);
259 ctx.moveTo(x + (i * Math.round(w / 20)) + 0.5, y);
267 ctx.moveTo(x + (i * Math.round(w / 20)) + 1.5, y);
  /external/webkit/WebCore/platform/graphics/haiku/
PathHaiku.cpp 83 void Path::moveTo(const FloatPoint& point)
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SuggestionCursorBackedCursor.java 72 mCursor.moveTo(getPosition());
RankAwarePromoter.java 51 result.moveTo(0);
  /external/skia/include/core/
SkPath.h 186 void moveTo(SkScalar x, SkScalar y);
192 void moveTo(const SkPoint& p) {
193 this->moveTo(p.fX, p.fY);
198 same as moveTo().
208 moveTo() call has been made for this contour, the first point is
216 /** Add a line from the last point to the specified point. If no moveTo()
227 point on this contour. If there is no previous point, then a moveTo(0,0)
238 (x1,y1), and ending at (x2,y2). If no moveTo() call has been made for
249 p1, and ending at p2. If no moveTo() call has been made for this
260 point on this contour. If there is no previous point, then a moveTo(0,0
    [all...]
  /external/skia/src/animator/
SkParseSVGPath.cpp 153 fPath.moveTo(points[0]);
219 fPath.moveTo(c);
230 fPath.moveTo(args[0].fX, args[0].fY);
  /external/webkit/WebCore/platform/qt/
ScrollbarThemeQt.cpp 157 opt->rect.moveTo(QPoint(0, 0));
163 opt->rect.moveTo(topLeft);
174 opt->rect.moveTo(QPoint(0, 0));
  /packages/apps/Settings/src/com/android/settings/applications/
LinearColorBar.java 118 mColorPath.moveTo(indicatorLeft, mRect.top);
128 mEdgePath.moveTo(-xoff+lineOffset, 0);
132 mEdgePath.moveTo(width+xoff-1-lineOffset, 0);
  /external/webkit/WebCore/page/
DOMSelection.cpp 210 m_frame->selection()->moveTo(VisiblePosition(node, offset, DOWNSTREAM));
219 m_frame->selection()->moveTo(VisiblePosition(selection.end(), DOWNSTREAM));
228 m_frame->selection()->moveTo(VisiblePosition(selection.start(), DOWNSTREAM));
250 m_frame->selection()->moveTo(visibleBase, visibleExtent);
261 m_frame->selection()->moveTo(VisiblePosition(node, offset, DOWNSTREAM));
  /development/samples/GlobalTime/src/com/android/globaltime/
Clock.java 87 path.moveTo(p0x - ox, p0y - oy);
101 path.moveTo(cx - width / 2.0f, cy);
114 path.moveTo(cx, cy - height / 2.0f);
  /external/skia/src/core/
SkPath.cpp 75 if (pts.count() <= 1) { // we ignore just 1 point (moveto)
212 this->moveTo(x, y);
238 void SkPath::moveTo(SkScalar x, SkScalar y) {
258 this->moveTo(pt.fX + x, pt.fY + y);
357 this->moveTo(left, top);
402 this->moveTo(rect.fRight - rx, rect.fTop);
518 this->moveTo(cx + rx, cy);
548 this->moveTo(R, cy);
637 forceMoveTo ? this->moveTo(pts[0]) : this->lineTo(pts[0]);
660 this->moveTo(pts[0])
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
Compass.java 90 mPath.moveTo(0, -50);
  /external/skia/tests/
PathTest.cpp 88 p.moveTo(SK_Scalar1, 0);
  /external/webkit/WebCore/platform/graphics/
Path.h 123 void moveTo(const FloatPoint&);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/editors/layout/gscripts/
Rect.java 98 public Rect moveTo(int x, int y) {

Completed in 1540 milliseconds

12 3 4 5 6