Searched refs:fHeightCalc (Results 1 – 2 of 2) sorted by relevance
439 float CalculateWidgetAutoHeight(float fHeightCalc);442 float GetHeightWithoutMargin(float fHeightCalc) const;
3445 float CXFA_Node::CalculateWidgetAutoHeight(float fHeightCalc) { in CalculateWidgetAutoHeight() argument3448 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()