Searched defs:startAngle (Results 1 - 25 of 25) sorted by relevance

/external/chromium_org/third_party/angle/samples/angle/particle_system/
H A DParticleSystem.cpp107 float startAngle = RandomBetween(0, 2.0f * float(M_PI)); local
109 mParticles[i].startPosition.x = sinf(startAngle) * startRadius;
110 mParticles[i].startPosition.y = cosf(startAngle) * startRadius;
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DCanvasPathMethods.cpp136 float adjustEndAngle(float startAngle, float endAngle, bool anticlockwise) argument
140 * If the anticlockwise argument is false and endAngle-startAngle is equal to or greater than 2pi, or,
141 * if the anticlockwise argument is true and startAngle-endAngle is equal to or greater than 2pi,
142 * then the arc is the whole circumference of this ellipse, and the point at startAngle along this circle's circumference,
145 if (!anticlockwise && endAngle - startAngle >= twoPiFloat)
146 newEndAngle = startAngle + twoPiFloat;
147 else if (anticlockwise && startAngle - endAngle >= twoPiFloat)
148 newEndAngle = startAngle - twoPiFloat;
156 /* NOTE: When startAngle = 0, endAngle = 2Pi and anticlockwise = true, the spec does not indicate clearly.
160 else if (!anticlockwise && startAngle > endAngl
179 canonicalizeAngle(float* startAngle, float* endAngle) argument
225 degenerateEllipse(CanvasPathMethods* path, float x, float y, float radiusX, float radiusY, float rotation, float startAngle, float endAngle, bool anticlockwise) argument
254 arc(float x, float y, float radius, float startAngle, float endAngle, bool anticlockwise, ExceptionState& exceptionState) argument
275 m_path.addArc(FloatPoint(x, y), radius, startAngle, adjustedEndAngle, anticlockwise); local
278 ellipse(float x, float y, float radiusX, float radiusY, float rotation, float startAngle, float endAngle, bool anticlockwise, ExceptionState& exceptionState) argument
303 m_path.addEllipse(FloatPoint(x, y), radiusX, radiusY, rotation, startAngle, adjustedEndAngle, anticlockwise); local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Dvgu.c262 VGfloat startAngle,
269 VGfloat last = startAngle + angleExtent;
289 coords[0] = x+cos(DEGREES_TO_RADIANS(startAngle))*width/2;
290 coords[1] = y+sin(DEGREES_TO_RADIANS(startAngle))*height/2;
296 VGfloat angle = startAngle + 180;
319 VGfloat angle = startAngle - 180;
259 vguArc(VGPath path, VGfloat x, VGfloat y, VGfloat width, VGfloat height, VGfloat startAngle, VGfloat angleExtent, VGUArcType arcType) argument
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DEdgeDemo.cpp85 SkScalar startAngle, int points, SkPoint center) {
86 SkScalar angle = startAngle;
84 createStar(SkPath& path, SkScalar innerRadius, SkScalar outerRadius, SkScalar startAngle, int points, SkPoint center) argument
/external/chromium_org/third_party/skia/experimental/SkV8Example/
H A DPath2D.cpp149 double startAngle = args[3]->NumberValue(); local
157 sweepAngle = endAngle - startAngle;
159 sweepAngle = startAngle - endAngle;
160 startAngle = endAngle;
171 path->fSkPath.addArc(rect, SkRadiansToDegrees(startAngle),
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dvgu.c262 VGfloat startAngle,
269 VGfloat last = startAngle + angleExtent;
289 coords[0] = x+cos(DEGREES_TO_RADIANS(startAngle))*width/2;
290 coords[1] = y+sin(DEGREES_TO_RADIANS(startAngle))*height/2;
296 VGfloat angle = startAngle + 180;
319 VGfloat angle = startAngle - 180;
259 vguArc(VGPath path, VGfloat x, VGfloat y, VGfloat width, VGfloat height, VGfloat startAngle, VGfloat angleExtent, VGUArcType arcType) argument
/external/skia/experimental/Intersection/
H A DEdgeDemo.cpp85 SkScalar startAngle, int points, SkPoint center) {
86 SkScalar angle = startAngle;
84 createStar(SkPath& path, SkScalar innerRadius, SkScalar outerRadius, SkScalar startAngle, int points, SkPoint center) argument
/external/skia/experimental/SkV8Example/
H A DPath2D.cpp149 double startAngle = args[3]->NumberValue(); local
157 sweepAngle = endAngle - startAngle;
159 sweepAngle = startAngle - endAngle;
160 startAngle = endAngle;
171 path->fSkPath.addArc(rect, SkRadiansToDegrees(startAngle),
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DPath.cpp313 void Path::addEllipse(const FloatPoint& p, float radiusX, float radiusY, float startAngle, float endAngle, bool anticlockwise) argument
315 ASSERT(ellipseIsRenderable(startAngle, endAngle));
316 ASSERT(startAngle >= 0 && startAngle < twoPiFloat);
317 ASSERT((anticlockwise && (startAngle - endAngle) >= 0) || (!anticlockwise && (endAngle - startAngle) >= 0));
327 float sweep = endAngle - startAngle;
328 SkScalar startDegrees = WebCoreFloatToSkScalar(startAngle * 180 / piFloat);
351 void Path::addArc(const FloatPoint& p, float radius, float startAngle, float endAngle, bool anticlockwise) argument
353 addEllipse(p, radius, radius, startAngle, endAngl
361 addEllipse(const FloatPoint& p, float radiusX, float radiusY, float rotation, float startAngle, float endAngle, bool anticlockwise) argument
368 addEllipse(FloatPoint(p.x(), p.y()), radiusX, radiusY, startAngle, endAngle, anticlockwise); local
377 addEllipse(FloatPoint::zero(), radiusX, radiusY, startAngle, endAngle, anticlockwise); local
499 ellipseIsRenderable(float startAngle, float endAngle) argument
[all...]
/external/chromium_org/third_party/skia/bench/
H A DPathBench.cpp651 int startAngle)
659 switch (startAngle) {
676 path->arcTo(arcRect, SkIntToScalar(startAngle), SkIntToScalar(90), false);
649 add_corner_arc(SkPath* path, const SkRect& rect, SkScalar xIn, SkScalar yIn, int startAngle) argument
/external/proguard/src/proguard/gui/splash/
H A DOverrideGraphics2D.java274 public void drawArc(int x, int y, int width, int height, int startAngle, int arcAngle) argument
276 graphics.drawArc(x, y, width, height, startAngle, arcAngle);
414 public void fillArc(int x, int y, int width, int height, int startAngle, int arcAngle) argument
416 graphics.fillArc(x, y, width, height, startAngle, arcAngle);
/external/skia/bench/
H A DPathBench.cpp651 int startAngle)
659 switch (startAngle) {
676 path->arcTo(arcRect, SkIntToScalar(startAngle), SkIntToScalar(90), false);
649 add_corner_arc(SkPath* path, const SkRect& rect, SkScalar xIn, SkScalar yIn, int startAngle) argument
/external/pdfium/core/src/fxge/Microsoft SDK/include/
H A DGdiPlusGraphics.h532 IN REAL startAngle,
541 startAngle,
547 IN REAL startAngle,
551 startAngle, sweepAngle);
560 IN REAL startAngle,
569 startAngle,
576 IN REAL startAngle,
584 startAngle,
792 IN REAL startAngle,
800 startAngle,
527 DrawArc(IN const Pen* pen, IN REAL x, IN REAL y, IN REAL width, IN REAL height, IN REAL startAngle, IN REAL sweepAngle) argument
545 DrawArc(IN const Pen* pen, IN const RectF& rect, IN REAL startAngle, IN REAL sweepAngle) argument
555 DrawArc(IN const Pen* pen, IN INT x, IN INT y, IN INT width, IN INT height, IN REAL startAngle, IN REAL sweepAngle) argument
574 DrawArc(IN const Pen* pen, IN const Rect& rect, IN REAL startAngle, IN REAL sweepAngle) argument
790 DrawPie(IN const Pen* pen, IN const RectF& rect, IN REAL startAngle, IN REAL sweepAngle) argument
804 DrawPie(IN const Pen* pen, IN REAL x, IN REAL y, IN REAL width, IN REAL height, IN REAL startAngle, IN REAL sweepAngle) argument
823 DrawPie(IN const Pen* pen, IN const Rect& rect, IN REAL startAngle, IN REAL sweepAngle) argument
837 DrawPie(IN const Pen* pen, IN INT x, IN INT y, IN INT width, IN INT height, IN REAL startAngle, IN REAL sweepAngle) argument
1148 FillPie(IN const Brush* brush, IN const RectF& rect, IN REAL startAngle, IN REAL sweepAngle) argument
1157 FillPie(IN const Brush* brush, IN REAL x, IN REAL y, IN REAL width, IN REAL height, IN REAL startAngle, IN REAL sweepAngle) argument
1172 FillPie(IN const Brush* brush, IN const Rect& rect, IN REAL startAngle, IN REAL sweepAngle) argument
1181 FillPie(IN const Brush* brush, IN INT x, IN INT y, IN INT width, IN INT height, IN REAL startAngle, IN REAL sweepAngle) argument
[all...]
H A DGdiPlusPath.h258 IN REAL startAngle,
262 startAngle, sweepAngle);
269 IN REAL startAngle,
273 startAngle, sweepAngle));
278 IN REAL startAngle,
282 startAngle, sweepAngle);
289 IN REAL startAngle,
297 startAngle,
554 IN REAL startAngle,
557 return AddPie(rect.X, rect.Y, rect.Width, rect.Height, startAngle,
257 AddArc(IN const RectF& rect, IN REAL startAngle, IN REAL sweepAngle) argument
265 AddArc(IN REAL x, IN REAL y, IN REAL width, IN REAL height, IN REAL startAngle, IN REAL sweepAngle) argument
277 AddArc(IN const Rect& rect, IN REAL startAngle, IN REAL sweepAngle) argument
285 AddArc(IN INT x, IN INT y, IN INT width, IN INT height, IN REAL startAngle, IN REAL sweepAngle) argument
553 AddPie(IN const RectF& rect, IN REAL startAngle, IN REAL sweepAngle) argument
561 AddPie(IN REAL x, IN REAL y, IN REAL width, IN REAL height, IN REAL startAngle, IN REAL sweepAngle) argument
573 AddPie(IN const Rect& rect, IN REAL startAngle, IN REAL sweepAngle) argument
585 AddPie(IN INT x, IN INT y, IN INT width, IN INT height, IN REAL startAngle, IN REAL sweepAngle) argument
[all...]
/external/skia/src/core/
H A DSkPath.cpp884 static int build_arc_points(const SkRect& oval, SkScalar startAngle, argument
889 (0 == startAngle || SkIntToScalar(360) == startAngle)) {
908 start.fY = SkScalarSinCos(SkDegreesToRadians(startAngle), &start.fX);
909 stop.fY = SkScalarSinCos(SkDegreesToRadians(startAngle + sweepAngle),
923 SkScalar stopRad = SkDegreesToRadians(startAngle + sweepAngle);
1323 void SkPath::arcTo(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle, argument
1330 int count = build_arc_points(oval, startAngle, sweepAngle, pts);
1343 void SkPath::addArc(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle) { argument
1356 int count = build_arc_points(oval, startAngle, sweepAngl
[all...]
H A DSkCanvas.cpp2440 void SkCanvas::drawArc(const SkRect& oval, SkScalar startAngle, argument
2450 path.arcTo(oval, startAngle, sweepAngle, !useCenter);
/external/chromium_org/third_party/skia/src/core/
H A DSkCanvas.cpp2371 void SkCanvas::drawArc(const SkRect& oval, SkScalar startAngle, argument
2381 path.arcTo(oval, startAngle, sweepAngle, !useCenter);
H A DSkPath.cpp886 static int build_arc_points(const SkRect& oval, SkScalar startAngle, argument
891 (0 == startAngle || SkIntToScalar(360) == startAngle)) {
910 start.fY = SkScalarSinCos(SkDegreesToRadians(startAngle), &start.fX);
911 stop.fY = SkScalarSinCos(SkDegreesToRadians(startAngle + sweepAngle),
925 SkScalar stopRad = SkDegreesToRadians(startAngle + sweepAngle);
1229 void SkPath::arcTo(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle, argument
1236 int count = build_arc_points(oval, startAngle, sweepAngle, pts);
1249 void SkPath::addArc(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle) { argument
1262 int count = build_arc_points(oval, startAngle, sweepAngl
[all...]
/external/chromium_org/third_party/skia/tests/
H A DPathTest.cpp571 int startAngle)
579 switch (startAngle) {
596 path->arcTo(arcRect, SkIntToScalar(startAngle), SkIntToScalar(90), false);
569 add_corner_arc(SkPath* path, const SkRect& rect, SkScalar xIn, SkScalar yIn, int startAngle) argument
/external/skia/tests/
H A DPathTest.cpp544 int startAngle)
552 switch (startAngle) {
569 path->arcTo(arcRect, SkIntToScalar(startAngle), SkIntToScalar(90), false);
542 add_corner_arc(SkPath* path, const SkRect& rect, SkScalar xIn, SkScalar yIn, int startAngle) argument
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 1001 milliseconds