Lines Matching refs:fStyle
103 hash = mix(hash, SkGoodHash()(relax(ph.fStyle.fHeight))); in computeHash()
104 hash = mix(hash, SkGoodHash()(relax(ph.fStyle.fWidth))); in computeHash()
105 hash = mix(hash, SkGoodHash()(ph.fStyle.fAlignment)); in computeHash()
106 hash = mix(hash, SkGoodHash()(ph.fStyle.fBaseline)); in computeHash()
107 if (ph.fStyle.fAlignment == PlaceholderAlignment::kBaseline) { in computeHash()
108 hash = mix(hash, SkGoodHash()(relax(ph.fStyle.fBaselineOffset))); in computeHash()
113 if (ts.fStyle.isPlaceholder()) { in computeHash()
116 hash = mix(hash, SkGoodHash()(relax(ts.fStyle.getLetterSpacing()))); in computeHash()
117 hash = mix(hash, SkGoodHash()(relax(ts.fStyle.getWordSpacing()))); in computeHash()
118 hash = mix(hash, SkGoodHash()(ts.fStyle.getLocale())); in computeHash()
119 hash = mix(hash, SkGoodHash()(relax(ts.fStyle.getHeight()))); in computeHash()
120 hash = mix(hash, SkGoodHash()(relax(ts.fStyle.getBaselineShift()))); in computeHash()
121 for (auto& ff : ts.fStyle.getFontFamilies()) { in computeHash()
124 for (auto& ff : ts.fStyle.getFontFeatures()) { in computeHash()
128 hash = mix(hash, SkGoodHash()(ts.fStyle.getFontStyle())); in computeHash()
129 hash = mix(hash, SkGoodHash()(relax(ts.fStyle.getFontSize()))); in computeHash()
186 if (tsa.fStyle.isPlaceholder()) { in operator ==()
189 if (!(tsa.fStyle.equalsByFonts(tsb.fStyle))) { in operator ==()
205 if (!(tsa.fStyle.equals(tsb.fStyle))) { in operator ==()