Home | History | Annotate | Download | only in css

Lines Matching refs:unitType

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)); }