Home
last modified time | relevance | path

Searched refs:DeclaredValueOwned (Results 1 – 2 of 2) sorted by relevance

/dports/lang/spidermonkey60/firefox-60.9.0/servo/tests/unit/style/
H A Dstylesheets.rs22 use style::properties::{DeclaredValueOwned, Importance};
118 value: DeclaredValueOwned::CSSWideKeyword(CSSWideKeyword::Inherit), in test_parse_stylesheet()
/dports/lang/spidermonkey60/firefox-60.9.0/servo/components/style/properties/
H A Dproperties.mako.rs1327 pub enum DeclaredValueOwned<T> { enum
1339 impl<T> DeclaredValueOwned<T> { impl
1343 DeclaredValueOwned::Value(ref v) => DeclaredValue::Value(v), in borrow()
1344 DeclaredValueOwned::WithVariables(ref v) => DeclaredValue::WithVariables(v), in borrow()
1345 DeclaredValueOwned::CSSWideKeyword(v) => DeclaredValue::CSSWideKeyword(v), in borrow()
1736 pub value: DeclaredValueOwned<Arc<::custom_properties::SpecifiedValue>>,
1916 Ok(keyword) => DeclaredValueOwned::CSSWideKeyword(keyword), in parse_into()
1918 Ok(value) => DeclaredValueOwned::Value(value), in parse_into()