Lines Matching refs:pCharPos
1117 std::vector<TextCharPos>* pCharPos, in RenderString() argument
1120 size_t szCount = GetDisplayPos(pPiece, pCharPos); in RenderString()
1122 auto span = pdfium::make_span(pCharPos->data(), szCount); in RenderString()
1132 std::vector<TextCharPos>* pCharPos, in RenderPath() argument
1141 size_t szChars = GetDisplayPos(pPiece, pCharPos); in RenderPath()
1145 float fEndY = (*pCharPos)[0].m_Origin.y + 1.05f; in RenderPath()
1149 pt1.x = (*pCharPos)[j].m_Origin.x; in RenderPath()
1151 (*pCharPos)[j].m_FontCharWidth * pPiece->fFontSize / 1000.0f; in RenderPath()
1158 pt1.x = (*pCharPos)[0].m_Origin.x; in RenderPath()
1159 pt2.x = (*pCharPos)[szChars - 1].m_Origin.x + in RenderPath()
1160 (*pCharPos)[szChars - 1].m_FontCharWidth * pPiece->fFontSize / in RenderPath()
1168 fEndY = (*pCharPos)[0].m_Origin.y - pPiece->rtPiece.height * 0.25f; in RenderPath()
1169 pt1.x = (*pCharPos)[0].m_Origin.x; in RenderPath()
1171 (*pCharPos)[szChars - 1].m_Origin.x + in RenderPath()
1172 (*pCharPos)[szChars - 1].m_FontCharWidth * pPiece->fFontSize / 1000.0f; in RenderPath()
1210 szChars = GetDisplayPos(pPiece, pCharPos); in RenderPath()
1215 (*pCharPos)[szChars - 1].m_Origin.x + in RenderPath()
1216 (*pCharPos)[szChars - 1].m_FontCharWidth * pPiece->fFontSize / 1000.0f; in RenderPath()
1218 szChars = GetDisplayPos(pPiece, pCharPos); in RenderPath()
1222 fEndX = (*pCharPos)[0].m_Origin.x; in RenderPath()
1227 float fEndY = (*pCharPos)[0].m_Origin.y + 1.05f; in RenderPath()
1234 fEndY = (*pCharPos)[0].m_Origin.y - pPiece->rtPiece.height * 0.25f; in RenderPath()
1253 std::vector<TextCharPos>* pCharPos) { in GetDisplayPos() argument
1256 return m_pBreak->GetDisplayPos(pPiece, pCharPos); in GetDisplayPos()