HomeSort by relevance Sort by last modified time
    Searched full:lengthcomputable (Results 1 - 23 of 23) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/xml/
XMLHttpRequestUpload.cpp 60 void XMLHttpRequestUpload::dispatchEventAndLoadEnd(const AtomicString& type, bool lengthComputable, unsigned long long bytesSent, unsigned long long total)
63 dispatchEvent(XMLHttpRequestProgressEvent::create(type, lengthComputable, bytesSent, total));
64 dispatchEvent(XMLHttpRequestProgressEvent::create(EventTypeNames::loadend, lengthComputable, bytesSent, total));
69 bool lengthComputable = m_lastTotalBytesToBeSent > 0 && m_lastBytesSent <= m_lastTotalBytesToBeSent;
70 dispatchEvent(XMLHttpRequestProgressEvent::create(EventTypeNames::progress, lengthComputable, m_lastBytesSent, m_lastTotalBytesToBeSent));
71 dispatchEventAndLoadEnd(type, lengthComputable, m_lastBytesSent, m_lastTotalBytesToBeSent);
XMLHttpRequestProgressEventThrottle.cpp 38 void set(bool lengthComputable, unsigned long long loaded, unsigned long long total)
41 m_lengthComputable = lengthComputable;
53 bool lengthComputable() const { return m_lengthComputable; }
77 void XMLHttpRequestProgressEventThrottle::dispatchProgressEvent(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total)
82 m_target->dispatchEvent(XMLHttpRequestProgressEvent::create(type, lengthComputable, loaded, total));
87 m_deferred->set(lengthComputable, loaded, total);
89 m_target->dispatchEvent(XMLHttpRequestProgressEvent::create(type, lengthComputable, loaded, total));
112 m_target->dispatchEvent(XMLHttpRequestProgressEvent::create(EventTypeNames::progress, m_deferred->lengthComputable(), m_deferred->loaded(), m_deferred->total()));
XMLHttpRequestProgressEvent.h 41 static PassRefPtrWillBeRawPtr<XMLHttpRequestProgressEvent> create(const AtomicString& type, bool lengthComputable = false, unsigned long long loaded = 0, unsigned long long total = 0)
43 return adoptRefWillBeNoop(new XMLHttpRequestProgressEvent(type, lengthComputable, loaded, total));
57 XMLHttpRequestProgressEvent(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total)
58 : ProgressEvent(type, lengthComputable, loaded, total) { }
XMLHttpRequestProgressEventThrottle.h 74 void dispatchProgressEvent(const AtomicString&, bool lengthComputable, unsigned long long loaded, unsigned long long total);
XMLHttpRequest.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/events/
ProgressEvent.cpp 32 : lengthComputable(false)
47 , m_lengthComputable(initializer.lengthComputable)
53 ProgressEvent::ProgressEvent(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total)
55 , m_lengthComputable(lengthComputable)
ProgressEvent.h 36 bool lengthComputable;
48 static PassRefPtrWillBeRawPtr<ProgressEvent> create(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total)
50 return adoptRefWillBeNoop(new ProgressEvent(type, lengthComputable, loaded, total));
57 bool lengthComputable() const { return m_lengthComputable; }
67 ProgressEvent(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total);
ResourceProgressEvent.h 52 static PassRefPtrWillBeRawPtr<ResourceProgressEvent> create(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total, const String& url)
54 return adoptRefWillBeNoop(new ResourceProgressEvent(type, lengthComputable, loaded, total, url));
65 ResourceProgressEvent(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total, const String& url);
ResourceProgressEvent.cpp 36 ResourceProgressEvent::ResourceProgressEvent(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total, const String& url)
37 : ProgressEvent(type, lengthComputable, loaded, total)
ProgressEvent.idl 29 [InitializedByEventConstructor] readonly attribute boolean lengthComputable;
  /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/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/voronoi/
example.js 164 if (event.lengthComputable && event.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/lua/
naclterm.js 146 if (e.lengthComputable && e.total > 0) {
  /external/chromium_org/native_client_sdk/doc_generated/devguide/coding/
progress-events.html 287 uses the <code>lengthComputable</code>, <code>loaded</code>, and <code>total</code> attributes (described
295 if (event.lengthComputable &amp;&amp; event.total &gt; 0) {
  /external/chromium_org/native_client_sdk/src/doc/devguide/coding/
progress-events.rst 181 uses the ``lengthComputable``, ``loaded``, and ``total`` attributes (described
191 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 282 milliseconds