Lines Matching full:short
105 unsigned short primitiveType() const { return m_type; }
123 short computeLengthShort(RenderStyle* currStyle, RenderStyle* rootStyle);
124 short computeLengthShort(RenderStyle* currStyle, RenderStyle* rootStyle, double multiplier);
130 void setPrimitiveType(unsigned short type) { m_type = type; }
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)); }
145 void setStringValue(unsigned short stringType, const String& stringValue, ExceptionCode&);
201 virtual unsigned short cssValueType() const;