/external/webkit/Source/WebCore/svg/ |
SVGPathTraversalStateBuilder.cpp | 36 void SVGPathTraversalStateBuilder::moveTo(const FloatPoint& targetPoint, bool, PathCoordinateMode) 39 m_traversalState->m_totalLength += m_traversalState->moveTo(targetPoint);
|
/external/skia/gm/ |
complexclip.cpp | 45 path.moveTo(SkIntToScalar(0), SkIntToScalar(50)); 53 path.moveTo(SkIntToScalar(50), SkIntToScalar(50)); 65 clipA.moveTo(SkIntToScalar(10), SkIntToScalar(20)); 73 clipB.moveTo(SkIntToScalar(40), SkIntToScalar(10));
|
patheffects.cpp | 65 path.moveTo(SkIntToScalar(gXY[0]), SkIntToScalar(gXY[1])); 122 path.moveTo(20, 20);
|
/external/skia/src/pdf/ |
SkPDFUtils.cpp | 48 void SkPDFUtils::MoveTo(SkScalar x, SkScalar y, SkWStream* content) { 107 // Specifically: moveTo(X), lineTo(Y) and moveTo(X), lineTo(X), lineTo(Y). 127 MoveTo(args[0].fX, args[0].fY, ¤tSegment);
|
SkPDFUtils.h | 41 static void MoveTo(SkScalar x, SkScalar y, SkWStream* content);
|
/external/skia/src/utils/ |
SkCullPoints.cpp | 81 void SkCullPoints::moveTo(int x, int y) { 130 void SkCullPointsPath::moveTo(int x, int y) { 131 fCP.moveTo(x, y); 139 fPath->moveTo(SkIntToScalar(pts[0].fX), SkIntToScalar(pts[0].fY));
|
/external/skia/tests/ |
FillPathTest.cpp | 41 path.moveTo(0.0f, 0.0f);
|
/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/ |
SuggestionPosition.java | 48 mCursor.moveTo(mPosition);
|
ShortcutCursor.java | 74 suggestions.moveTo(i); 127 moveTo(i);
|
/packages/apps/Settings/src/com/android/settings/widget/ |
PieChartView.java | 181 slice.path.moveTo(rect.centerX(), rect.centerY()); 193 slice.pathSide.moveTo(rect.centerX(), rect.centerY()); 202 slice.pathOutline.moveTo(rect.centerX(), rect.centerY()); 207 slice.pathOutline.moveTo(rect.centerX(), rect.centerY());
|
/packages/apps/Email/src/com/android/email/activity/ |
MessageOrderManager.java | 41 * Call {@link #moveTo} to set the current message id. As a result, 78 * Called when the message set by {@link MessageOrderManager#moveTo(long)} is found in the 84 * Called when the message set by {@link MessageOrderManager#moveTo(long)} is not found. 92 * transaction" exception. e.g. {@link #moveTo} is often called during a fragment transaction, 242 public void moveTo(long messageId) { 273 * @return true if the message set to {@link #moveTo} has an older message in the mailbox. 282 * @return true if the message set to {@link #moveTo} has an newer message in the mailbox.
|
/external/webkit/Source/WebCore/editing/ |
SelectionController.h | 72 void moveTo(const Range*, EAffinity, bool userTriggered = false); 73 void moveTo(const VisiblePosition&, bool userTriggered = false, CursorAlignOnScroll = AlignCursorOnScrollIfNeeded); 74 void moveTo(const VisiblePosition&, const VisiblePosition&, bool userTriggered = false); 75 void moveTo(const Position&, EAffinity, bool userTriggered = false); 76 void moveTo(const Position&, const Position&, EAffinity, bool userTriggered = false);
|
/external/webkit/Source/WebCore/rendering/ |
InlineIterator.h | 52 void clear() { moveTo(0, 0); } 56 moveTo(object, 0); 59 void moveTo(RenderObject* object, unsigned offset, int nextBreak = -1) 226 // bidiNext can return 0, so use moveTo instead of moveToStartOf 227 moveTo(bidiNext(m_root, m_obj, resolver), 0);
|
/external/skia/include/core/ |
SkPath.h | 233 * a moveTo and a lineTo). If so, and line[] is not null, it sets the 2 338 void moveTo(SkScalar x, SkScalar y); 344 void moveTo(const SkPoint& p) { 345 this->moveTo(p.fX, p.fY); 350 same as moveTo(). 360 moveTo() call has been made for this contour, the first point is 368 /** Add a line from the last point to the specified point. If no moveTo() 379 point on this contour. If there is no previous point, then a moveTo(0,0) 390 (x1,y1), and ending at (x2,y2). If no moveTo() call has been made for 401 p1, and ending at p2. If no moveTo() call has been made for thi [all...] |
/cts/tests/tests/graphics/src/android/graphics/cts/ |
CornerPathEffectTest.java | 43 path.moveTo(0, PADDING); 65 expectedPath.moveTo(0, PADDING);
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
PathEffects.java | 102 p.moveTo(0, 0); 111 p.moveTo(4, 0);
|
/external/e2fsprogs/contrib/ |
dconf | 74 printf(" newpath x1 y1 moveto x2 y1 lineto x2 y2 lineto\n") 79 printf("/textxy {moveto show} bind def\n")
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowPath.java | 27 public void moveTo(float x, float y) { 61 * @return whether the {@link #moveTo(float, float)} method was called
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
CanvasTest.java | 94 path1.moveTo(20, 15); 96 path2.moveTo(100, 100);
|
/external/webkit/Source/WebCore/platform/graphics/wince/ |
PathWinCE.cpp | 71 void Path::moveTo(const FloatPoint& point) 73 m_path->moveTo(point);
|
/external/webkit/Source/WebKit/android/plugins/ |
ANPPathInterface.cpp | 59 path->moveTo(SkFloatToScalar(x), SkFloatToScalar(y)); 105 ASSIGN(i, moveTo);
|
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
PathsCacheActivity.java | 56 path.moveTo(0.0f, 0.0f); 69 path.moveTo(0.0f, 0.0f);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/setup/ |
SetupStartIndicatorView.java | 107 path.moveTo(width, 0.0f); 112 path.moveTo(0.0f, 0.0f);
|
/development/samples/devbytes/animation/CurvedMotion/src/com/example/android/curvedmotion/ |
PathEvaluator.java | 47 return PathPoint.moveTo(x, y);
|