Home
last modified time | relevance | path

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

/external/pdfium/xfa/fxfa/parser/
Dcxfa_node.h478 float CalculateWidgetAutoHeight(float fHeightCalc);
481 float GetHeightWithoutMargin(float fHeightCalc) const;
Dcxfa_node.cpp3477 float CXFA_Node::CalculateWidgetAutoHeight(float fHeightCalc) { in CalculateWidgetAutoHeight() argument
3480 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()