Home
last modified time | relevance | path

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

/external/webkit/WebCore/loader/
DProgressTracker.cpp52 , estimatedLength(length) { } in ProgressItem()
55 long long estimatedLength; member
158 long long estimatedLength = response.expectedContentLength(); in incrementProgress() local
159 if (estimatedLength < 0) in incrementProgress()
160 estimatedLength = progressItemDefaultEstimatedLength; in incrementProgress()
162 m_totalPageAndResourceBytesToLoad += estimatedLength; in incrementProgress()
166 item->estimatedLength = estimatedLength; in incrementProgress()
168 m_progressItems.set(identifier, new ProgressItem(estimatedLength)); in incrementProgress()
186 if (item->bytesReceived > item->estimatedLength) { in incrementProgress()
187 m_totalPageAndResourceBytesToLoad += ((item->bytesReceived * 2) - item->estimatedLength); in incrementProgress()
[all …]
/external/webkit/WebKit/mac/WebView/
DWebView.mm472 long long estimatedLength; field