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

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAngle.idl 31 readonly attribute unsigned short unitType;
37 [StrictTypeChecking, RaisesException] void newValueSpecifiedUnits(unsigned short unitType, float valueInSpecifiedUnits);
39 [StrictTypeChecking, RaisesException] void convertToSpecifiedUnits(unsigned short unitType);
SVGAngle.cpp 138 static bool parseValue(const String& value, float& valueInSpecifiedUnits, SVGAngle::SVGAngleType& unitType)
146 unitType = stringToAngleType(ptr, end);
147 if (unitType == SVGAngle::SVG_ANGLETYPE_UNKNOWN)
161 SVGAngleType unitType = SVG_ANGLETYPE_UNKNOWN;
163 bool success = value.is8Bit() ? parseValue<LChar>(value, valueInSpecifiedUnits, unitType)
164 : parseValue<UChar>(value, valueInSpecifiedUnits, unitType);
170 m_unitType = unitType;
174 void SVGAngle::newValueSpecifiedUnits(unsigned short unitType, float valueInSpecifiedUnits, ExceptionState& es)
176 if (unitType == SVG_ANGLETYPE_UNKNOWN || unitType > SVG_ANGLETYPE_GRAD)
    [all...]
SVGAngle.h 44 SVGAngleType unitType() const { return m_unitType; }
55 void newValueSpecifiedUnits(unsigned short unitType, float valueInSpecifiedUnits, ExceptionState&);
56 void convertToSpecifiedUnits(unsigned short unitType, ExceptionState&);
SVGLength.idl 37 readonly attribute unsigned short unitType;
43 [StrictTypeChecking, RaisesException] void newValueSpecifiedUnits(unsigned short unitType,
46 [Custom, StrictTypeChecking, RaisesException] void convertToSpecifiedUnits(unsigned short unitType);
GradientAttributes.h 49 void setGradientUnits(SVGUnitTypes::SVGUnitType unitType)
51 m_gradientUnits = unitType;
SVGAnimatedLengthList.cpp 115 SVGLengthType unitType = toLengthList[i].unitType();
119 unitType = fromLengthList[i].unitType();
125 animatedLengthList[i].setValue(lengthContext, animatedNumber, m_lengthMode, unitType, ASSERT_NO_EXCEPTION);
SVGAnimatedLength.cpp 105 SVGLengthType unitType = percentage < 0.5 ? fromSVGLength.unitType() : toSVGLength.unitType();
108 animatedSVGLength.setValue(lengthContext, animatedNumber, m_lengthMode, unitType, ASSERT_NO_EXCEPTION);
SVGLength.h 63 SVGLengthType unitType() const;
91 SVGLengthType type = unitType();
106 SVGLengthType toType = unitType();
107 SVGLengthType fromType = from.unitType();
SVGLength.cpp 128 SVGLength::SVGLength(const SVGLengthContext& context, float value, SVGLengthMode mode, SVGLengthType unitType)
130 , m_unit(storeUnit(mode, unitType))
174 SVGLengthType SVGLength::unitType() const
194 void SVGLength::setValue(const SVGLengthContext& context, float value, SVGLengthMode mode, SVGLengthType unitType, ExceptionState& es)
196 m_unit = storeUnit(mode, unitType);
351 switch (length.unitType()) {
SVGSVGElement.cpp 640 if (widthCurrentValue().unitType() == LengthTypePercentage)
654 if (heightCurrentValue().unitType() == LengthTypePercentage)
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableNumber.h 66 static PassRefPtr<AnimatableNumber> create(double number, NumberUnitType unitType, CSSPrimitiveValue* cssPrimitiveValue = 0)
68 return adoptRef(new AnimatableNumber(number, unitType, cssPrimitiveValue));
79 AnimatableNumber(double number, NumberUnitType unitType, CSSPrimitiveValue* cssPrimitiveValue)
82 , m_unitType(unitType)
AnimatableNumber.cpp 49 NumberUnitType unitType = primitiveUnitToNumberType(primitiveValue->primitiveType());
50 ASSERT(unitType != UnitTypeInvalid);
52 return create(primitiveValue->getDoubleValue() * scale, unitType, primitiveValue);
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSPrimitiveValue.h 265 double getDoubleValue(unsigned short unitType, ExceptionState&) const;
266 double getDoubleValue(unsigned short unitType) const;
269 void setFloatValue(unsigned short unitType, double floatValue, ExceptionState&);
270 float getFloatValue(unsigned short unitType, ExceptionState& es) const { return getValue<float>(unitType, es); }
271 float getFloatValue(unsigned short unitType) const { return getValue<float>(unitType); }
274 int getIntValue(unsigned short unitType, ExceptionState& es) const { return getValue<int>(unitType, es); }
275 int getIntValue(unsigned short unitType) const { return getValue<int>(unitType);
    [all...]
CSSPrimitiveValue.idl 57 [RaisesException] void setFloatValue([Default=Undefined] optional unsigned short unitType,
59 [RaisesException] float getFloatValue([Default=Undefined] optional unsigned short unitType);
CSSPrimitiveValue.cpp 55 static inline bool isValidCSSUnitTypeForDoubleConversion(CSSPrimitiveValue::UnitTypes unitType)
57 switch (unitType) {
603 double CSSPrimitiveValue::conversionToCanonicalUnitsScaleFactor(unsigned short unitType)
607 switch (unitType) {
655 double CSSPrimitiveValue::getDoubleValue(unsigned short unitType, ExceptionState& es) const
658 bool success = getDoubleValueInternal(static_cast<UnitTypes>(unitType), &result);
667 double CSSPrimitiveValue::getDoubleValue(unsigned short unitType) const
670 getDoubleValueInternal(static_cast<UnitTypes>(unitType), &result);
747 // Now convert from canonical type to the target unitType.
    [all...]
CSSParser-in.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8SVGLengthCustom.cpp 91 V8TRYCATCH_VOID(int, unitType, toUInt32(args[0]));
93 imp.convertToSpecifiedUnits(unitType, lengthContext, es);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextLayoutEngineSpacing.cpp 89 if (kerningLength.unitType() == LengthTypePercentage)
SVGTextLayoutEngineBaseline.cpp 42 if (baselineShiftValueLength.unitType() == LengthTypePercentage)
SVGRenderTreeAsText.cpp 165 static TextStream& operator<<(TextStream& ts, const SVGUnitTypes::SVGUnitType& unitType)
167 ts << SVGPropertyTraits<SVGUnitTypes::SVGUnitType>::toString(unitType);
  /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 2095 milliseconds