OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:newestCache
(Results
1 - 4
of
4
) sorted by null
/external/webkit/Source/WebCore/loader/appcache/
ApplicationCacheHost.cpp
418
if (cache != cache->group()->
newestCache
())
450
ApplicationCache*
newestCache
= cache->group()->
newestCache
();
451
if (cache ==
newestCache
)
454
ASSERT(cache->group() ==
newestCache
->group());
455
setApplicationCache(
newestCache
);
ApplicationCacheStorage.cpp
105
SQLiteStatement statement(m_database, "SELECT id, manifestURL,
newestCache
FROM CacheGroups WHERE
newestCache
IS NOT NULL AND manifestURL=?");
208
if (ApplicationCache* cache = group->
newestCache
()) {
222
SQLiteStatement statement(m_database, "SELECT id, manifestURL,
newestCache
FROM CacheGroups WHERE
newestCache
IS NOT NULL");
276
if (ApplicationCache* cache = group->
newestCache
()) {
292
SQLiteStatement statement(m_database, "SELECT id, manifestURL,
newestCache
FROM CacheGroups WHERE
newestCache
IS NOT NULL");
358
if (ApplicationCache*
newestCache
= group->
newestCache
())
[
all
...]
ApplicationCacheGroup.h
86
ApplicationCache*
newestCache
() const { return m_newestCache.get(); }
ApplicationCacheGroup.cpp
109
ASSERT(group->
newestCache
());
112
return group->
newestCache
();
128
ASSERT(group->
newestCache
());
131
return group->
newestCache
();
396
void ApplicationCacheGroup::setNewestCache(PassRefPtr<ApplicationCache>
newestCache
)
398
m_newestCache =
newestCache
;
[
all
...]
Completed in 51 milliseconds