Home
last modified time | relevance | path

Searched refs:m_textAutosizer (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DTextAutosizer.cpp1081 : m_textAutosizer(block->document().textAutosizer()) in LayoutScope()
1084 if (!m_textAutosizer) in LayoutScope()
1087 if (m_textAutosizer->shouldHandleLayout()) in LayoutScope()
1088 m_textAutosizer->beginLayout(m_block); in LayoutScope()
1090 m_textAutosizer = 0; in LayoutScope()
1095 if (m_textAutosizer) in ~LayoutScope()
1096 m_textAutosizer->endLayout(m_block); in ~LayoutScope()
1103 if (m_textAutosizer) { in TableLayoutScope()
1104 ASSERT(m_textAutosizer->shouldHandleLayout()); in TableLayoutScope()
1105 m_textAutosizer->inflateAutoTable(table); in TableLayoutScope()
DTextAutosizer.h75 TextAutosizer* m_textAutosizer;
/external/chromium_org/third_party/WebKit/Source/core/dom/
DDocument.cpp5595 if (!m_textAutosizer) in textAutosizer()
5596 m_textAutosizer = TextAutosizer::create(this); in textAutosizer()
5597 return m_textAutosizer.get(); in textAutosizer()
5824 visitor->trace(m_textAutosizer); in trace()
DDocument.h1340 OwnPtrWillBeMember<TextAutosizer> m_textAutosizer; variable