HomeSort by relevance Sort by last modified time
    Searched refs:lengthComputable (Results 1 - 22 of 22) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/events/
ProgressEvent.h 36 bool lengthComputable;
47 static PassRefPtrWillBeRawPtr<ProgressEvent> create(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total)
49 return adoptRefWillBeNoop(new ProgressEvent(type, lengthComputable, loaded, total));
56 bool lengthComputable() const { return m_lengthComputable; }
66 ProgressEvent(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total);
ResourceProgressEvent.h 51 static PassRefPtrWillBeRawPtr<ResourceProgressEvent> create(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total, const String& url)
53 return adoptRefWillBeNoop(new ResourceProgressEvent(type, lengthComputable, loaded, total, url));
64 ResourceProgressEvent(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total, const String& url);
ProgressEvent.cpp 32 : lengthComputable(false)
48 , m_lengthComputable(initializer.lengthComputable)
55 ProgressEvent::ProgressEvent(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total)
57 , m_lengthComputable(lengthComputable)
ProgressEvent.idl 29 [InitializedByEventConstructor] readonly attribute boolean lengthComputable;
ResourceProgressEvent.cpp 37 ResourceProgressEvent::ResourceProgressEvent(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total, const String& url)
38 : ProgressEvent(type, lengthComputable, loaded, total)
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XMLHttpRequestProgressEvent.h 40 static PassRefPtrWillBeRawPtr<XMLHttpRequestProgressEvent> create(const AtomicString& type, bool lengthComputable = false, unsigned long long loaded = 0, unsigned long long total = 0)
42 return adoptRefWillBeNoop(new XMLHttpRequestProgressEvent(type, lengthComputable, loaded, total));
59 XMLHttpRequestProgressEvent(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total)
60 : ProgressEvent(type, lengthComputable, loaded, total)
XMLHttpRequestUpload.cpp 61 void XMLHttpRequestUpload::dispatchEventAndLoadEnd(const AtomicString& type, bool lengthComputable, unsigned long long bytesSent, unsigned long long total)
64 dispatchEvent(XMLHttpRequestProgressEvent::create(type, lengthComputable, bytesSent, total));
65 dispatchEvent(XMLHttpRequestProgressEvent::create(EventTypeNames::loadend, lengthComputable, bytesSent, total));
70 bool lengthComputable = m_lastTotalBytesToBeSent > 0 && m_lastBytesSent <= m_lastTotalBytesToBeSent;
71 dispatchEvent(XMLHttpRequestProgressEvent::create(EventTypeNames::progress, lengthComputable, m_lastBytesSent, m_lastTotalBytesToBeSent));
72 dispatchEventAndLoadEnd(type, lengthComputable, m_lastBytesSent, m_lastTotalBytesToBeSent);
XMLHttpRequestProgressEventThrottle.h 63 void dispatchProgressEvent(const AtomicString&, bool lengthComputable, unsigned long long loaded, unsigned long long total);
XMLHttpRequestProgressEventThrottle.cpp 51 void XMLHttpRequestProgressEventThrottle::dispatchProgressEvent(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total)
53 RefPtrWillBeRawPtr<XMLHttpRequestProgressEvent> progressEvent = XMLHttpRequestProgressEvent::create(type, lengthComputable, loaded, total);
80 m_lengthComputable = lengthComputable;
XMLHttpRequest.cpp     [all...]
  /external/chromium_org/native_client_sdk/src/examples/tutorial/load_progress/
example.js 29 // is 0 until |lengthComputable| is true. In particular, this
32 // lengthComputable A boolean indicating that the |total| field
39 if (event.lengthComputable && event.total > 0) {
  /external/chromium_org/ppapi/native_client/tests/ppapi_browser/
progress_event_listener.js 51 // True if an event with lengthComputable is ever triggered.
53 // The last event.total seen from an event with lengthComputable being true.
55 // The last event.loaded seen from an event with lengthComputable being true.
59 // Can either record progress from a progress event with lengthComputable,
61 if (event.type == 'progress' && event.lengthComputable) {
65 } else if (event.type == 'loadend' && event.lengthComputable) {
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/static/bullet/
main.js 25 if (event.lengthComputable && event.total > 0) {
  /external/chromium_org/chrome/browser/resources/chromeos/wallpaper_manager/js/
progress_manager.js 114 if (e.lengthComputable)
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
FileUtils.js 269 if (event.lengthComputable)
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/static/life/
example.js 160 if (event.lengthComputable && event.total > 0) {
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/static/lua/
naclterm.js 146 if (e.lengthComputable && e.total > 0) {
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/static/cube/
example.js 152 if (event.lengthComputable && event.total > 0) {
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/static/earth/
example.js 153 if (event.lengthComputable && event.total > 0) {
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/static/voronoi/
example.js 164 if (event.lengthComputable && event.total > 0) {
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/static/smoothlife/
example.js 187 if (event.lengthComputable && event.total > 0) {
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
pdfjs.js     [all...]

Completed in 239 milliseconds