/external/chromium_org/third_party/WebKit/Source/core/events/ |
D | ProgressEvent.h | 41 class ProgressEvent : public Event { 43 static PassRefPtr<ProgressEvent> create() in create() 45 return adoptRef(new ProgressEvent); in create() 47 …static PassRefPtr<ProgressEvent> create(const AtomicString& type, bool lengthComputable, unsigned … in create() 49 return adoptRef(new ProgressEvent(type, lengthComputable, loaded, total)); in create() 51 …static PassRefPtr<ProgressEvent> create(const AtomicString& type, const ProgressEventInit& initial… in create() 53 return adoptRef(new ProgressEvent(type, initializer)); in create() 63 ProgressEvent(); 64 …ProgressEvent(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned… 65 ProgressEvent(const AtomicString&, const ProgressEventInit&);
|
D | ProgressEvent.cpp | 40 ProgressEvent::ProgressEvent() in ProgressEvent() function in WebCore::ProgressEvent 48 ProgressEvent::ProgressEvent(const AtomicString& type, const ProgressEventInit& initializer) in ProgressEvent() function in WebCore::ProgressEvent 57 ProgressEvent::ProgressEvent(const AtomicString& type, bool lengthComputable, unsigned long long lo… in ProgressEvent() function in WebCore::ProgressEvent 66 const AtomicString& ProgressEvent::interfaceName() const in interfaceName() 68 return EventNames::ProgressEvent; in interfaceName()
|
D | ResourceProgressEvent.idl | 26 // ResourceProgressEvent is a non-standard class that is simply a ProgressEvent 35 ] interface ResourceProgressEvent : ProgressEvent {
|
D | ResourceProgressEvent.cpp | 38 : ProgressEvent(type, lengthComputable, loaded, total) in ResourceProgressEvent()
|
D | ResourceProgressEvent.h | 45 class ResourceProgressEvent : public ProgressEvent {
|
D | ProgressEvent.idl | 28 ] interface ProgressEvent : Event {
|
/external/lzma/CPP/7zip/Archive/Common/ |
D | CrossThreadProgress.h | 18 NWindows::NSynchronization::CAutoResetEvent ProgressEvent; variable 23 RINOK(ProgressEvent.CreateIfNotCreated()); in Create() 28 ProgressEvent.Reset(); in Init()
|
D | CrossThreadProgress.cpp | 11 ProgressEvent.Set(); in SetRatioInfo()
|
/external/chromium_org/third_party/WebKit/Source/core/xml/ |
D | XMLHttpRequestProgressEvent.h | 35 class XMLHttpRequestProgressEvent : public ProgressEvent { 59 : ProgressEvent(type, lengthComputable, loaded, total) in XMLHttpRequestProgressEvent()
|
D | XMLHttpRequestProgressEvent.idl | 27 interface XMLHttpRequestProgressEvent : ProgressEvent {
|
/external/chromium_org/third_party/WebKit/Source/web/ |
D | WebDOMProgressEvent.cpp | 42 : WebDOMEvent(ProgressEvent::create(type, lengthIsComputable, loaded, total)) in WebDOMProgressEvent()
|
D | WebDOMEvent.cpp | 192 return m_private->hasInterface(WebCore::EventNames::ProgressEvent); in isProgressEvent()
|
D | ApplicationCacheHost.cpp | 213 event = ProgressEvent::create(eventType, true, done, total); in dispatchDOMEvent()
|
/external/chromium_org/third_party/WebKit/Source/core/fileapi/ |
D | FileReader.cpp | 349 dispatchEvent(ProgressEvent::create(type, false, 0, 0)); in fireEvent() 354 … dispatchEvent(ProgressEvent::create(type, true, m_loader->bytesLoaded(), m_loader->totalBytes())); in fireEvent() 356 dispatchEvent(ProgressEvent::create(type, false, m_loader->bytesLoaded(), 0)); in fireEvent()
|
/external/chromium_org/content/child/appcache/ |
D | appcache_frontend_impl.cc | 111 COMPILE_ASSERT((int)WebApplicationCacheHost::ProgressEvent == 112 (int)appcache::PROGRESS_EVENT, ProgressEvent);
|
/external/chromium_org/ppapi/native_client/src/trusted/plugin/ |
D | plugin.h | 54 class ProgressEvent; variable 441 std::queue<ProgressEvent*> progress_events_;
|
D | plugin.cc | 512 class ProgressEvent { class 514 ProgressEvent(PP_NaClEventType event_type, in ProgressEvent() function in plugin::ProgressEvent 1436 progress_events_.push(new ProgressEvent(event_type, in EnqueueProgressEvent() 1465 nacl::scoped_ptr<ProgressEvent> event(progress_events_.front()); in DispatchProgressEvent()
|
/external/chromium_org/third_party/WebKit/public/web/ |
D | WebApplicationCacheHost.h | 68 ProgressEvent, enumerator
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/ |
D | HtmlTooltipHelper.java | 21 import org.eclipse.swt.browser.ProgressEvent; 165 public void completed(ProgressEvent event) { in createTooltipControl_Browser()
|
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/ |
D | FileWriter.cpp | 310 dispatchEvent(ProgressEvent::create(type, true, m_bytesWritten, m_bytesToWrite)); in fireEvent()
|
/external/chromium_org/third_party/WebKit/Source/core/ |
D | webcore_dom.target.linux-x86.mk | 190 third_party/WebKit/Source/core/events/ProgressEvent.cpp \
|
D | webcore_dom.target.darwin-x86.mk | 190 third_party/WebKit/Source/core/events/ProgressEvent.cpp \
|
D | webcore_dom.target.linux-mips.mk | 190 third_party/WebKit/Source/core/events/ProgressEvent.cpp \
|
D | webcore_dom.target.darwin-mips.mk | 190 third_party/WebKit/Source/core/events/ProgressEvent.cpp \
|
D | webcore_dom.target.darwin-arm.mk | 190 third_party/WebKit/Source/core/events/ProgressEvent.cpp \
|