Home
last modified time | relevance | path

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

/external/skia/modules/skparagraph/src/
DTextStyle.cpp26 fHasForeground = false; in TextStyle()
38 fHasForeground = other.fHasForeground; in TextStyle()
79 if (fHasForeground != other.fHasForeground || fForeground != other.fForeground) { in equals()
121 if (fHasForeground) { in matchOneAttribute()
122 return other.fHasForeground && fForeground == other.fForeground; in matchOneAttribute()
124 return !other.fHasForeground && fColor == other.fColor; in matchOneAttribute()
/external/skia/modules/skparagraph/include/
DTextStyle.h165 bool hasForeground() const { return fHasForeground; } in hasForeground()
168 fHasForeground = true; in setForegroundColor()
171 void clearForegroundColor() { fHasForeground = false; } in clearForegroundColor()
265 bool fHasForeground; variable