OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EventID
(Results
1 - 10
of
10
) sorted by null
/external/webkit/Source/WebKit/chromium/public/
WebApplicationCacheHostClient.h
46
virtual void notifyEventListener(WebApplicationCacheHost::
EventID
) = 0;
WebApplicationCacheHost.h
62
// These values must match WebCore::ApplicationCacheHost::
EventID
values
63
enum
EventID
{
/external/webkit/Source/WebKit/chromium/src/
ApplicationCacheHostInternal.h
61
virtual void notifyEventListener(WebKit::WebApplicationCacheHost::
EventID
eventID
)
63
m_innerHost->notifyDOMApplicationCache(static_cast<ApplicationCacheHost::
EventID
>(
eventID
), 0, 0);
ApplicationCacheHost.cpp
209
void ApplicationCacheHost::notifyDOMApplicationCache(
EventID
id, int total, int done)
255
dispatchDOMEvent(deferred.
eventID
, deferred.progressTotal, deferred.progressDone);
266
void ApplicationCacheHost::dispatchDOMEvent(
EventID
id, int total, int done)
/external/webkit/Source/WebCore/loader/appcache/
ApplicationCacheHost.h
74
enum
EventID
{
148
void notifyDOMApplicationCache(
EventID
, int progressTotal, int progressDone);
169
EventID
eventID
;
172
DeferredEvent(
EventID
id, int total, int done) :
eventID
(id), progressTotal(total), progressDone(done) { }
180
void dispatchDOMEvent(
EventID
, int progressTotal, int progressDone);
ApplicationCacheGroup.h
100
static void postListenerTask(ApplicationCacheHost::
EventID
id, const HashSet<DocumentLoader*>& set) { postListenerTask(id, 0, 0, set); }
101
static void postListenerTask(ApplicationCacheHost::
EventID
id, DocumentLoader* loader) { postListenerTask(id, 0, 0, loader); }
102
static void postListenerTask(ApplicationCacheHost::
EventID
, int progressTotal, int progressDone, const HashSet<DocumentLoader*>&);
103
static void postListenerTask(ApplicationCacheHost::
EventID
, int progressTotal, int progressDone, DocumentLoader*);
DOMApplicationCache.cpp
94
const AtomicString& DOMApplicationCache::toEventType(ApplicationCacheHost::
EventID
id)
DOMApplicationCache.h
78
static const AtomicString& toEventType(ApplicationCacheHost::
EventID
id);
ApplicationCacheGroup.cpp
[
all
...]
ApplicationCacheHost.cpp
243
void ApplicationCacheHost::notifyDOMApplicationCache(
EventID
id, int total, int done)
268
dispatchDOMEvent(deferred.
eventID
, deferred.progressTotal, deferred.progressDone);
305
void ApplicationCacheHost::dispatchDOMEvent(
EventID
id, int total, int done)
Completed in 1280 milliseconds