OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:maxdescent
(Results
1 - 6
of
6
) sorted by null
/frameworks/base/core/java/android/widget/
LinearLayout.java
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
InlineFlowBox.cpp
474
void InlineFlowBox::adjustMaxAscentAndDescent(int& maxAscent, int&
maxDescent
, int maxPositionTop, int maxPositionBottom)
484
if (maxAscent +
maxDescent
< lineHeight)
485
maxDescent
= lineHeight - maxAscent;
488
if (maxAscent +
maxDescent
< lineHeight)
489
maxAscent = lineHeight -
maxDescent
;
492
if (maxAscent +
maxDescent
>= max(maxPositionTop, maxPositionBottom))
497
toInlineFlowBox(curr)->adjustMaxAscentAndDescent(maxAscent,
maxDescent
, maxPositionTop, maxPositionBottom);
502
int& maxAscent, int&
maxDescent
, bool& setMaxAscent, bool& setMaxDescent,
511
// the root box's baseline. The
maxDescent
value represents the distance of the lowest point of any box
519
// root line box, we only consider it to affect the maxAscent and
maxDescent
values if som
[
all
...]
RootInlineBox.cpp
244
int
maxDescent
= 0;
253
computeLogicalBoxHeights(this, maxPositionTop, maxPositionBottom, maxAscent,
maxDescent
, setMaxAscent, setMaxDescent, noQuirksMode,
256
if (maxAscent +
maxDescent
< max(maxPositionTop, maxPositionBottom))
257
adjustMaxAscentAndDescent(maxAscent,
maxDescent
, maxPositionTop, maxPositionBottom);
259
LayoutUnit maxHeight = maxAscent +
maxDescent
;
[
all
...]
InlineFlowBox.h
186
int& maxAscent, int&
maxDescent
, bool& setMaxAscent, bool& setMaxDescent,
188
void adjustMaxAscentAndDescent(int& maxAscent, int&
maxDescent
,
RenderDeprecatedFlexibleBox.cpp
372
LayoutUnit maxAscent = 0,
maxDescent
= 0;
402
maxDescent
= max(
maxDescent
, descent);
405
setHeight(max(yPos + maxAscent +
maxDescent
, height()));
[
all
...]
RenderFlexibleBox.cpp
[
all
...]
Completed in 351 milliseconds