/external/chromium_org/third_party/WebKit/Source/core/events/ |
ProgressEvent.cpp | 27 #include "core/events/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 68 return EventNames::ProgressEvent;
|
ResourceProgressEvent.idl | 26 // ResourceProgressEvent is a non-standard class that is simply a ProgressEvent 35 ] interface ResourceProgressEvent : ProgressEvent {
|
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/events/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 | 30 #include "core/events/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/events/ProgressEvent.h" 42 : WebDOMEvent(ProgressEvent::create(type, lengthIsComputable, loaded, total))
|
ApplicationCacheHost.cpp | 41 #include "core/events/ProgressEvent.h" 213 event = ProgressEvent::create(eventType, true, done, total);
|
WebDOMEvent.cpp | 192 return m_private->hasInterface(WebCore::EventNames::ProgressEvent);
|
AssertMatchingEnums.cpp | 322 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/third_party/WebKit/Source/core/fileapi/ |
FileReader.cpp | 38 #include "core/events/ProgressEvent.h" 349 dispatchEvent(ProgressEvent::create(type, false, 0, 0)); 354 dispatchEvent(ProgressEvent::create(type, true, m_loader->bytesLoaded(), m_loader->totalBytes())); 356 dispatchEvent(ProgressEvent::create(type, false, m_loader->bytesLoaded(), 0));
|
/external/chromium_org/ppapi/native_client/src/trusted/plugin/ |
plugin.h | 54 class ProgressEvent; 441 std::queue<ProgressEvent*> progress_events_;
|
plugin.cc | 512 class ProgressEvent { 514 ProgressEvent(PP_NaClEventType event_type, [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/modules/filesystem/ |
FileWriter.cpp | 36 #include "core/events/ProgressEvent.h" 310 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.
|