/external/chromium_org/third_party/WebKit/Source/core/html/canvas/ |
CanvasPathMethods.cpp | 136 float adjustEndAngle(float startAngle, float endAngle, bool anticlockwise) 139 float newEndAngle = endAngle; 141 * If the anticlockwise argument is false and endAngle-startAngle is equal to or greater than 2pi, or, 142 * if the anticlockwise argument is true and startAngle-endAngle is equal to or greater than 2pi, 146 if (!anticlockwise && endAngle - startAngle >= twoPi) 148 else if (anticlockwise && startAngle - endAngle >= twoPi) 157 /* NOTE: When startAngle = 0, endAngle = 2Pi and anticlockwise = true, the spec does not indicate clearly. 161 else if (!anticlockwise && startAngle > endAngle) 162 newEndAngle = startAngle + (twoPi - fmodf(startAngle - endAngle, twoPi)); 163 else if (anticlockwise && startAngle < endAngle) [all...] |
CanvasPathMethods.h | 49 void arc(float x, float y, float radius, float startAngle, float endAngle, bool anticlockwise, ExceptionState&); 50 void ellipse(float x, float y, float radiusX, float radiusY, float rotation, float startAngle, float endAngle, bool anticlockwise, ExceptionState&);
|
Path.idl | 66 [Default=Undefined] optional float endAngle,
|
CanvasRenderingContext2D.idl | 80 [RaisesException] void arc(float x, float y, float radius, float startAngle, float endAngle, [Default=Undefined] optional boolean anticlockwise); 81 [RaisesException] void ellipse(float x, float y, float radiusX, float radiusY, float rotation, float startAngle, float endAngle, boolean anticlockwise);
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
Path.h | 105 void addArc(const FloatPoint&, float radius, float startAngle, float endAngle, bool anticlockwise); 107 void addEllipse(const FloatPoint&, float radiusX, float radiusY, float rotation, float startAngle, float endAngle, bool anticlockwise); 128 void addEllipse(const FloatPoint&, float radiusX, float radiusY, float startAngle, float endAngle, bool anticlockwise); 134 PLATFORM_EXPORT bool ellipseIsRenderable(float startAngle, float endAngle);
|
Path.cpp | 279 void Path::addEllipse(const FloatPoint& p, float radiusX, float radiusY, float startAngle, float endAngle, bool anticlockwise) 281 ASSERT(ellipseIsRenderable(startAngle, endAngle)); 283 ASSERT((anticlockwise && (startAngle - endAngle) >= 0) || (!anticlockwise && (endAngle - startAngle) >= 0)); 293 float sweep = endAngle - startAngle; 317 void Path::addArc(const FloatPoint& p, float radius, float startAngle, float endAngle, bool anticlockwise) 319 addEllipse(p, radius, radius, startAngle, endAngle, anticlockwise); 327 void Path::addEllipse(const FloatPoint& p, float radiusX, float radiusY, float rotation, float startAngle, float endAngle, bool anticlockwise) 329 ASSERT(ellipseIsRenderable(startAngle, endAngle)); 331 ASSERT((anticlockwise && (startAngle - endAngle) >= 0) || (!anticlockwise && (endAngle - startAngle) >= 0)) [all...] |
/packages/apps/Settings/src/com/android/settings/widget/ |
PieChartView.java | 173 final int endAngle = startAngle + sweepAngle; 176 final float endAngleMod = endAngle % 360; 189 final float endAngleSide = endSideVisible ? endAngle : 270;
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/ |
PolygonShape.cpp | 116 float endAngle = atan2(endArcVertex.y() - arcCenter.y(), endArcVertex.x() - arcCenter.x()); 120 if (endAngle < 0) 121 endAngle += twoPI; 122 float angle = (startAngle > endAngle) ? (startAngle - endAngle) : (startAngle + twoPI - endAngle);
|
/frameworks/ex/carousel/java/com/android/ex/carousel/ |
CarouselController.java | 626 * @param endAngle the card unit to which the carousel should rotate to 634 * If the current position is further away, it is set at maxAnimatedArc from endAngle. 637 public void setCarouselRotationAngle(float endAngle, int milliseconds, int interpolationMode, 640 mRenderScript.setCarouselRotationAngle(endAngle, milliseconds,
|
carousel.rs | 722 const float endAngle = startAngle + visibleSlotCount * wedgeAngle; 738 positionAlpha = (endAngle - cardPosition(i)) / wedgeAngle; [all...] |
CarouselRS.java | 638 public void setCarouselRotationAngle(float endAngle, int milliseconds, int interpolationMode, 640 mScript.invoke_setCarouselRotationAngle2(endAngle, milliseconds, interpolationMode, [all...] |
/external/chromium_org/chrome/common/extensions/docs/examples/api/downloads/download_manager/ |
background.js | 26 function drawProgressArc(ctx, startAngle, endAngle) { 31 ctx.arc(center, center, center * 0.9, startAngle, endAngle, false);
|
/packages/apps/Camera2/src/com/android/camera/ui/ |
PieRenderer.java | 823 float endAngle = getArcCenter(to, getItemPos(to), count) 826 mSlice.setFloatValues(startAngle, endAngle); [all...] |
/prebuilts/devtools/tools/lib/ |
jfreechart-1.0.9.jar | |
/prebuilts/tools/common/jfreechart/ |
jfreechart-1.0.9.jar | |
/prebuilts/tools/common/m2/repository/jfree/jfreechart/1.0.9/ |
jfreechart-1.0.9.jar | |