OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_firstBody
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/WebCore/rendering/
RenderTable.cpp
57
,
m_firstBody
(0)
145
resetSectionPointerIfNotBefore(
m_firstBody
, beforeChild);
146
if (!
m_firstBody
)
147
m_firstBody
= toRenderTableSection(child);
160
resetSectionPointerIfNotBefore(
m_firstBody
, beforeChild);
161
if (!
m_firstBody
)
162
m_firstBody
= toRenderTableSection(child);
416
toRenderTableSection(child)->layoutRows(child ==
m_firstBody
? max(0, computedLogicalHeight - totalSectionLogicalHeight) : 0);
419
if (!
m_firstBody
&& computedLogicalHeight > totalSectionLogicalHeight && !document()->inQuirksMode()) {
430
RenderTableSection* section = m_head ? m_head : (
m_firstBody
? m_firstBody : m_foot)
[
all
...]
RenderTable.h
145
RenderTableSection* firstBody() const { return
m_firstBody
; }
197
bool hasSections() const { return m_head || m_foot ||
m_firstBody
; }
255
mutable RenderTableSection*
m_firstBody
;
Completed in 313 milliseconds