HomeSort by relevance Sort by last modified time
    Searched full:moveto (Results 51 - 75 of 264) sorted by null

1 23 4 5 6 7 8 91011

  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
SingleCorpusPromoterTest.java 51 promoted.moveTo(i);
SuggestionCursorUtil.java 53 expected.moveTo(positionExpected);
54 observed.moveTo(positionObserved);
220 observed.moveTo(i);
  /external/skia/samplecode/
SampleCull.cpp 31 tmp.moveTo(pts[0]);
107 fPath.moveTo(x, y);
164 cpp.moveTo(fPoints[0].fX, fPoints[0].fY);
SampleHairline.cpp 110 path.moveTo(pts[0]);
133 path.moveTo(pts[0]);
157 path.moveTo(pts[0]);
SampleEffects.cpp 84 fPath.moveTo(pts[0], pts[1]);
SampleFontScalerTest.cpp 72 path.moveTo(pts[0]);
  /external/skia/src/utils/
SkParsePath.cpp 95 path.moveTo(points[0]);
151 fPath.moveTo(c);
162 path.moveTo(args[0].fX, args[0].fY);
  /external/webkit/Source/WebCore/rendering/mathml/
RenderMathMLSquareRoot.cpp 127 root.moveTo(FloatPoint(topStart.x() + width , ty));
144 mask.moveTo(topStart);
156 line.moveTo(bottomLeft);
RenderMathMLRoot.cpp 161 root.moveTo(FloatPoint(topStart.x() + width, ty));
178 mask.moveTo(topStart);
190 line.moveTo(bottomLeft);
  /external/webkit/Source/WebCore/svg/
SVGPathSegListSource.cpp 66 SVGPathSegSingleCoordinate* moveTo = static_cast<SVGPathSegSingleCoordinate*>(m_segment.get());
67 targetPoint = FloatPoint(moveTo->x(), moveTo->y());
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
ClusteredSuggestionsAdapter.java 100 promoted.moveTo(0);
117 result.moveTo(i);
156 c.moveTo(childPosition);
  /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/grub/stage2/
boot.c 802 unsigned long moveto; local
822 moveto = linux_mem_size;
824 moveto = (mbi.mem_upper + 0x400) << 10;
826 moveto = (moveto - len) & 0xfffff000;
829 if (moveto + len >= max_addr)
830 moveto = (max_addr - len) & 0xfffff000;
836 moveto -= 0x10000;
837 memmove ((void *) RAW_ADDR (moveto), (void *) cur_addr, len);
839 printf (" [Linux-initrd @ 0x%x, 0x%x bytes]\n", moveto, len)
    [all...]
  /external/skia/src/core/
SkPath.cpp 76 if (pts.count() <= 1) { // we ignore just 1 point (moveto)
232 this->moveTo(x, y);
272 void SkPath::moveTo(SkScalar x, SkScalar y) {
293 this->moveTo(pt.fX + x, pt.fY + y);
396 this->moveTo(left, top);
442 this->moveTo(rect.fRight - rx, rect.fTop);
563 this->moveTo(cx + rx, cy);
593 this->moveTo(R, cy);
682 forceMoveTo ? this->moveTo(pts[0]) : this->lineTo(pts[0]);
705 this->moveTo(pts[0])
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Path.java 215 public void moveTo(float x, float y) {
222 * same as moveTo().
235 * If no moveTo() call has been made for this contour, the first point is
248 * point on this contour. If there is no previous point, then a moveTo(0,0)
263 * (x1,y1), and ending at (x2,y2). If no moveTo() call has been made for
278 * point on this contour. If there is no previous point, then a moveTo(0,0)
297 * (x1,y1) and (x2,y2), and ending at (x3,y3). If no moveTo() call has been
316 * moveTo(0,0) is inserted automatically.
328 * start of the arc. However, if the path is empty, then we call moveTo()
347 * start of the arc. However, if the path is empty, then we call moveTo()
    [all...]
  /frameworks/base/core/java/android/widget/
CursorTreeAdapter.java 103 if (mGroupCursorHelper.moveTo(groupPosition) == null) return null;
169 return getChildrenCursorHelper(groupPosition, true).moveTo(childPosition);
183 return mGroupCursorHelper.moveTo(groupPosition);
196 Cursor cursor = mGroupCursorHelper.moveTo(groupPosition);
240 Cursor cursor = cursorHelper.moveTo(childPosition);
445 Cursor moveTo(int position) {
  /external/skia/src/animator/
SkParseSVGPath.cpp 153 fPath.moveTo(points[0]);
219 fPath.moveTo(c);
230 fPath.moveTo(args[0].fX, args[0].fY);
SkPathParts.h 43 DECLARE_MEMBER_INFO(MoveTo);
  /external/webkit/Source/WebCore/platform/graphics/skia/
PathSkia.cpp 100 void Path::moveTo(const FloatPoint& point)
102 m_path->moveTo(point);
149 // Force a moveTo the end position.
  /external/webkit/Source/WebCore/platform/qt/
ScrollbarThemeQt.cpp 161 opt->rect.moveTo(QPoint(0, 0));
167 opt->rect.moveTo(topLeft);
178 opt->rect.moveTo(QPoint(0, 0));
  /external/chromium/chrome/browser/resources/chromeos/
choose_mobile_network.html 31 ctx.moveTo(lineWidth / 2, r - lineWidth / 2);
  /external/chromium/chrome/browser/ui/views/tabs/
dragged_tab_view.h 32 void MoveTo(const gfx::Point& screen_point);
  /external/skia/src/effects/
SkDiscretePathEffect.cpp 63 dst->moveTo(p);
  /external/webkit/Source/WebCore/fileapi/
Entry.h 55 void moveTo(PassRefPtr<DirectoryEntry> parent, const String& name = String(), PassRefPtr<EntryCallback> successCallback = 0, PassRefPtr<ErrorCallback> errorCallback = 0) const;
Entry.idl 44 void moveTo(in DirectoryEntry parent, in [Optional, ConvertUndefinedOrNullToNullString] DOMString name, in [Optional, Callback] EntryCallback successCallback, in [Optional, Callback] ErrorCallback errorCallback);

Completed in 308 milliseconds

1 23 4 5 6 7 8 91011