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& exceptionState)
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 139 SVGLength::SVGLength(const SVGLengthContext& context, float value, SVGLengthMode mode, SVGLengthType unitType)
141 , m_unit(storeUnit(mode, unitType))
185 SVGLengthType SVGLength::unitType() const
205 void SVGLength::setValue(const SVGLengthContext& context, float value, SVGLengthMode mode, SVGLengthType unitType, ExceptionState& exceptionState)
207 m_unit = storeUnit(mode, unitType);
362 switch (length.unitType()) {
SVGSVGElement.cpp 643 if (widthCurrentValue().unitType() == LengthTypePercentage)
657 if (heightCurrentValue().unitType() == LengthTypePercentage)
  /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& exceptionState) const { return getValue<float>(unitType, exceptionState); }
271 float getFloatValue(unsigned short unitType) const { return getValue<float>(unitType); }
274 int getIntValue(unsigned short unitType, ExceptionState& exceptionState) const { return getValue<int>(unitType, exceptionState); }
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 53 static inline bool isValidCSSUnitTypeForDoubleConversion(CSSPrimitiveValue::UnitTypes unitType)
55 switch (unitType) {
630 double CSSPrimitiveValue::conversionToCanonicalUnitsScaleFactor(unsigned short unitType)
634 switch (unitType) {
682 double CSSPrimitiveValue::getDoubleValue(unsigned short unitType, ExceptionState& exceptionState) const
685 bool success = getDoubleValueInternal(static_cast<UnitTypes>(unitType), &result);
694 double CSSPrimitiveValue::getDoubleValue(unsigned short unitType) const
697 getDoubleValueInternal(static_cast<UnitTypes>(unitType), &result);
774 // Now convert from canonical type to the target unitType.
    [all...]
CSSParser-in.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableLength.h 67 static PassRefPtr<AnimatableLength> create(double number, NumberUnitType unitType, CSSPrimitiveValue* cssPrimitiveValue = 0)
69 return adoptRef(new AnimatableLength(number, unitType, cssPrimitiveValue));
83 AnimatableLength(double number, NumberUnitType unitType, CSSPrimitiveValue* cssPrimitiveValue)
85 , m_unitType(unitType)
AnimatableLength.cpp 48 NumberUnitType unitType;
49 bool isPrimitiveLength = primitiveUnitToNumberType(primitiveValue->primitiveType(), unitType);
52 return create(primitiveValue->getDoubleValue() * scale, unitType, primitiveValue);
70 NumberUnitType unitType;
72 return primitiveUnitToNumberType(primitiveValue->primitiveType(), unitType);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8SVGLengthCustom.cpp 94 V8TRYCATCH_VOID(int, unitType, toUInt32(info[0]));
96 imp.convertToSpecifiedUnits(unitType, lengthContext, exceptionState);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextLayoutEngineSpacing.cpp 86 if (kerningLength.unitType() == LengthTypePercentage)
SVGTextLayoutEngineBaseline.cpp 42 if (baselineShiftValueLength.unitType() == LengthTypePercentage)
SVGRenderTreeAsText.cpp 157 static TextStream& operator<<(TextStream& ts, const SVGUnitTypes::SVGUnitType& unitType)
159 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 62 milliseconds