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

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAngleTearOff.h 58 unsigned short unitType() { return hasExposedAngleUnit() ? target()->unitType() : SVGAngle::SVG_ANGLETYPE_UNKNOWN; }
66 void newValueSpecifiedUnits(unsigned short unitType, float valueInSpecifiedUnits, ExceptionState&);
67 void convertToSpecifiedUnits(unsigned short unitType, ExceptionState&);
75 bool hasExposedAngleUnit() { return target()->unitType() <= SVGAngle::SVG_ANGLETYPE_GRAD; }
SVGLengthTearOff.cpp 50 SVGLengthType SVGLengthTearOff::unitType()
52 return target()->unitType();
109 void SVGLengthTearOff::newValueSpecifiedUnits(unsigned short unitType, float valueInSpecifiedUnits, ExceptionState& exceptionState)
116 if (unitType == LengthTypeUnknown || unitType > LengthTypePC) {
117 exceptionState.throwDOMException(NotSupportedError, "Cannot set value with unknown or invalid units (" + String::number(unitType) + ").");
121 target()->newValueSpecifiedUnits(toSVGLengthType(unitType), valueInSpecifiedUnits);
125 void SVGLengthTearOff::convertToSpecifiedUnits(unsigned short unitType, ExceptionState& exceptionState)
132 if (unitType == LengthTypeUnknown || unitType > LengthTypePC)
    [all...]
SVGLength.h 55 SVGLengthType unitType() const { return static_cast<SVGLengthType>(m_unitType); }
SVGAngle.cpp 93 SVGAngle::SVGAngle(SVGAngleType unitType, float valueInSpecifiedUnits, SVGMarkerOrientType orientType)
94 : m_unitType(unitType)
213 static bool parseValue(const String& value, float& valueInSpecifiedUnits, SVGAngle::SVGAngleType& unitType)
221 unitType = stringToAngleType(ptr, end);
222 if (unitType == SVGAngle::SVG_ANGLETYPE_UNKNOWN)
247 SVGAngleType unitType = SVG_ANGLETYPE_UNKNOWN;
249 bool success = value.is8Bit() ? parseValue<LChar>(value, valueInSpecifiedUnits, unitType)
250 : parseValue<UChar>(value, valueInSpecifiedUnits, unitType);
257 m_unitType = unitType;
261 void SVGAngle::newValueSpecifiedUnits(SVGAngleType unitType, float valueInSpecifiedUnits
    [all...]
SVGAngle.h 84 SVGAngleType unitType() const { return m_unitType; }
92 void newValueSpecifiedUnits(SVGAngleType unitType, float valueInSpecifiedUnits);
93 void convertToSpecifiedUnits(SVGAngleType unitType, ExceptionState&);
SVGLengthList.cpp 155 SVGLengthType unitType = toList->at(i)->unitType();
159 unitType = fromList->at(i)->unitType();
166 at(i)->setUnitType(unitType);
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
MediaQueryToken.h 69 CSSPrimitiveValue::UnitType unitType() const { return m_unit; }
79 CSSPrimitiveValue::UnitType m_unit;
CSSPropertyParser.cpp 331 return cssValuePool().createValue(value->fValue, static_cast<CSSPrimitiveValue::UnitType>(value->unit));
    [all...]
  /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 190 milliseconds