Home
last modified time | relevance | path

Searched refs:bsName (Results 1 – 8 of 8) sorted by relevance

/external/pdfium/core/fxcrt/xml/
Dcxml_element.cpp16 ByteStringView* bsName) { in SplitQualifiedName() argument
23 *bsName = bsFullName.Right(bsFullName.GetLength() - (iStart.value() + 1)); in SplitQualifiedName()
25 *bsName = bsFullName; in SplitQualifiedName()
90 ByteStringView bsName; in GetAttrValue() local
91 SplitQualifiedName(name, &bsSpace, &bsName); in GetAttrValue()
94 const WideString* pValue = Lookup(ByteString(bsSpace), ByteString(bsName)); in GetAttrValue()
102 ByteStringView bsName; in GetAttrInteger() local
103 SplitQualifiedName(name, &bsSpace, &bsName); in GetAttrInteger()
105 const WideString* pwsValue = Lookup(ByteString(bsSpace), ByteString(bsName)); in GetAttrInteger()
/external/pdfium/core/fxge/android/
Dcfpf_skiafontmgr.cpp196 ByteString bsName(bsFacename); in FPF_SkiaMaybeSymbol() local
197 bsName.MakeLower(); in FPF_SkiaMaybeSymbol()
198 return bsName.Contains("symbol"); in FPF_SkiaMaybeSymbol()
202 ByteString bsName(bsFacename); in FPF_SkiaMaybeArabic() local
203 bsName.MakeLower(); in FPF_SkiaMaybeArabic()
204 return bsName.Contains("arabic"); in FPF_SkiaMaybeArabic()
/external/pdfium/core/fpdfapi/font/
Dcpdf_cmap.cpp251 const ByteString& bsName, in LoadPredefined() argument
253 m_PredefinedCMap = bsName; in LoadPredefined()
256 m_bVertical = bsName.Last() == 'V'; in LoadPredefined()
286 m_pEmbedMap = FPDFAPI_FindEmbeddedCMap(bsName, m_Charset, m_Coding); in LoadPredefined()
/external/pdfium/core/fpdfapi/cmaps/
Dfpdf_cmaps.cpp23 const FXCMAP_CMap* FPDFAPI_FindEmbeddedCMap(const ByteString& bsName, in FPDFAPI_FindEmbeddedCMap() argument
33 if (bsName == pCMaps[i].m_Name) in FPDFAPI_FindEmbeddedCMap()
/external/pdfium/xfa/fgas/font/
Dcfgas_fontmgr.cpp475 ByteString bsName; in GetNextFile() local
480 if (!FX_GetNextFile(pCurHandle, &bsName, &bFolder)) { in GetNextFile()
492 if (bsName == "." || bsName == "..") in GetNextFile()
497 m_FolderQueue.back().bsParentPath + bsFolderSeparator + bsName; in GetNextFile()
505 bsName = m_FolderQueue.back().bsParentPath + bsFolderSeparator + bsName; in GetNextFile()
508 return bsName; in GetNextFile()
/external/pdfium/core/fpdfapi/page/
Dcpdf_streamcontentparser.cpp309 void CPDF_StreamContentParser::AddNameParam(const ByteStringView& bsName) { in AddNameParam() argument
311 if (bsName.GetLength() > 32) { in AddNameParam()
314 m_pDocument->GetByteStringPool(), PDF_NameDecode(bsName)); in AddNameParam()
317 if (bsName.Contains('#')) { in AddNameParam()
318 ByteString str = PDF_NameDecode(bsName); in AddNameParam()
322 memcpy(param.m_Name.m_Buffer, bsName.raw_str(), bsName.GetLength()); in AddNameParam()
323 param.m_Name.m_Len = bsName.GetLength(); in AddNameParam()
/external/pdfium/core/fxge/
Dcfx_folderfontinfo.cpp294 const ByteString& bsName = it.first; in FindFont() local
299 if (bMatchName && !bsName.Contains(family)) in FindFont()
/external/pdfium/fpdfsdk/
Dfpdfview.cpp1496 ByteString bsName; in FPDF_GetNamedDest() local
1498 bsName = it.first; in FPDF_GetNamedDest()
1506 wsName = PDF_DecodeText(bsName); in FPDF_GetNamedDest()