HomeSort by relevance Sort by last modified time
    Searched defs:ellipse (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/css/
BasicShapeFunctions.cpp 71 const BasicShapeEllipse* ellipse = static_cast<const BasicShapeEllipse*>(basicShape); local
74 ellipseValue->setCenterX(cssValuePool().createValue(ellipse->centerX()));
75 ellipseValue->setCenterY(cssValuePool().createValue(ellipse->centerY()));
76 ellipseValue->setRadiusX(cssValuePool().createValue(ellipse->radiusX()));
77 ellipseValue->setRadiusY(cssValuePool().createValue(ellipse->radiusY()));
159 RefPtr<BasicShapeEllipse> ellipse = BasicShapeEllipse::create(); local
161 ellipse->setCenterX(convertToLength(state, ellipseValue->centerX()));
162 ellipse->setCenterY(convertToLength(state, ellipseValue->centerY()));
163 ellipse->setRadiusX(convertToLength(state, ellipseValue->radiusX()));
164 ellipse->setRadiusY(convertToLength(state, ellipseValue->radiusY()))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGEllipse.cpp 91 SVGEllipseElement* ellipse = static_cast<SVGEllipseElement*>(node()); local
93 SVGLengthContext lengthContext(ellipse);
94 m_radii = FloatSize(ellipse->rxCurrentValue().value(lengthContext), ellipse->ryCurrentValue().value(lengthContext));
95 m_center = FloatPoint(ellipse->cxCurrentValue().value(lengthContext), ellipse->cyCurrentValue().value(lengthContext));
131 // This works by checking if the point satisfies the ellipse equation,
150 // This works by checking if the point satisfies the ellipse equation.
SVGPathData.cpp 51 SVGEllipseElement* ellipse = static_cast<SVGEllipseElement*>(element); local
54 float rx = ellipse->rxCurrentValue().value(lengthContext);
57 float ry = ellipse->ryCurrentValue().value(lengthContext);
60 path.addEllipse(FloatRect(ellipse->cxCurrentValue().value(lengthContext) - rx, ellipse->cyCurrentValue().value(lengthContext) - ry, rx * 2, ry * 2));
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
Shape.cpp 143 const BasicShapeEllipse* ellipse = static_cast<const BasicShapeEllipse*>(basicShape); local
144 float centerX = floatValueForLength(ellipse->centerX(), boxWidth);
145 float centerY = floatValueForLength(ellipse->centerY(), boxHeight);
146 float radiusX = floatValueForLength(ellipse->radiusX(), boxWidth);
147 float radiusY = floatValueForLength(ellipse->radiusY(), boxHeight);
  /prebuilts/devtools/tools/lib/
jcommon-1.0.12.jar 
  /prebuilts/tools/common/jfreechart/
jcommon-1.0.12.jar 
  /prebuilts/tools/common/m2/repository/jfree/jcommon/1.0.12/
jcommon-1.0.12.jar 

Completed in 208 milliseconds