Searched defs:UnitType (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSPrimitiveValue.h74 enum UnitType { enum in class:blink::CSSPrimitiveValue
168 static UnitCategory unitCategory(UnitType);
170 static UnitType fromName(const String& unit);
189 bool isViewportPercentageLength() const { return isViewportPercentageLength(static_cast<UnitType>(m_primitiveUnitType)); }
190 static bool isViewportPercentageLength(UnitType type) { return type >= CSS_VW && type <= CSS_VMAX; }
191 static bool isLength(UnitType type)
208 static bool isDotsPerInch(UnitType type) { return type == CSS_DPI; }
209 static bool isDotsPerPixel(UnitType type) { return type == CSS_DPPX; }
210 static bool isDotsPerCentimeter(UnitType type) { return type == CSS_DPCM; }
211 static bool isResolution(UnitType typ
[all...]

Completed in 678 milliseconds