Home
last modified time | relevance | path

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

/third_party/skia/modules/skparagraph/src/
DTextStyle.cpp19 result.fHasForeground = fHasForeground; in cloneForPlaceholder()
75 if (fHasForeground != other.fHasForeground || fForeground != other.fForeground) { in equals()
122 return (!fHasForeground && !other.fHasForeground && fColor == other.fColor) || in matchOneAttribute()
123 ( fHasForeground && other.fHasForeground && fForeground == other.fForeground); in matchOneAttribute()
/third_party/skia/modules/skparagraph/include/
DTextStyle.h176 bool hasForeground() const { return fHasForeground; } in hasForeground()
185 fHasForeground = true; in setForegroundPaint()
193 fHasForeground = true; in setForegroundPaintID()
196 void clearForegroundColor() { fHasForeground = false; } in clearForegroundColor()
338 bool fHasForeground = false; variable