Home
last modified time | relevance | path

Searched refs:fHasBackground (Results 1 – 8 of 8) sorted by relevance

/third_party/skia/modules/skparagraph/src/
DTextStyle.cpp16 fHasBackground = other.fHasBackground; in TextStyle()
69 if (fHasBackground != other.fHasBackground || fBackground != other.fBackground) { in equals()
113 return (!fHasBackground && !other.fHasBackground) || in matchOneAttribute()
114 ( fHasBackground && other.fHasBackground && fBackground == other.fBackground); in matchOneAttribute()
DTextLine.h152 bool fHasBackground; variable
DTextLine.cpp106 , fHasBackground(false) in TextLine()
123 fHasBackground = true; in TextLine()
171 if (fHasBackground) { in paint()
/third_party/flutter/skia/modules/skparagraph/src/
DTextStyle.cpp25 fHasBackground = false; in TextStyle()
62 if (fHasBackground != other.fHasBackground || fBackground != other.fBackground) { in equals()
88 return (fHasBackground == other.fHasBackground && fBackground == other.fBackground); in matchOneAttribute()
DTextLine.h123 bool fHasBackground; variable
DTextLine.cpp56 , fHasBackground(false) in TextLine()
67 fHasBackground = true; in TextLine()
101 if (fHasBackground) { in paint()
/third_party/flutter/skia/modules/skparagraph/include/
DTextStyle.h83 bool hasBackground() const { return fHasBackground; } in hasBackground()
86 fHasBackground = true; in setBackgroundColor()
89 void clearBackgroundColor() { fHasBackground = false; } in clearBackgroundColor()
162 bool fHasBackground; variable
/third_party/skia/modules/skparagraph/include/
DTextStyle.h170 bool hasBackground() const { return fHasBackground; } in hasBackground()
173 fHasBackground = true; in setBackgroundColor()
176 void clearBackgroundColor() { fHasBackground = false; } in clearBackgroundColor()
282 bool fHasBackground = false; variable