Lines Matching refs:fHeight
266 FX_FLOAT fHeight = m_pLoader->m_fHeight; in GetLayoutHeight() local
267 if (fHeight < 0.1f) { in GetLayoutHeight()
268 fHeight = 0; in GetLayoutHeight()
270 fHeight += m_pLoader->m_lineHeights.ElementAt(i); in GetLayoutHeight()
272 return fHeight; in GetLayoutHeight()
308 FX_FLOAT fHeight = fTextHeight; in DoLayout() local
309 if (fHeight < 0) in DoLayout()
310 fHeight = GetLayoutHeight(); in DoLayout()
312 m_pLoader->m_fHeight = fHeight; in DoLayout()
317 if (iBlockCount == 0 && fHeight > 0) { in DoLayout()
318 fHeight = fTextHeight - GetLayoutHeight(); in DoLayout()
319 if (fHeight > 0) { in DoLayout()
322 fHeight /= 2.0f; in DoLayout()
324 fHeight = 0; in DoLayout()
325 m_pLoader->m_fStartLineOffset = fHeight; in DoLayout()
407 bool CXFA_TextLayout::Layout(const CFX_SizeF& size, FX_FLOAT* fHeight) { in Layout() argument
423 if (fHeight) in Layout()
424 *fHeight = fLinePos; in Layout()
622 void CXFA_TextLayout::UpdateAlign(FX_FLOAT fHeight, FX_FLOAT fBottom) { in UpdateAlign() argument
623 fHeight -= fBottom; in UpdateAlign()
624 if (fHeight < 0.1f) in UpdateAlign()
629 fHeight /= 2.0f; in UpdateAlign()
639 pPiece->rtPiece.top += fHeight; in UpdateAlign()
1114 FX_FLOAT fHeight = fLinePos - m_pLoader->m_fLastPos; in AppendTextLine() local
1116 m_pLoader->m_lineHeights.Add(fHeight); in AppendTextLine()