Searched refs:fHeightCalc (Results 1 – 2 of 2) sorted by relevance
478 float CalculateWidgetAutoHeight(float fHeightCalc);481 float GetHeightWithoutMargin(float fHeightCalc) const;
3477 float CXFA_Node::CalculateWidgetAutoHeight(float fHeightCalc) { in CalculateWidgetAutoHeight() argument3480 fHeightCalc += margin->GetTopInset() + margin->GetBottomInset(); in CalculateWidgetAutoHeight()3484 fHeightCalc = std::max(fHeightCalc, min.value()); in CalculateWidgetAutoHeight()3488 fHeightCalc = std::min(fHeightCalc, max.value()); in CalculateWidgetAutoHeight()3490 return fHeightCalc; in CalculateWidgetAutoHeight()3493 float CXFA_Node::GetHeightWithoutMargin(float fHeightCalc) const { in GetHeightWithoutMargin()3496 fHeightCalc -= margin->GetTopInset() + margin->GetBottomInset(); in GetHeightWithoutMargin()3497 return fHeightCalc; in GetHeightWithoutMargin()