Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderFullScreen.cpp55 , m_placeholder(nullptr) in RenderFullScreen()
69 visitor->trace(m_placeholder); in trace()
75 if (m_placeholder) { in willBeDestroyed()
77 if (!m_placeholder->beingDestroyed()) in willBeDestroyed()
78 m_placeholder->destroy(); in willBeDestroyed()
79 ASSERT(!m_placeholder); in willBeDestroyed()
183 m_placeholder = placeholder; in setPlaceholder()
193 if (!m_placeholder) { in createPlaceholder()
194 m_placeholder = new RenderFullScreenPlaceholder(this); in createPlaceholder()
195 m_placeholder->setStyle(style); in createPlaceholder()
[all …]
DRenderFullScreen.h42 RenderBlock* placeholder() { return m_placeholder; } in placeholder()
54 RawPtrWillBeMember<RenderBlock> m_placeholder;
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
DDateTimeNumericFieldElement.cpp54 , m_placeholder(placeholder) in DateTimeNumericFieldElement()
78 float maximumWidth = font.width(m_placeholder); in maximumWidth()
221 return m_hasValue ? value() : m_placeholder; in visibleValue()
DDateTimeNumericFieldElement.h97 const String m_placeholder; variable