Lines Matching full:wordstart
593 size_t wordstart =
608 advance += doLayoutWord(buf + wordstart, iter - wordstart, wordcount,
609 wordend - wordstart, isRtl, ctx, iter - dstStart, collection, layout,
611 wordstart = wordend;
615 size_t wordstart;
618 for (size_t iter = end; iter > start; iter = wordstart) {
619 wordstart = getPrevWordBreakForCache(buf, iter, bufSize);
622 if (wordstart > start) { // Not the first word
629 size_t bufStart = std::max(start, wordstart);
630 advance += doLayoutWord(buf + wordstart, bufStart - wordstart, iter - bufStart,
631 wordend - wordstart, isRtl, ctx, bufStart - dstStart, collection, layout,
633 wordend = wordstart;