Home
last modified time | relevance | path

Searched refs:pCharCodes (Results 1 – 4 of 4) sorted by relevance

/external/pdfium/core/src/fpdfapi/fpdf_render/
Dfpdf_render_text.cpp524 …void Load(int nChars, FX_DWORD* pCharCodes, FX_FLOAT* pCharPos, CPDF_Font* pFont, FX_FLOAT font…
539 void CPDF_CharPosList::Load(int nChars, FX_DWORD* pCharCodes, FX_FLOAT* pCharPos, CPDF_Font* pFont, in Load() argument
548 FX_DWORD CharCode = nChars == 1 ? (FX_DWORD)(FX_UINTPTR)pCharCodes : pCharCodes[iChar]; in Load()
593 FX_BOOL CPDF_TextRenderer::DrawTextPath(CFX_RenderDevice* pDevice, int nChars, FX_DWORD* pCharCodes in DrawTextPath() argument
601 CharPosList.Load(nChars, pCharCodes, pCharPos, pFont, font_size); in DrawTextPath()
627 FX_DWORD* pCharCodes; in DrawTextString() local
631 pCharCodes = (FX_DWORD*)(FX_UINTPTR)charcode; in DrawTextString()
634 pCharCodes = FX_Alloc(FX_DWORD, nChars); in DrawTextString()
638 pCharCodes[i] = pFont->GetNextChar(str, offset); in DrawTextString()
642 cur_pos += pFont->GetCharWidthF(pCharCodes[i]) * font_size / 1000; in DrawTextString()
[all …]
/external/pdfium/core/include/fpdfapi/
Dfpdf_render.h225 …static FX_BOOL DrawTextPath(CFX_RenderDevice* pDevice, int nChars, FX_DWORD* pCharCodes, FX_FLOAT*…
231 …static FX_BOOL DrawNormalText(CFX_RenderDevice* pDevice, int nChars, FX_DWORD* pCharCodes, FX_FLOA…
235 …static FX_BOOL DrawType3Text(CFX_RenderDevice* pDevice, int nChars, FX_DWORD* pCharCodes, FX_FLOAT…
Dfpdf_pageobj.h570 void SetText(int nChars, FX_DWORD* pCharCodes, FX_FLOAT* pKernings);
581 void SetData(int nChars, FX_DWORD* pCharCodes, FX_FLOAT* pCharPos, FX_FLOAT x, FX_FLOAT y);
583 void GetData(int& nChars, FX_DWORD*& pCharCodes, FX_FLOAT*& pCharPos) in GetData() argument
586 pCharCodes = m_pCharCodes; in GetData()
/external/pdfium/core/src/fpdfapi/fpdf_page/
Dfpdf_page.cpp286 void CPDF_TextObject::SetText(int nChars, FX_DWORD* pCharCodes, FX_FLOAT* pKernings) in SetText() argument
308 m_pCharCodes[index++] = pCharCodes[i]; in SetText()
317 m_pCharCodes = (FX_DWORD*)(FX_UINTPTR)pCharCodes[0]; in SetText()
582 void CPDF_TextObject::SetData(int nChars, FX_DWORD* pCharCodes, FX_FLOAT* pCharPos, FX_FLOAT x, FX_… in SetData() argument
592 m_pCharCodes = (FX_DWORD*)(FX_UINTPTR) * pCharCodes; in SetData()
595 FXSYS_memcpy32(m_pCharCodes, pCharCodes, sizeof(FX_DWORD)*nChars); in SetData()