HomeSort by relevance Sort by last modified time
    Searched refs:endAngle (Results 1 - 16 of 16) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/openvg/
PathOpenVG.cpp 305 void Path::addArc(const FloatPoint& center, float radius, float startAngle, float endAngle, bool anticlockwise)
310 if (!isfinite(radius) || !isfinite(startAngle) || !isfinite(endAngle))
317 endAngle = fmod((2.0 * piDouble) - endAngle, 2.0 * piDouble);
319 // Make it so that endAngle > startAngle. fmod() above takes care of
321 if (endAngle <= startAngle)
322 endAngle += 2.0 * piDouble;
325 ? (endAngle - startAngle)
326 : (startAngle - endAngle + (2.0 * piDouble));
339 // (Set angle = {startAngle, endAngle} to retrieve the respective endpoints.
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/cairo/
PathCairo.cpp 147 void Path::addArc(const FloatPoint& p, float r, float startAngle, float endAngle, bool anticlockwise)
151 if (!isfinite(r) || !isfinite(startAngle) || !isfinite(endAngle))
155 float sweep = endAngle - startAngle;
158 && ((anticlockwise && (endAngle < startAngle)) || (!anticlockwise && (startAngle < endAngle)))) {
164 cairo_arc(cr, p.x(), p.y(), r, endAngle, endAngle);
167 cairo_arc_negative(cr, p.x(), p.y(), r, startAngle, endAngle);
169 cairo_arc(cr, p.x(), p.y(), r, startAngle, endAngle);
  /external/webkit/Source/WebCore/platform/graphics/wx/
PathWx.cpp 188 void Path::addArc(const FloatPoint& point, float radius, float startAngle, float endAngle, bool clockwise)
192 m_path->AddArc(point.x(), point.y(), radius, startAngle, endAngle, clockwise);
  /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/webkit/Source/WebCore/platform/graphics/
Path.h 136 void addArc(const FloatPoint&, float radius, float startAngle, float endAngle, bool anticlockwise);
  /external/webkit/Source/WebCore/platform/graphics/wince/
PlatformPathWinCE.cpp 217 double endAngle = data.m_end - data.m_center;
220 if (endAngle <= curAngle || startPoint == data.m_end)
221 endAngle += 2 * piDouble;
224 if (endAngle >= curAngle || startPoint == data.m_end)
225 endAngle -= 2 * piDouble;
228 for (curAngle += angleStep; data.m_clockwise ? curAngle < endAngle : curAngle > endAngle; curAngle += angleStep)
  /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/quake/quake/src/QW/scitech/include/
mgraph.h     [all...]
  /external/quake/quake/src/WinQuake/scitech/INCLUDE/
MGRAPH.H     [all...]
  /external/webkit/Source/WebCore/html/canvas/
CanvasRenderingContext2D.idl 74 void arc(in float x, in float y, in float radius, in float startAngle, in float endAngle, in boolean anticlockwise)
  /packages/apps/Gallery2/src/com/android/camera/ui/
PieRenderer.java 791 float endAngle = getArcCenter(to, getItemPos(to), count)
793 mSlice = new LinearAnimation(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 

Completed in 518 milliseconds