Searched refs:canBreak (Results 1 – 5 of 5) sorted by relevance
42 virtual bool canBreak() const = 0;89 bool canBreak() const override { return true; } in canBreak() function124 bool canBreak() const { return false; } in canBreak() function
139 if (!computeHyphenation || !run->canBreak()) { in measure()147 const bool canBreak = run->canBreak() || (i + 1) == range.getEnd(); in measure() local148 proc.feedChar(i, textBuf[i], widths[i], canBreak); in measure()
224 if (run->canBreak()) { in populateCandidates()236 const bool canBreak = run->canBreak() || (i + 1) == range.getEnd(); in populateCandidates() local237 proc.feedChar(i, textBuf[i], measured.widths[i], canBreak); in populateCandidates()
346 if (run->canBreak() || nextWordBoundaryOffset == range.getEnd()) { in process()347 processLineBreak(i + 1, &wordBreaker, run->canBreak()); in process()
55 virtual bool canBreak() const override { return true; } in canBreak() function