Lines Matching refs:currentChar
256 uint32_t currentChar = FXFT_Get_First_Char(pFont->GetFace(), &glyphIndex); in LoadSimpleFont() local
257 if (currentChar > kMaxSimpleFontChar || glyphIndex == 0) in LoadSimpleFont()
259 fontDict->SetNewFor<CPDF_Number>("FirstChar", static_cast<int>(currentChar)); in LoadSimpleFont()
264 FXFT_Get_Next_Char(pFont->GetFace(), currentChar, &glyphIndex); in LoadSimpleFont()
268 for (uint32_t i = currentChar + 1; i < nextChar; i++) in LoadSimpleFont()
270 currentChar = nextChar; in LoadSimpleFont()
272 fontDict->SetNewFor<CPDF_Number>("LastChar", static_cast<int>(currentChar)); in LoadSimpleFont()
323 uint32_t currentChar = FXFT_Get_First_Char(pFont->GetFace(), &glyphIndex); in LoadCompositeFont() local
325 if (glyphIndex == 0 || currentChar > kMaxUnicode) in LoadCompositeFont()
331 if (currentChar > kMaxUnicode) in LoadCompositeFont()
335 to_unicode[glyphIndex] = currentChar; in LoadCompositeFont()
336 currentChar = in LoadCompositeFont()
337 FXFT_Get_Next_Char(pFont->GetFace(), currentChar, &glyphIndex); in LoadCompositeFont()