OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:applicationcache
(Results
51 - 75
of
134
) sorted by null
1
2
3
4
5
6
/external/webkit/LayoutTests/http/tests/appcache/
top-frame-3.html
41
applicationCache
.onnoupdate = null;
42
applicationCache
.oncached = null;
45
applicationCache
.onchecking = function() { debug("checking"); receivedCheckingEventsCounter++; checkDone() }
46
applicationCache
.onnoupdate = function() { debug("noupdate"); receivedNoupdateEventsCounter++; checkDone(); }
71
applicationCache
.onnoupdate = function() { test() }
72
applicationCache
.oncached = function() { test() }
74
applicationCache
.onupdateready = function() { log("FAIL: received unexpected updateready event") }
75
applicationCache
.onerror = function() { log("FAIL: received unexpected error event") }
top-frame-4.html
41
applicationCache
.onnoupdate = null;
42
applicationCache
.oncached = null;
45
applicationCache
.onchecking = function() { debug("checking"); receivedCheckingEventsCounter++; checkDone() }
46
applicationCache
.onnoupdate = function() { debug("noupdate"); receivedNoupdateEventsCounter++; checkDone(); }
71
applicationCache
.onnoupdate = function() { test() }
72
applicationCache
.oncached = function() { test() }
74
applicationCache
.onupdateready = function() { log("FAIL: received unexpected updateready event") }
75
applicationCache
.onerror = function() { log("FAIL: received unexpected error event") }
xhr-foreign-resource.html
20
applicationCache
.onnoupdate = function() { log("FAIL: Unexpected noupdate event") }
21
applicationCache
.oncached = function() { log("FAIL: Unexpected cached event") }
36
applicationCache
.onnoupdate = function() { createFrame1() }
37
applicationCache
.oncached = function() { createFrame1() }
39
applicationCache
.onupdateready = function() { log("FAIL: received unexpected updateready event") }
40
applicationCache
.onerror = function() { log("FAIL: received unexpected error event") }
credential-url.html
24
applicationCache
.oncached = test;
25
applicationCache
.onnoupdate = test;
different-scheme.html
24
applicationCache
.oncached = test;
25
applicationCache
.onnoupdate = test;
whitelist-wildcard.html
24
applicationCache
.oncached = test;
25
applicationCache
.onnoupdate = test;
top-frame-1.html
28
applicationCache
.addEventListener('noupdate', function() { test() }, false);
29
applicationCache
.addEventListener('cached', function() { test() }, false);
31
applicationCache
.onupdateready = function() { log("FAIL: received unexpected updateready event") }
32
applicationCache
.onerror = function() { log("FAIL: received unexpected error event") }
online-fallback-layering.html
32
applicationCache
.oncached = function() { setTimeout(startTest, 0); }
33
applicationCache
.onnoupdate = function() { setTimeout(startTest, 0); }
34
applicationCache
.onupdateready = function() { log('onupdateready'); location.reload(); }
35
applicationCache
.onerror = function() { testComplete('FAIL - onerror'); }
36
applicationCache
.onobsolete = function() { testComplete('FAIL - onobsolete'); }
39
applicationCache
.oncached = null;
40
applicationCache
.onnoupdate = null;
cyrillic-uri.html
59
applicationCache
.onnoupdate = null;
60
applicationCache
.oncached = null;
74
applicationCache
.onnoupdate = function() { test() }
75
applicationCache
.oncached = function() { test() }
77
applicationCache
.onupdateready = function() { log("FAIL: received unexpected updateready event") }
78
applicationCache
.onerror = function() { log("FAIL: received unexpected error event") }
empty-manifest.html
20
applicationCache
.addEventListener('cached', cached, false);
manifest-with-empty-file.html
17
applicationCache
.addEventListener('cached', cached, false);
local-content.html
44
applicationCache
.addEventListener('noupdate', noupdate, false);
46
applicationCache
.addEventListener('cached', reload, false);
47
applicationCache
.addEventListener('error', function() { alert("Unexpected error event") }, false);
manifest-parsing.html
60
applicationCache
.onnoupdate = function() { test() }
61
applicationCache
.oncached = function() { test() }
63
applicationCache
.onerror = function() { log("error") }
progress-counter.html
54
applicationCache
.addEventListener('cached', cached, false);
55
applicationCache
.addEventListener('noupdate', noupdate, false);
56
applicationCache
.addEventListener('progress', progress, false);
non-html.xhtml
38
applicationCache
.removeEventListener('noupdate', cached, false);
39
applicationCache
.removeEventListener('cached', cached, false);
96
applicationCache
.addEventListener('cached', cached, false);
97
applicationCache
.addEventListener('noupdate', cached, false);
99
applicationCache
.addEventListener('error', error, false);
fallback.html
52
applicationCache
.onnoupdate = function() { log("FAIL: received unexpected noupdate event") }
53
applicationCache
.oncached = function() { log("FAIL: received unexpected cached event") }
119
applicationCache
.onnoupdate = test5;
149
applicationCache
.onnoupdate = function() { test() }
150
applicationCache
.oncached = function() { test() }
152
applicationCache
.onupdateready = function() { log("FAIL: received unexpected updateready event") }
153
applicationCache
.onerror = function() { log("FAIL: received unexpected error event") }
deferred-events.html
11
window.
applicationCache
.onchecking = function() {
/external/webkit/Source/WebCore/loader/appcache/
ApplicationCache.cpp
27
#include "
ApplicationCache
.h"
41
ApplicationCache
::
ApplicationCache
()
49
ApplicationCache
::~
ApplicationCache
()
55
void
ApplicationCache
::setGroup(ApplicationCacheGroup* group)
61
bool
ApplicationCache
::isComplete() const
66
void
ApplicationCache
::setManifestResource(PassRefPtr<ApplicationCacheResource> manifest)
77
void
ApplicationCache
::addResource(PassRefPtr<ApplicationCacheResource> resource)
98
unsigned
ApplicationCache
::removeResource(const String& url
[
all
...]
ApplicationCacheStorage.h
40
class
ApplicationCache
;
70
bool remainingSizeForOriginExcludingCache(const SecurityOrigin*,
ApplicationCache
*, int64_t& remainingSize);
81
bool storeNewestCache(ApplicationCacheGroup*,
ApplicationCache
* oldCache, FailureReason& failureReason);
83
bool store(ApplicationCacheResource*,
ApplicationCache
*);
84
bool storeUpdatedType(ApplicationCacheResource*,
ApplicationCache
*);
87
void remove(
ApplicationCache
*);
105
PassRefPtr<
ApplicationCache
> loadCache(unsigned storageID);
112
bool store(
ApplicationCache
*, ResourceStorageIDJournal*);
ApplicationCacheGroup.h
44
class
ApplicationCache
;
64
static
ApplicationCache
* cacheForMainRequest(const ResourceRequest&, DocumentLoader*);
65
static
ApplicationCache
* fallbackCacheForMainRequest(const ResourceRequest&, DocumentLoader*);
80
void cacheDestroyed(
ApplicationCache
*);
82
bool cacheIsBeingUpdated(const
ApplicationCache
* cache) const { return cache == m_cacheBeingUpdated; }
86
ApplicationCache
* newestCache() const { return m_newestCache.get(); }
87
void setNewestCache(PassRefPtr<
ApplicationCache
>);
134
void associateDocumentLoaderWithCache(DocumentLoader*,
ApplicationCache
*);
143
RefPtr<
ApplicationCache
> m_newestCache;
146
HashSet<
ApplicationCache
*> m_caches
[
all
...]
ApplicationCacheHost.cpp
31
#include "
ApplicationCache
.h"
151
if (!group &&
applicationCache
() && !mainResourceApplicationCache())
152
group =
applicationCache
()->group();
234
return !
applicationCache
() && !candidateApplicationCacheGroup();
277
ApplicationCache
* cache =
applicationCache
();
281
ApplicationCache
::ResourceMap::const_iterator end = cache->end();
282
for (
ApplicationCache
::ResourceMap::const_iterator it = cache->begin(); it != end; ++it) {
296
ApplicationCache
* cache =
applicationCache
();
[
all
...]
ApplicationCacheHost.h
55
class
ApplicationCache
;
161
bool getApplicationCacheFallbackResource(const ResourceRequest&, ApplicationCacheResource*&,
ApplicationCache
* = 0);
189
bool scheduleLoadFallbackResourceFromApplicationCache(ResourceLoader*,
ApplicationCache
* = 0);
192
void setApplicationCache(PassRefPtr<
ApplicationCache
>
applicationCache
);
193
ApplicationCache
*
applicationCache
() const { return m_applicationCache.get(); }
194
ApplicationCache
* mainResourceApplicationCache() const { return m_mainResourceApplicationCache.get(); }
198
RefPtr<
ApplicationCache
> m_applicationCache;
205
RefPtr<
ApplicationCache
> m_mainResourceApplicationCache
[
all
...]
ApplicationCache.h
49
class
ApplicationCache
: public RefCounted<
ApplicationCache
> {
51
static PassRefPtr<
ApplicationCache
> create() { return adoptRef(new
ApplicationCache
); }
55
~
ApplicationCache
();
98
ApplicationCache
();
/external/webkit/LayoutTests/http/tests/appcache/resources/
main-resource-redirect-frame-2.html
3
parent.document.getElementById("result").innerHTML = (
applicationCache
.status) > 0 ? "PASS" : "FAIL: child frame status is UNCACHED";
cyrillic-uri-form.html
24
applicationCache
.onnoupdate = function() { test() }
25
applicationCache
.oncached = function() { test() }
Completed in 252 milliseconds
1
2
3
4
5
6