HomeSort by relevance Sort by last modified time
    Searched refs:DocumentLifecycle (Results 1 - 25 of 28) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/frame/
DeprecatedScheduleStyleRecalcDuringLayout.cpp 12 DeprecatedScheduleStyleRecalcDuringLayout::DeprecatedScheduleStyleRecalcDuringLayout(DocumentLifecycle& lifecycle)
14 , m_deprecatedTransition(DocumentLifecycle::InPerformLayout, DocumentLifecycle::VisualUpdatePending)
15 , m_wasInPerformLayout(lifecycle.state() == DocumentLifecycle::InPerformLayout)
23 if (m_wasInPerformLayout && m_lifecycle.state() != DocumentLifecycle::InPerformLayout) {
24 ASSERT(m_lifecycle.state() == DocumentLifecycle::VisualUpdatePending);
25 m_lifecycle.advanceTo(DocumentLifecycle::InPerformLayout);
DeprecatedScheduleStyleRecalcDuringLayout.h 8 #include "core/dom/DocumentLifecycle.h"
15 explicit DeprecatedScheduleStyleRecalcDuringLayout(DocumentLifecycle&);
19 DocumentLifecycle& m_lifecycle;
20 DocumentLifecycle::DeprecatedTransition m_deprecatedTransition;
FrameView.h 40 class DocumentLifecycle;
365 DocumentLifecycle& lifecycle() const;
FrameView.cpp 739 lifecycle().advanceTo(DocumentLifecycle::InPreLayout);
767 lifecycle().advanceTo(DocumentLifecycle::StyleClean);
777 lifecycle().advanceTo(DocumentLifecycle::InPerformLayout);
809 lifecycle().advanceTo(DocumentLifecycle::AfterPerformLayout);
855 DocumentLifecycle::Scope lifecycleScope(lifecycle(), DocumentLifecycle::LayoutClean);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DocumentLifecycle.cpp 32 #include "core/dom/DocumentLifecycle.h"
38 static DocumentLifecycle::DeprecatedTransition* s_deprecatedTransitionStack = 0;
40 DocumentLifecycle::Scope::Scope(DocumentLifecycle& lifecycle, State finalState)
46 DocumentLifecycle::Scope::~Scope()
51 DocumentLifecycle::DeprecatedTransition::DeprecatedTransition(State from, State to)
59 DocumentLifecycle::DeprecatedTransition::~DeprecatedTransition()
64 DocumentLifecycle::DocumentLifecycle()
70 DocumentLifecycle::~DocumentLifecycle(
    [all...]
DocumentLifecycle.h 39 class DocumentLifecycle {
40 WTF_MAKE_NONCOPYABLE(DocumentLifecycle);
71 Scope(DocumentLifecycle&, State finalState);
77 DocumentLifecycle& m_lifecycle;
99 explicit DetachScope(DocumentLifecycle& documentLifecycle)
100 : m_documentLifecycle(documentLifecycle)
111 DocumentLifecycle& m_documentLifecycle;
114 DocumentLifecycle();
115 ~DocumentLifecycle();
    [all...]
Document.h 38 #include "core/dom/DocumentLifecycle.h"
    [all...]
Document.cpp 530 m_lifecycle.advanceTo(DocumentLifecycle::Inactive);
658 m_lifecycle.advanceTo(DocumentLifecycle::Disposed);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/
CompositingReasonFinder.cpp 167 ASSERT(m_renderView.document().lifecycle().state() < DocumentLifecycle::InCompositingUpdate);
211 if (m_renderView.document().lifecycle().state() < DocumentLifecycle::LayoutClean)
223 ASSERT(m_renderView.document().lifecycle().state() == DocumentLifecycle::InCompositingUpdate);
RenderLayerCompositor.h 232 DocumentLifecycle& lifecycle() const;
RenderLayerCompositor.cpp 201 lifecycle().advanceTo(DocumentLifecycle::InCompositingUpdate);
203 lifecycle().advanceTo(DocumentLifecycle::CompositingClean);
207 // ASSERT(lifecycle().state() == DocumentLifecycle::CompositingClean);
235 lifecycle().ensureStateAtMost(DocumentLifecycle::LayoutClean);
624 ASSERT(lifecycle().state() >= DocumentLifecycle::CompositingClean);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/
DocumentAnimations.cpp 89 ASSERT(document.lifecycle().state() == DocumentLifecycle::CompositingClean);
  /external/chromium_org/third_party/WebKit/Source/web/
WebAXObject.cpp 552 return document->lifecycle().state() >= DocumentLifecycle::LayoutClean
553 || (document->lifecycle().state() == DocumentLifecycle::StyleClean && !document->view()->needsLayout());
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorLayerTreeAgent.cpp 174 if (document && document->lifecycle().state() >= DocumentLifecycle::CompositingClean)
  /external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
ScrollingCoordinator.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/
webcore_dom.target.darwin-arm.mk 62 third_party/WebKit/Source/core/dom/DocumentLifecycle.cpp \
webcore_dom.target.darwin-arm64.mk 62 third_party/WebKit/Source/core/dom/DocumentLifecycle.cpp \
webcore_dom.target.darwin-mips.mk 62 third_party/WebKit/Source/core/dom/DocumentLifecycle.cpp \
webcore_dom.target.darwin-x86.mk 62 third_party/WebKit/Source/core/dom/DocumentLifecycle.cpp \
webcore_dom.target.darwin-x86_64.mk 62 third_party/WebKit/Source/core/dom/DocumentLifecycle.cpp \
webcore_dom.target.linux-arm.mk 62 third_party/WebKit/Source/core/dom/DocumentLifecycle.cpp \
webcore_dom.target.linux-arm64.mk 62 third_party/WebKit/Source/core/dom/DocumentLifecycle.cpp \
webcore_dom.target.linux-mips.mk 62 third_party/WebKit/Source/core/dom/DocumentLifecycle.cpp \
webcore_dom.target.linux-x86.mk 62 third_party/WebKit/Source/core/dom/DocumentLifecycle.cpp \
webcore_dom.target.linux-x86_64.mk 62 third_party/WebKit/Source/core/dom/DocumentLifecycle.cpp \

Completed in 403 milliseconds

1 2