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

  /external/webkit/Source/WebCore/css/
CSSValue.h 37 enum UnitTypes {
47 // FIXME: Change this to return UnitTypes.
CSSPrimitiveValue.h 52 enum UnitTypes {
115 static PassRefPtr<CSSPrimitiveValue> create(double value, UnitTypes type) { return adoptRef(new CSSPrimitiveValue(value, type)); }
116 static PassRefPtr<CSSPrimitiveValue> create(const String& value, UnitTypes type) { return adoptRef(new CSSPrimitiveValue(value, type)); }
196 CSSPrimitiveValue(double, UnitTypes);
197 CSSPrimitiveValue(const String&, UnitTypes);
214 static PassRefPtr<CSSPrimitiveValue> createUncached(double value, UnitTypes type);
216 static UnitTypes canonicalUnitTypeForCategory(UnitCategory category);
222 bool getDoubleValueInternal(UnitTypes targetUnitType, double* result) const;

Completed in 322 milliseconds