Searched refs:pCharCodes (Results 1 – 4 of 4) sorted by relevance
/external/pdfium/core/src/fpdfapi/fpdf_render/ |
D | fpdf_render_text.cpp | 511 …void Load(int nChars, FX_DWORD* pCharCodes, FX_FLOAT* pCharPos, CPDF_Font* pFont, FX_FLOAT font… 526 void CPDF_CharPosList::Load(int nChars, FX_DWORD* pCharCodes, FX_FLOAT* pCharPos, CPDF_Font* pFont, in Load() argument 534 FX_DWORD CharCode = nChars == 1 ? (FX_DWORD)(FX_UINTPTR)pCharCodes : pCharCodes[iChar]; in Load() 579 FX_BOOL CPDF_TextRenderer::DrawTextPath(CFX_RenderDevice* pDevice, int nChars, FX_DWORD* pCharCodes… in DrawTextPath() argument 587 CharPosList.Load(nChars, pCharCodes, pCharPos, pFont, font_size); in DrawTextPath() 613 FX_DWORD* pCharCodes; in DrawTextString() local 617 pCharCodes = (FX_DWORD*)(FX_UINTPTR)charcode; in DrawTextString() 620 pCharCodes = FX_Alloc(FX_DWORD, nChars); in DrawTextString() 624 pCharCodes[i] = pFont->GetNextChar(str, str.GetLength(), offset); in DrawTextString() 628 cur_pos += pFont->GetCharWidthF(pCharCodes[i]) * font_size / 1000; in DrawTextString() [all …]
|
/external/pdfium/core/include/fpdfapi/ |
D | fpdf_render.h | 210 …static FX_BOOL DrawTextPath(CFX_RenderDevice* pDevice, int nChars, FX_DWORD* pCharCodes, FX_FLOAT*… 216 …static FX_BOOL DrawNormalText(CFX_RenderDevice* pDevice, int nChars, FX_DWORD* pCharCodes, FX_FLOA… 220 …static FX_BOOL DrawType3Text(CFX_RenderDevice* pDevice, int nChars, FX_DWORD* pCharCodes, FX_FLOAT…
|
D | fpdf_pageobj.h | 567 void SetText(int nChars, FX_DWORD* pCharCodes, FX_FLOAT* pKernings); 578 void SetData(int nChars, FX_DWORD* pCharCodes, FX_FLOAT* pCharPos, FX_FLOAT x, FX_FLOAT y); 580 void GetData(int& nChars, FX_DWORD*& pCharCodes, FX_FLOAT*& pCharPos) in GetData() argument 583 pCharCodes = m_pCharCodes; in GetData()
|
/external/pdfium/core/src/fpdfapi/fpdf_page/ |
D | fpdf_page.cpp | 284 void CPDF_TextObject::SetText(int nChars, FX_DWORD* pCharCodes, FX_FLOAT* pKernings) in SetText() argument 306 m_pCharCodes[index++] = pCharCodes[i]; in SetText() 314 m_pCharCodes = (FX_DWORD*)(FX_UINTPTR)pCharCodes[0]; in SetText() 576 void CPDF_TextObject::SetData(int nChars, FX_DWORD* pCharCodes, FX_FLOAT* pCharPos, FX_FLOAT x, FX_… in SetData() argument 586 m_pCharCodes = (FX_DWORD*)(FX_UINTPTR) * pCharCodes; in SetData() 589 FXSYS_memcpy32(m_pCharCodes, pCharCodes, sizeof(FX_DWORD)*nChars); in SetData()
|