Lines Matching defs:count
214 [&](SkUnichar unichar, int32_t start, int32_t end, int32_t count) {
1992 int count = R->fClusterIndexes.size();
1993 clusterStorage.reset(count);
1994 for (int i = 0; i < count; ++i) {
2006 run.count,
2013 clusterPtr += run.count;
2251 std::unique_ptr<Paragraph> ParagraphImpl::createCroppedCopy(size_t startIndex, size_t count) {
2261 // startIndex=2, count=std:: numeric_imits<size_t>:: max(), the resulting string str2 is "3456789".
2262 // When startIndex=3 and count=3, crop the generated string str3 to "456"
2268 if (count != std::numeric_limits<size_t>::max()) {
2269 auto invalidStart = paragraph->prefixByteCountUntilChar(count);