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

  /external/webkit/WebCore/css/
CSSPrimitiveValue.cpp 22 #include "CSSPrimitiveValue.h"
47 // A more stylish solution than sharing would be to turn CSSPrimitiveValue (or CSSValues in general) into non-virtual,
51 PassRefPtr<CSSPrimitiveValue> CSSPrimitiveValue::createIdentifier(int ident)
53 static RefPtr<CSSPrimitiveValue>* identValueCache = new RefPtr<CSSPrimitiveValue>[numCSSValueKeywords];
55 RefPtr<CSSPrimitiveValue> primitiveValue = identValueCache[ident];
57 primitiveValue = adoptRef(new CSSPrimitiveValue(ident));
62 return adoptRef(new CSSPrimitiveValue(ident));
65 PassRefPtr<CSSPrimitiveValue> CSSPrimitiveValue::createColor(unsigned rgbValue
    [all...]
CSSPrimitiveValue.h 41 class CSSPrimitiveValue : public CSSValue {
88 static bool isUnitTypeLength(int type) { return (type > CSSPrimitiveValue::CSS_PERCENTAGE && type < CSSPrimitiveValue::CSS_DEG) ||
89 type == CSSPrimitiveValue::CSS_REMS; }
91 static PassRefPtr<CSSPrimitiveValue> createIdentifier(int ident);
92 static PassRefPtr<CSSPrimitiveValue> createColor(unsigned rgbValue);
93 static PassRefPtr<CSSPrimitiveValue> create(double value, UnitTypes type);
94 static PassRefPtr<CSSPrimitiveValue> create(const String& value, UnitTypes type);
96 template<typename T> static PassRefPtr<CSSPrimitiveValue> create(T value)
98 return adoptRef(new CSSPrimitiveValue(value))
    [all...]
CSSPrimitiveValueMappings.h 32 #include "CSSPrimitiveValue.h"
45 template<> inline CSSPrimitiveValue::CSSPrimitiveValue(EBorderStyle e)
82 template<> inline CSSPrimitiveValue::operator EBorderStyle() const
87 template<> inline CSSPrimitiveValue::CSSPrimitiveValue(CompositeOperator e)
136 template<> inline CSSPrimitiveValue::operator CompositeOperator() const
173 template<> inline CSSPrimitiveValue::CSSPrimitiveValue(ControlPart e)
320 template<> inline CSSPrimitiveValue::operator ControlPart() cons
    [all...]

Completed in 25 milliseconds