HomeSort by relevance Sort by last modified time
    Searched refs:ProgressEvent (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/chromium_org/third_party/WebKit/Source/core/dom/
ResourceProgressEvent.idl 26 // ResourceProgressEvent is a non-standard class that is simply a ProgressEvent
35 ] interface ResourceProgressEvent : ProgressEvent {
ProgressEvent.cpp 27 #include "core/dom/ProgressEvent.h"
40 ProgressEvent::ProgressEvent()
48 ProgressEvent::ProgressEvent(const AtomicString& type, const ProgressEventInit& initializer)
57 ProgressEvent::ProgressEvent(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total)
66 const AtomicString& ProgressEvent::interfaceName() const
ProgressEvent.h 41 class ProgressEvent : public Event {
43 static PassRefPtr<ProgressEvent> create()
45 return adoptRef(new ProgressEvent);
47 static PassRefPtr<ProgressEvent> create(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total)
49 return adoptRef(new ProgressEvent(type, lengthComputable, loaded, total));
51 static PassRefPtr<ProgressEvent> create(const AtomicString& type, const ProgressEventInit& initializer)
53 return adoptRef(new ProgressEvent(type, initializer));
63 ProgressEvent();
64 ProgressEvent(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total);
65 ProgressEvent(const AtomicString&, const ProgressEventInit&)
    [all...]
ProgressEvent.idl 28 ] interface ProgressEvent : Event {
ResourceProgressEvent.cpp 38 : ProgressEvent(type, lengthComputable, loaded, total)
ResourceProgressEvent.h 34 #include "core/dom/ProgressEvent.h"
38 // ResourceProgressEvent is a non-standard class that is simply a ProgressEvent
45 class ResourceProgressEvent : public ProgressEvent {
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XMLHttpRequestProgressEvent.idl 27 interface XMLHttpRequestProgressEvent : ProgressEvent {
XMLHttpRequestProgressEvent.h 31 #include "core/dom/ProgressEvent.h"
35 class XMLHttpRequestProgressEvent : public ProgressEvent {
59 : ProgressEvent(type, lengthComputable, loaded, total)
  /external/lzma/CPP/7zip/Archive/Common/
CrossThreadProgress.h 18 NWindows::NSynchronization::CAutoResetEvent ProgressEvent;
23 RINOK(ProgressEvent.CreateIfNotCreated());
28 ProgressEvent.Reset();
CrossThreadProgress.cpp 11 ProgressEvent.Set();
  /external/chromium_org/third_party/WebKit/Source/web/
WebDOMProgressEvent.cpp 34 #include "core/dom/ProgressEvent.h"
42 : WebDOMEvent(ProgressEvent::create(type, lengthIsComputable, loaded, total))
ApplicationCacheHost.cpp 41 #include "core/dom/ProgressEvent.h"
221 event = ProgressEvent::create(eventType, true, done, total);
AssertMatchingEnums.cpp 287 COMPILE_ASSERT_MATCHING_ENUM(WebApplicationCacheHost::ProgressEvent, ApplicationCacheHost::PROGRESS_EVENT);
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/wallpaper_manager/js/
progress_manager.js 78 * @param {Event} e A loadstart ProgressEvent from XMLHttpRequest.
89 * @param {Event} e An error/abort ProgressEvent from XMLHttpRequest.
100 * @param {Event} e A load ProgressEvent from XMLHttpRequest.
111 * @param {Event} e A progress ProgressEvent from XMLHttpRequest.
  /external/chromium_org/third_party/WebKit/public/web/
WebApplicationCacheHost.h 68 ProgressEvent,
  /external/chromium_org/content/child/appcache/
appcache_frontend_impl.cc 111 COMPILE_ASSERT((int)WebApplicationCacheHost::ProgressEvent ==
112 (int)appcache::PROGRESS_EVENT, ProgressEvent);
  /external/chromium_org/chrome/common/extensions/docs/examples/tutorials/getstarted/
popup.js 50 * @param {ProgressEvent} e The XHR ProgressEvent.
  /external/chromium_org/ppapi/native_client/src/trusted/plugin/
plugin.h 64 class ProgressEvent;
490 std::queue<ProgressEvent*> progress_events_;
plugin.cc 589 class ProgressEvent {
591 ProgressEvent(const char* event_type,
611 // not taken. Hence it does not need to be deleted when ProgressEvent is
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
HtmlTooltipHelper.java 21 import org.eclipse.swt.browser.ProgressEvent;
165 public void completed(ProgressEvent event) {
  /external/chromium_org/native_client_sdk/src/examples/tutorial/load_progress/
example.js 35 // event The ProgressEvent that triggered this handler.
  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
FileReader.cpp 37 #include "core/dom/ProgressEvent.h"
225 fireEvent(eventNames().progressEvent);
240 fireEvent(eventNames().progressEvent);
268 dispatchEvent(ProgressEvent::create(type, true, m_loader ? m_loader->bytesLoaded() : 0, m_loader ? m_loader->totalBytes() : 0));
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
FileWriter.cpp 36 #include "core/dom/ProgressEvent.h"
207 fireEvent(eventNames().progressEvent);
316 dispatchEvent(ProgressEvent::create(type, true, m_bytesWritten, m_bytesToWrite));
  /external/chromium_org/ppapi/native_client/tests/ppapi_browser/
progress_event_listener.js 104 // Add the listener for all of the ProgressEvent event types.
  /external/chromium_org/third_party/WebKit/Source/core/
webcore_dom.target.darwin-arm.mk 137 third_party/WebKit/Source/core/dom/ProgressEvent.cpp \

Completed in 278 milliseconds

1 2 3