Home | History | Annotate | Download | only in fpdfdoc

Lines Matching refs:csFontName

81       ByteString csFontName = CPDF_InterForm::GetNativeFont(charSet, nullptr);
82 if (!pFont || csFontName != "Helvetica") {
199 ByteString csFontName,
213 if (csFontName.GetLength() > 0)
214 csFontName.Remove(' ');
233 if (csBaseFont == csFontName) {
289 ByteString csFontName = CPDF_InterForm::GetNativeFont(charSet, nullptr);
290 if (!csFontName.IsEmpty() &&
291 FindFont(pFormDict, pDocument, csFontName, pFont, csNameTag)) {
712 ByteString csFontName) {
713 if (!pDocument || csFontName.IsEmpty())
716 if (csFontName == "ZapfDingbats")
717 return pDocument->AddStandardFont(csFontName.c_str(), nullptr);
720 return pDocument->AddStandardFont(csFontName.c_str(), &encoding);
724 ByteString csFontName;
728 csFontName = "Helvetica";
729 return csFontName;
758 csFontName = lf.lfFaceName;
759 return csFontName;
762 return csFontName;
772 ByteString csFontName = GetNativeFont(charSet, &lf);
773 if (!csFontName.IsEmpty()) {
774 if (csFontName == "Helvetica")
775 return AddStandardFont(pDocument, csFontName);