OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:maxLogicalWidth
(Results
1 - 7
of
7
) sorted by null
/external/webkit/Source/WebCore/rendering/
AutoTableLayout.h
52
,
maxLogicalWidth
(0)
63
int
maxLogicalWidth
;
AutoTableLayout.cpp
73
columnLayout.
maxLogicalWidth
= max(columnLayout.
maxLogicalWidth
, 1);
77
if (cell->maxPreferredLogicalWidth() > columnLayout.
maxLogicalWidth
) {
78
columnLayout.
maxLogicalWidth
= cell->maxPreferredLogicalWidth();
123
columnLayout.
maxLogicalWidth
= max(columnLayout.
maxLogicalWidth
, 1);
132
if (m_table->document()->inQuirksMode() && columnLayout.
maxLogicalWidth
> columnLayout.logicalWidth.value() && fixedContributor != maxContributor) {
138
columnLayout.
maxLogicalWidth
= max(columnLayout.
maxLogicalWidth
, columnLayout.minLogicalWidth);
168
if (colLogicalWidth.isFixed() && m_layoutStruct[effCol].
maxLogicalWidth
< colLogicalWidth.value()
[
all
...]
RenderImage.cpp
501
int
maxLogicalWidth
= !includeMaxWidth || style()->logicalMaxWidth().isUndefined() ? logicalWidth : computeReplacedLogicalWidthUsing(style()->logicalMaxWidth());
504
logicalWidth = max(minLogicalWidth, min(logicalWidth,
maxLogicalWidth
));
513
return max(minLogicalWidth, min(logicalWidth,
maxLogicalWidth
));
543
int
maxLogicalWidth
= style()->maxWidth().value() == undefinedLength ? logicalWidth :
545
logicalWidth = max(minLogicalWidth, min(logicalWidth,
maxLogicalWidth
));
RenderText.h
78
float
maxLogicalWidth
() const;
RenderReplaced.cpp
210
int
maxLogicalWidth
= !includeMaxWidth || style()->logicalMaxWidth().isUndefined() ? logicalWidth : computeReplacedLogicalWidthUsing(style()->logicalMaxWidth());
212
return max(minLogicalWidth, min(logicalWidth,
maxLogicalWidth
));
RenderBox.cpp
[
all
...]
RenderText.cpp
721
float RenderText::
maxLogicalWidth
() const
[
all
...]
Completed in 1002 milliseconds