Lines Matching refs:fText
31 fText = std::move(text);
34 fUnicodeText = std::make_unique<UnicodeText>(std::move(unicode), SkSpan<uint16_t>((uint16_t*)fText.data(), fText.size()));
45 std::u16string fText;
69 fText = std::move(text);
72 fUnicodeText = std::make_unique<UnicodeText>(std::move(unicode), SkSpan<uint16_t>((uint16_t*)fText.data(), fText.size()));
95 this->fText = std::move(text);
98 fUnicodeText = std::make_unique<UnicodeText>(std::move(unicode), SkSpan<uint16_t>((uint16_t*)fText.data(), fText.size()));
123 std::u16string fText;
147 bool isEmpty() { return fText.empty(); }
167 text.append(this->fText.substr(0, toRemove.fStart));
168 text.append(this->fText.substr(toRemove.fEnd, std::u16string::npos));
174 text.append(fText.substr(0, toInsert));
176 text.append(fText.substr(toInsert, std::u16string::npos));
182 text.append(fText.substr(0, toReplace.fStart));
184 text.append(fText.substr(toReplace.fEnd, std::u16string::npos));
188 fText = text;
191 fFontBlocks[0].charCount = fText.size();
193 fDecorations[0].charCount = fText.size();