• Home
  • Raw
  • Download

Lines Matching refs:pTP

1043       auto pTP = pdfium::MakeUnique<XFA_TextPiece>();  in AppendTextLine()  local
1044 pTP->iChars = pPiece->m_iChars; in AppendTextLine()
1045 pTP->szText = pPiece->GetString(); in AppendTextLine()
1046 pTP->Widths = pPiece->GetWidths(); in AppendTextLine()
1047 pTP->iBidiLevel = pPiece->m_iBidiLevel; in AppendTextLine()
1048 pTP->iHorScale = pPiece->m_iHorizontalScale; in AppendTextLine()
1049 pTP->iVerScale = pPiece->m_iVerticalScale; in AppendTextLine()
1050 m_textParser.GetUnderline(m_pTextProvider, pStyle.Get(), pTP->iUnderline, in AppendTextLine()
1051 pTP->iPeriod); in AppendTextLine()
1053 pTP->iLineThrough); in AppendTextLine()
1054 pTP->dwColor = m_textParser.GetColor(m_pTextProvider, pStyle.Get()); in AppendTextLine()
1055 pTP->pFont = m_textParser.GetFont(m_pTextProvider, pStyle.Get()); in AppendTextLine()
1056 pTP->fFontSize = m_textParser.GetFontSize(m_pTextProvider, pStyle.Get()); in AppendTextLine()
1057 pTP->rtPiece.left = pPiece->m_iStartPos / 20000.0f; in AppendTextLine()
1058 pTP->rtPiece.width = pPiece->m_iWidth / 20000.0f; in AppendTextLine()
1059 pTP->rtPiece.height = (FX_FLOAT)pPiece->m_iFontSize * fVerScale / 20.0f; in AppendTextLine()
1062 pTP->rtPiece.top = fBaseLineTemp; in AppendTextLine()
1067 FX_FLOAT fLineHeightTmp = fBaseLineTemp + pTP->rtPiece.height; in AppendTextLine()
1076 pTP->pLinkData = pUserData ? pUserData->m_pLinkData : nullptr; in AppendTextLine()
1077 pPieceLine->m_textPieces.push_back(std::move(pTP)); in AppendTextLine()
1080 for (const auto& pTP : pPieceLine->m_textPieces) { in AppendTextLine() local
1081 FX_FLOAT& fTop = pTP->rtPiece.top; in AppendTextLine()
1083 fTop = fLinePos + fLineStep - pTP->rtPiece.height - fBaseLineTemp; in AppendTextLine()