/external/webkit/Source/WebCore/platform/graphics/android/ |
PathAndroid.cpp | 73 // Skia's empty() will return true if it has just a moveTo, so we need to 75 // including moveTo. 121 void Path::moveTo(const FloatPoint& point) 123 m_path->moveTo(SkFloatToScalar(point.x()), SkFloatToScalar(point.y()));
|
/external/webkit/Source/WebCore/svg/ |
SVGPathBuilder.h | 46 virtual void moveTo(const FloatPoint&, bool closed, PathCoordinateMode);
|
SVGPathByteStreamBuilder.cpp | 37 void SVGPathByteStreamBuilder::moveTo(const FloatPoint& targetPoint, bool, PathCoordinateMode mode)
|
SVGPathByteStreamBuilder.h | 44 virtual void moveTo(const FloatPoint&, bool closed, PathCoordinateMode);
|
SVGPathConsumer.h | 53 virtual void moveTo(const FloatPoint&, bool closed, PathCoordinateMode) = 0;
|
SVGPathSegListBuilder.h | 54 virtual void moveTo(const FloatPoint&, bool closed, PathCoordinateMode);
|
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
ClearActivity.java | 59 mPath.moveTo(0.0f, 0.0f);
|
ScaledPathsActivity.java | 52 mPath.moveTo(0.0f, 0.0f);
|
TextOnPathActivity.java | 51 path.moveTo(0.0f, 0.0f); 64 path.moveTo(0.0f, 0.0f);
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/google/ |
AbstractGoogleSourceResult.java | 58 public void moveTo(int pos) {
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/setup/ |
SetupStepIndicatorView.java | 56 mIndicatorPath.moveTo(xPos, 0);
|
/external/skia/legacy/src/core/ |
SkPath.cpp | 89 if (pts.count() <= 1) { // we ignore just 1 point (moveto) 113 // flag to require a moveTo if we begin with something else, like lineTo etc. 389 this->moveTo(x, y); 434 void SkPath::moveTo(SkScalar x, SkScalar y) { 454 this->moveTo(pt.fX + x, pt.fY + y); 467 this->moveTo(x, y); 555 // signal that we need a moveTo to follow us (unless we're done) 577 this->moveTo(left, top); 623 this->moveTo(rect.fRight - rx, rect.fTop); 744 this->moveTo(cx + rx, cy) [all...] |
SkStroke.cpp | 69 void moveTo(const SkPoint&); 131 fOuter.moveTo(fFirstOuterPt.fX, fFirstOuterPt.fY); 132 fInner.moveTo(prevX - normal->fX, prevY - normal->fY); 159 fOuter.moveTo(pt.fX, pt.fY); 202 void SkPathStroker::moveTo(const SkPoint& pt) { 585 stroker.moveTo(pts[0]); 660 tmp.moveTo(p0);
|
/external/skia/legacy/src/animator/ |
SkPathParts.cpp | 35 // MoveTo 51 fPath->fPath.moveTo(x, y);
|
/external/skia/src/animator/ |
SkPathParts.cpp | 35 // MoveTo 51 fPath->fPath.moveTo(x, y);
|
/frameworks/base/core/java/android/gesture/ |
GestureStroke.java | 135 path.moveTo(x, y); 184 path.moveTo(x, y);
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/ |
SuggestionsAdapterBase.java | 158 cursor.moveTo(position); 168 suggestions.moveTo(position);
|
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/ |
RankAwarePromoterTest.java | 73 corpora2.moveTo(0); 101 promoted.moveTo(i);
|
SuggestionCursorWithExtrasTest.java | 137 suggestions.moveTo(0); 160 suggestions.moveTo(0);
|
/external/webkit/Source/WebCore/page/ |
DOMSelection.cpp | 215 m_frame->selection()->moveTo(VisiblePosition(Position(node, offset), DOWNSTREAM)); 230 m_frame->selection()->moveTo(VisiblePosition(selection.end(), DOWNSTREAM)); 245 m_frame->selection()->moveTo(VisiblePosition(selection.start(), DOWNSTREAM)); 272 m_frame->selection()->moveTo(visibleBase, visibleExtent); 288 m_frame->selection()->moveTo(VisiblePosition(Position(node, offset), DOWNSTREAM));
|
/packages/apps/Settings/src/com/android/settings/fuelgauge/ |
BatteryHistoryChart.java | 544 path.moveTo(x, y); 552 curLevelPath.moveTo(x, y); 566 mChargingPath.moveTo(x, h-mChargingOffset); 577 mScreenOnPath.moveTo(x, h-mScreenOnOffset); 588 mGpsOnPath.moveTo(x, h-mGpsOnOffset); 599 mWifiRunningPath.moveTo(x, h-mWifiRunningOffset); 610 mWakeLockPath.moveTo(x, h-mWakeLockOffset);
|
/external/webkit/Source/WebCore/platform/graphics/ |
Path.cpp | 54 segmentLength = traversalState.moveTo(points[0]); 130 moveTo(FloatPoint(rect.x() + radius.width(), rect.y())); 169 moveTo(FloatPoint(rect.x() + topLeftRadius.width(), rect.y()));
|
/packages/apps/Settings/src/com/android/settings/widget/ |
ChartNetworkSeriesView.java | 191 mPathStroke.moveTo(lastX, lastY); 192 mPathFill.moveTo(lastX, lastY); 259 mPathEstimate.moveTo(lastX, lastY);
|
/external/webkit/Source/WebCore/inspector/front-end/ |
StylesSidebarPane.js | [all...] |
/cts/tests/tests/graphics/src/android/graphics/cts/ |
ComposePathEffectTest.java | 40 path.moveTo(START_X, CENTER);
|