OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:rootbox
(Results
1 - 10
of
10
) sorted by null
/external/webkit/Source/WebCore/rendering/
RenderInline.cpp
501
RootInlineBox*
rootBox
= currBox->inlineBoxWrapper()->root();
502
int logicalTop =
rootBox
->logicalTop() + (
rootBox
->renderer()->style(
rootBox
->isFirstLineStyle())->font().fontMetrics().ascent() - container->style(
rootBox
->isFirstLineStyle())->font().fontMetrics().ascent());
503
int logicalHeight = container->style(
rootBox
->isFirstLineStyle())->font().fontMetrics().height();
518
RootInlineBox*
rootBox
= childLine->root();
519
int logicalTop =
rootBox
->logicalTop() + (
rootBox
->renderer()->style(
rootBox
->isFirstLineStyle())->font().fontMetrics().ascent() - container->style(rootBox->isFirstLineStyle() (…)
[
all
...]
RenderRubyRun.cpp
237
RootInlineBox*
rootBox
= rt->lastRootBox();
238
if (
rootBox
) {
241
lastLineRubyTextBottom =
rootBox
->logicalBottomLayoutOverflow();
247
RootInlineBox*
rootBox
= rb->firstRootBox();
248
if (
rootBox
)
249
firstLineTop =
rootBox
->logicalTopLayoutOverflow();
257
RootInlineBox*
rootBox
= rb->lastRootBox();
258
if (
rootBox
)
259
lastLineBottom =
rootBox
->logicalBottomLayoutOverflow();
RenderView.cpp
226
RenderBox*
rootBox
= rootRenderer->isBox() ? toRenderBox(rootRenderer) : 0;
227
rootFillsViewport =
rootBox
&& !
rootBox
->x() && !
rootBox
->y() &&
rootBox
->width() >= width() &&
rootBox
->height() >= height();
InlineFlowBox.cpp
478
void InlineFlowBox::computeLogicalBoxHeights(RootInlineBox*
rootBox
, int& maxPositionTop, int& maxPositionBottom,
506
rootBox
->ascentAndDescentForBox(
rootBox
, textBoxDataMap, ascent, descent, affectsAscent, affectsDescent);
534
curr->setLogicalTop(
rootBox
->verticalPositionForBox(curr, verticalPositionCache));
538
rootBox
->ascentAndDescentForBox(curr, textBoxDataMap, ascent, descent, affectsAscent, affectsDescent);
569
inlineFlowBox->computeLogicalBoxHeights(
rootBox
, maxPositionTop, maxPositionBottom, maxAscent, maxDescent,
[
all
...]
RenderListItem.cpp
268
RootInlineBox*
rootBox
= m_marker->inlineBoxWrapper()->root();
269
int lineTop =
rootBox
->lineTop();
270
int lineBottom =
rootBox
->lineBottom();
RenderText.cpp
499
RootInlineBox*
rootBox
= box->root();
500
if (pointBlockDirection >=
rootBox
->selectionTop()) {
501
int bottom =
rootBox
->selectionBottom();
502
if (
rootBox
->nextRootBox())
503
bottom = min(bottom,
rootBox
->nextRootBox()->lineTop());
[
all
...]
RenderBox.cpp
[
all
...]
RenderBlock.cpp
[
all
...]
/external/webkit/Source/WebCore/rendering/svg/
RenderSVGText.cpp
212
RootInlineBox*
rootBox
= firstRootBox();
213
if (!
rootBox
)
216
ASSERT(
rootBox
->isSVGRootInlineBox());
217
ASSERT(!
rootBox
->nextRootBox());
220
InlineBox* closestBox = static_cast<SVGRootInlineBox*>(
rootBox
)->closestLeafChildForPosition(pointInContents);
/external/webkit/Source/WebCore/editing/
visible_units.cpp
351
RootInlineBox *
rootBox
= rootBoxForLine(c);
352
if (!
rootBox
) {
365
InlineBox *startBox =
rootBox
->firstLeafChild();
399
RootInlineBox *
rootBox
= rootBoxForLine(c);
400
if (!
rootBox
) {
413
InlineBox *endBox =
rootBox
->lastLeafChild();
[
all
...]
Completed in 1202 milliseconds