Home
last modified time | relevance | path

Searched refs:fHeightCalc (Results 1 – 2 of 2) sorted by relevance

/external/pdfium/xfa/fxfa/parser/
Dcxfa_node.h439 float CalculateWidgetAutoHeight(float fHeightCalc);
442 float GetHeightWithoutMargin(float fHeightCalc) const;
Dcxfa_node.cpp3445 float CXFA_Node::CalculateWidgetAutoHeight(float fHeightCalc) { in CalculateWidgetAutoHeight() argument
3448 fHeightCalc += margin->GetTopInset() + margin->GetBottomInset(); in CalculateWidgetAutoHeight()
3452 fHeightCalc = std::max(fHeightCalc, *min); in CalculateWidgetAutoHeight()
3456 fHeightCalc = std::min(fHeightCalc, *max); in CalculateWidgetAutoHeight()
3458 return fHeightCalc; in CalculateWidgetAutoHeight()
3461 float CXFA_Node::GetHeightWithoutMargin(float fHeightCalc) const { in GetHeightWithoutMargin()
3464 fHeightCalc -= margin->GetTopInset() + margin->GetBottomInset(); in GetHeightWithoutMargin()
3465 return fHeightCalc; in GetHeightWithoutMargin()