OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:pageLogicalHeight
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/
LayoutState.h
81
LayoutUnit
pageLogicalHeight
() const { return m_pageLogicalHeight; }
RenderRegion.cpp
62
LayoutUnit RenderRegion::
pageLogicalHeight
() const
303
if (!isRenderRegionSet() && (oldRegionRect.width() != pageLogicalWidth() || oldRegionRect.height() !=
pageLogicalHeight
())) {
RenderView.h
158
LayoutUnit
pageLogicalHeight
() const { return m_pageLogicalHeight; }
RenderFlowThread.cpp
175
LayoutUnit regionLogicalHeight = region->
pageLogicalHeight
();
528
return region->
pageLogicalHeight
();
538
LayoutUnit
pageLogicalHeight
= region->
pageLogicalHeight
();
539
LayoutUnit pageLogicalBottom = pageLogicalTop +
pageLogicalHeight
;
544
remainingHeight = intMod(remainingHeight,
pageLogicalHeight
);
[
all
...]
RenderBlockFlow.cpp
187
bool RenderBlockFlow::relayoutForPagination(bool hasSpecifiedPageLogicalHeight, LayoutUnit
pageLogicalHeight
, LayoutStateMaintainer& statePusher)
203
LayoutUnit columnHeight =
pageLogicalHeight
;
209
if (!
pageLogicalHeight
) {
214
} else if (layoutOverflowLogicalBottom > boundedMultiply(
pageLogicalHeight
, desiredColumnCount)) {
219
if (columnHeight && columnHeight !=
pageLogicalHeight
) {
227
if (
pageLogicalHeight
)
228
colInfo->setColumnCountAndHeight(ceilf((float)layoutOverflowLogicalBottom /
pageLogicalHeight
),
pageLogicalHeight
);
240
void RenderBlockFlow::layoutBlock(bool relayoutChildren, LayoutUnit
pageLogicalHeight
)
264
checkForPaginationLogicalHeightChange(
pageLogicalHeight
, pageLogicalHeightChanged, hasSpecifiedPageLogicalHeight)
[
all
...]
RenderBlock.cpp
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/page/
PrintContext.cpp
108
int
pageLogicalHeight
= isHorizontal ? pageHeight : pageWidth;
137
unsigned pageCount = ceilf((float)docLogicalHeight /
pageLogicalHeight
);
140
blockDirectionStart + i *
pageLogicalHeight
:
141
blockDirectionStart - (i + 1) *
pageLogicalHeight
;
147
IntRect pageRect(pageLogicalLeft, pageLogicalTop, pageLogicalWidth,
pageLogicalHeight
);
154
IntRect pageRect(pageLogicalLeft, pageLogicalTop, pageLogicalWidth,
pageLogicalHeight
);
/external/chromium_org/third_party/WebKit/Source/core/frame/
FrameView.cpp
[
all
...]
Completed in 161 milliseconds