Lines Matching refs:m_pTabstopContext
236 if (!m_pTabstopContext) in InitBreak()
237 m_pTabstopContext = pdfium::MakeUnique<CXFA_TextTabstopsContext>(); in InitBreak()
238 m_textParser.GetTabstops(pStyle, m_pTabstopContext.get()); in InitBreak()
239 for (const auto& stop : m_pTabstopContext->m_tabstops) in InitBreak()
396 m_pTabstopContext.reset(); in CalcSize()
415 m_pTabstopContext.reset(); in Layout()
501 m_pTabstopContext.reset(); in Layout()
859 if (m_pTabstopContext) in LoadRichText()
860 m_pTabstopContext->RemoveAll(); in LoadRichText()
951 if (!m_pTabstopContext || m_pTabstopContext->m_tabstops.empty()) in DoTabstops()
959 int32_t& iTabstopsIndex = m_pTabstopContext->m_iTabIndex; in DoTabstops()
961 if (!pdfium::IndexInBounds(m_pTabstopContext->m_tabstops, iTabstopsIndex)) in DoTabstops()
966 m_pTabstopContext->m_bTabstops = true; in DoTabstops()
972 m_pTabstopContext->m_fTabWidth = in DoTabstops()
976 if (m_pTabstopContext->m_bTabstops) { in DoTabstops()
977 uint32_t dwAlign = m_pTabstopContext->m_tabstops[iTabstopsIndex].dwAlign; in DoTabstops()
992 m_pTabstopContext->m_fLeft = in DoTabstops()
993 std::min(fLeft, m_pTabstopContext->m_fTabWidth); in DoTabstops()
994 m_pTabstopContext->m_bTabstops = false; in DoTabstops()
995 m_pTabstopContext->m_fTabWidth = 0; in DoTabstops()
997 pPiece->rtPiece.left -= m_pTabstopContext->m_fLeft; in DoTabstops()
1014 if (m_pTabstopContext) in AppendTextLine()
1015 m_pTabstopContext->Reset(); in AppendTextLine()