Home
last modified time | relevance | path

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

/external/pdfium/xfa/fxfa/
Dcxfa_widgetacc.h203 float CalculateWidgetAutoHeight(float fHeightCalc);
206 float GetHeightWithoutMargin(float fHeightCalc);
Dcxfa_widgetacc.cpp984 float CXFA_WidgetAcc::CalculateWidgetAutoHeight(float fHeightCalc) { in CalculateWidgetAutoHeight() argument
987 fHeightCalc += margin->GetTopInset() + margin->GetBottomInset(); in CalculateWidgetAutoHeight()
991 fHeightCalc = std::max(fHeightCalc, *min); in CalculateWidgetAutoHeight()
995 fHeightCalc = std::min(fHeightCalc, *max); in CalculateWidgetAutoHeight()
997 return fHeightCalc; in CalculateWidgetAutoHeight()
1000 float CXFA_WidgetAcc::GetHeightWithoutMargin(float fHeightCalc) { in GetHeightWithoutMargin() argument
1003 fHeightCalc -= margin->GetTopInset() + margin->GetBottomInset(); in GetHeightWithoutMargin()
1004 return fHeightCalc; in GetHeightWithoutMargin()