OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:firstLineBox
(Results
1 - 15
of
15
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderVTTCue.cpp
63
bool RenderVTTCue::findFirstLineBox(InlineFlowBox*&
firstLineBox
)
66
firstLineBox
= toRenderInline(firstChild())->
firstLineBox
();
73
bool RenderVTTCue::initializeLayoutParameters(InlineFlowBox*
firstLineBox
, LayoutUnit& step, LayoutUnit& position)
81
step = m_cue->getWritingDirection() == VTTCue::Horizontal ?
firstLineBox
->height() :
firstLineBox
->width();
153
bool RenderVTTCue::shouldSwitchDirection(InlineFlowBox*
firstLineBox
, LayoutUnit step) const
157
LayoutUnit bottom = top +
firstLineBox
->height();
158
LayoutUnit right = left +
firstLineBox
->width();
218
InlineFlowBox*
firstLineBox
;
[
all
...]
RenderLineBoxList.h
49
InlineFlowBox*
firstLineBox
() const { return m_firstLineBox; }
RenderLineBoxList.cpp
144
for (InlineFlowBox* curr =
firstLineBox
(); curr; curr = curr->nextLineBox())
179
RootInlineBox* firstRootBox =
firstLineBox
()->root();
181
LayoutUnit firstLineTop =
firstLineBox
()->logicalTopVisualOverflow(firstRootBox->lineTop());
209
if (!
firstLineBox
())
223
for (InlineFlowBox* curr =
firstLineBox
(); curr; curr = curr->nextLineBox()) {
248
if (!
firstLineBox
())
252
LayoutRect rect =
firstLineBox
()->isHorizontal() ?
282
InlineBox* firstBox = inlineContainer ? inlineContainer->firstLineBoxIncludingCulling() :
firstLineBox
();
RenderInline.cpp
92
if (
firstLineBox
()) {
105
if (
firstLineBox
()->parent()) {
106
for (InlineFlowBox* box =
firstLineBox
(); box; box = box->nextLineBox())
256
if (InlineBox* firstBox =
firstLineBox
())
537
else if (InlineFlowBox* curr =
firstLineBox
()) {
577
for (InlineFlowBox* childLine = currInline->
firstLineBox
(); childLine; childLine = childLine->nextLineBox()) {
[
all
...]
RenderInline.h
72
InlineFlowBox*
firstLineBox
() const { return m_lineBoxes.
firstLineBox
(); }
74
InlineBox* firstLineBoxIncludingCulling() const { return alwaysCreateLineBoxes() ?
firstLineBox
() : culledInlineFirstLineBox(); }
RenderBlock.h
102
InlineFlowBox*
firstLineBox
() const { return m_lineBoxes.
firstLineBox
(); }
229
RootInlineBox* firstRootBox() const { return static_cast<RootInlineBox*>(
firstLineBox
()); }
[
all
...]
RenderBlockLineLayout.cpp
[
all
...]
RenderBlock.cpp
217
if (
firstLineBox
()) {
229
for (InlineFlowBox* box =
firstLineBox
(); box; box = box->nextLineBox()) {
[
all
...]
InlineFlowBox.cpp
316
if (!lineBoxList->
firstLineBox
()->isConstructed() && !renderer()->isInlineElementContinuation()) {
319
else if (ltr && lineBoxList->
firstLineBox
() == this)
[
all
...]
RenderBox.cpp
[
all
...]