OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_group
(Results
1 - 4
of
4
) sorted by null
/external/webkit/Source/WebCore/loader/appcache/
ApplicationCache.cpp
42
:
m_group
(0)
51
if (
m_group
&& !
m_group
->isCopy())
52
m_group
->cacheDestroyed(this);
57
ASSERT(!
m_group
|| group ==
m_group
);
58
m_group
= group;
63
return !
m_group
->cacheIsBeingUpdated(this);
ApplicationCache.h
64
ApplicationCacheGroup* group() const { return
m_group
; }
100
ApplicationCacheGroup*
m_group
;
member in class:WebCore::ApplicationCache
/external/webkit/Source/WebCore/page/
Page.cpp
173
,
m_group
(0)
373
if (
m_group
&& !
m_group
->name().isEmpty()) {
374
ASSERT(
m_group
!= m_singlePageGroup.get());
376
m_group
->removePage(this);
380
m_group
= m_singlePageGroup.get();
383
m_group
= PageGroup::pageGroup(name);
384
m_group
->addPage(this);
391
return
m_group
?
m_group
->name() : nullString
[
all
...]
Page.h
160
PageGroup& group() { if (!
m_group
) initGroup(); return *
m_group
; }
161
PageGroup* groupPtr() { return
m_group
; } // can return 0
378
PageGroup*
m_group
;
member in class:WebCore::Page
Completed in 585 milliseconds