Searched defs:charsLeft (Results 1 - 5 of 5) sorted by relevance

/external/webkit/WebCore/loader/
H A DTextDocument.cpp155 unsigned charsLeft = string.length(); local
156 while (charsLeft) {
158 RefPtr<Text> text = Text::createWithLengthLimit(m_doc, string, charsLeft);
/external/webkit/WebCore/dom/
H A DText.cpp307 PassRefPtr<Text> Text::createWithLengthLimit(Document* document, const String& data, unsigned& charsLeft, unsigned maxChars) argument
311 if (charsLeft == dataLength && charsLeft <= maxChars) {
312 charsLeft = 0;
316 unsigned start = dataLength - charsLeft;
317 unsigned end = start + min(charsLeft, maxChars);
336 charsLeft = dataLength - end;
/external/chromium/third_party/icu/source/io/
H A Dustdio.c324 int32_t charsLeft = (int32_t)(f->str.fLimit - f->str.fPos); local
325 if (flushIO && charsLeft > count) {
328 written = ufmt_min(count, charsLeft);
/external/icu4c/io/
H A Dustdio.c324 int32_t charsLeft = (int32_t)(f->str.fLimit - f->str.fPos); local
325 if (flushIO && charsLeft > count) {
328 written = ufmt_min(count, charsLeft);
/external/webkit/WebCore/html/
H A DHTMLParser.cpp264 unsigned charsLeft = text.length(); local
265 while (charsLeft) {
267 n = Text::createWithLengthLimit(m_document, text, charsLeft);

Completed in 152 milliseconds