Home
last modified time | relevance | path

Searched refs:color_token (Results 1 – 3 of 3) sorted by relevance

/dports/editors/libreoffice/libreoffice-7.2.6.2/oox/source/drawingml/chart/
H A Dobjectformatter.cxx61 #define AUTOFORMAT_PATTERN_COLOR( color_token ) \ argument
62 { color_token, XML_TOKEN_INVALID, 0 }
64 #define AUTOFORMAT_PATTERN_COLORMOD( color_token, mod_token, mod_value ) \ argument
65 { color_token, mod_token, mod_value }
131 #define AUTOFORMAT_COLOR( first, last, themed_style, color_token ) \ argument
132 { first, last, themed_style, color_token, XML_TOKEN_INVALID, 0, 100, nullptr, false }
134 #define AUTOFORMAT_COLORMOD( first, last, themed_style, color_token, mod_token, mod_value ) \ argument
135 { first, last, themed_style, color_token, mod_token, mod_value, 100, nullptr, false }
148 #define AUTOFORMAT_FADED( first, last, themed_style, color_token, line_width ) \ argument
149 { first, last, themed_style, color_token, XML_TOKEN_INVALID, 0, line_width, nullptr, true }
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/oox/source/drawingml/chart/
H A Dobjectformatter.cxx61 #define AUTOFORMAT_PATTERN_COLOR( color_token ) \ argument
62 { color_token, XML_TOKEN_INVALID, 0 }
64 #define AUTOFORMAT_PATTERN_COLORMOD( color_token, mod_token, mod_value ) \ argument
65 { color_token, mod_token, mod_value }
131 #define AUTOFORMAT_COLOR( first, last, themed_style, color_token ) \ argument
132 { first, last, themed_style, color_token, XML_TOKEN_INVALID, 0, 100, nullptr, false }
134 #define AUTOFORMAT_COLORMOD( first, last, themed_style, color_token, mod_token, mod_value ) \ argument
135 { first, last, themed_style, color_token, mod_token, mod_value, 100, nullptr, false }
148 #define AUTOFORMAT_FADED( first, last, themed_style, color_token, line_width ) \ argument
149 { first, last, themed_style, color_token, XML_TOKEN_INVALID, 0, line_width, nullptr, true }
[all …]
/dports/sysutils/onefetch/onefetch-2.10.2/src/ui/
H A Dascii_art.rs89 color_token(self.0).or_else(|| space_token(self.0)).or_else(|| char_token(self.0))?; in next()
208 fn color_token(s: &str) -> ParseResult<Token> { in color_token() function
239 assert_eq!(color_token("{1}"), Some(("", Token::Color(1)))); in color_indicator_parses()
240 assert_eq!(color_token("{9} "), Some((" ", Token::Color(9)))); in color_indicator_parses()