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

  /external/webkit/WebCore/svg/
SVGAngle.idl 33 readonly attribute unsigned short unitType;
38 void newValueSpecifiedUnits(in unsigned short unitType,
40 void convertToSpecifiedUnits(in unsigned short unitType);
SVGAngle.cpp 41 SVGAngle::SVGAngleType SVGAngle::unitType() const
120 void SVGAngle::newValueSpecifiedUnits(unsigned short unitType, float valueInSpecifiedUnits)
122 m_unitType = (SVGAngleType)unitType;
127 void SVGAngle::convertToSpecifiedUnits(unsigned short unitType)
129 if (m_unitType == unitType)
132 if (m_unitType == SVG_ANGLETYPE_DEG && unitType == SVG_ANGLETYPE_RAD)
134 else if (m_unitType == SVG_ANGLETYPE_GRAD && unitType == SVG_ANGLETYPE_RAD)
136 else if (m_unitType == SVG_ANGLETYPE_DEG && unitType == SVG_ANGLETYPE_GRAD)
138 else if (m_unitType == SVG_ANGLETYPE_RAD && unitType == SVG_ANGLETYPE_GRAD)
140 else if (m_unitType == SVG_ANGLETYPE_RAD && unitType == SVG_ANGLETYPE_DEG
    [all...]
SVGAngle.h 43 SVGAngleType unitType() const;
54 void newValueSpecifiedUnits(unsigned short unitType, float valueInSpecifiedUnits);
55 void convertToSpecifiedUnits(unsigned short unitType);
SVGLength.idl 39 readonly attribute unsigned short unitType;
44 void newValueSpecifiedUnits(in unsigned short unitType,
47 [Custom] void convertToSpecifiedUnits(in unsigned short unitType);
SVGLength.h 70 SVGLengthType unitType() const;
91 SVGLengthType type = unitType();
SVGSVGElement.cpp 133 if (w.unitType() != LengthTypePercentage)
142 if (h.unitType() != LengthTypePercentage)
SVGLength.cpp 121 SVGLengthType SVGLength::unitType() const
  /external/webkit/WebCore/css/
CSSPrimitiveValue.h 132 double getDoubleValue(unsigned short unitType, ExceptionCode&);
133 double getDoubleValue(unsigned short unitType);
136 void setFloatValue(unsigned short unitType, double floatValue, ExceptionCode&);
137 float getFloatValue(unsigned short unitType, ExceptionCode& ec) { return static_cast<float>(getDoubleValue(unitType, ec)); }
138 float getFloatValue(unsigned short unitType) { return static_cast<float>(getDoubleValue(unitType)); }
141 int getIntValue(unsigned short unitType, ExceptionCode& ec) { return static_cast<int>(getDoubleValue(unitType, ec)); }
142 int getIntValue(unsigned short unitType) { return static_cast<int>(getDoubleValue(unitType));
    [all...]
CSSPrimitiveValue.idl 54 [OldStyleObjC] void setFloatValue(in unsigned short unitType,
57 float getFloatValue(in unsigned short unitType)
CSSParser.cpp     [all...]
  /external/webkit/WebCore/svg/graphics/
SVGImage.cpp 142 if (width.unitType() == LengthTypePercentage)
147 if (height.unitType() == LengthTypePercentage)
163 return rootElement->width().unitType() == LengthTypePercentage;
174 return rootElement->height().unitType() == LengthTypePercentage;
  /external/webkit/WebCore/rendering/
RenderSVGRoot.cpp 185 float viewportWidth = (width.unitType() == LengthTypePercentage) ? svg->relativeWidthValue() : width.value(svg);
186 float viewportHeight = (height.unitType() == LengthTypePercentage) ? svg->relativeHeightValue() : height.value(svg);
  /external/webkit/WebCore/bindings/objc/
PublicDOMInterfaces.h     [all...]
  /prebuilt/common/jfreechart/
jcommon-1.0.12.jar 

Completed in 109 milliseconds