Lines Matching refs:TextStyle
184 class TextStyle {
186 TextStyle() = default;
187 TextStyle(const TextStyle& other) = default;
188 TextStyle& operator=(const TextStyle& other) = default;
190 TextStyle cloneForPlaceholder();
192 bool equals(const TextStyle& other) const;
193 bool equalsByFonts(const TextStyle& that) const;
194 bool matchOneAttribute(StyleType styleType, const TextStyle& other) const;
195 bool operator==(const TextStyle& rhs) const { return this->equals(rhs); }
282 // The contents of the SkFontArguments will be copied into the TextStyle,
405 Block(size_t start, size_t end, const TextStyle& style) : fRange(start, end), fStyle(style) {}
406 Block(TextRange textRange, const TextStyle& style) : fRange(textRange), fStyle(style) {}
414 TextStyle fStyle;
425 Placeholder(size_t start, size_t end, const PlaceholderStyle& style, const TextStyle& textStyle,
435 TextStyle fTextStyle;