Home
last modified time | relevance | path

Searched refs:lineEnd (Results 1 – 2 of 2) sorted by relevance

/system/teeui/libteeui/src/
Dlabel.cpp78 auto lineEnd = textBegin; in draw() local
80 while (!isNewline(lineEnd.codePoint()) && lineEnd != text_.end()) { in draw()
81 lineEnd++; in draw()
86 findLongestWordSequence(&face, text_t(*textBegin, *lineEnd), bounds); in draw()
135 auto lineEnd = curLine; in draw() local
144 while (curLine != lineEnd) { in draw()
/system/incremental_delivery/incfs/
DMountRegistry.cpp284 auto lineEnd = chunk.find('\n'); in forEachLine() local
285 if (lineEnd == chunk.npos) { in forEachLine()
288 cb(chunk.substr(0, lineEnd)); in forEachLine()
289 chunk.remove_prefix(lineEnd + 1); in forEachLine()