Home
last modified time | relevance | path

Searched refs:wsStr (Results 1 – 6 of 6) sorted by relevance

/external/pdfium/core/fxcrt/
Dfx_string.cpp18 ByteString FX_UTF8Encode(WideStringView wsStr) { in FX_UTF8Encode() argument
20 for (size_t i = 0; i < wsStr.GetLength(); ++i) in FX_UTF8Encode()
21 encoder.Input(wsStr[i]); in FX_UTF8Encode()
137 float StringToFloat(WideStringView wsStr) { in StringToFloat() argument
138 return StringToFloat(FX_UTF8Encode(wsStr).AsStringView()); in StringToFloat()
149 double StringToDouble(WideStringView wsStr) { in StringToDouble() argument
150 return StringToDouble(FX_UTF8Encode(wsStr).AsStringView()); in StringToDouble()
Dfx_string.h23 ByteString FX_UTF8Encode(WideStringView wsStr);
27 float StringToFloat(WideStringView wsStr);
31 double StringToDouble(WideStringView wsStr);
/external/pdfium/xfa/fgas/layout/
Dcfgas_txtbreak.h53 WideString wsStr; member
Dcfgas_txtbreak.cpp637 const wchar_t* pStr = run.wsStr.c_str(); in GetDisplayPos()
884 const wchar_t* pStr = run.wsStr.c_str(); in GetCharRects()
/external/pdfium/core/fpdfdoc/
Dcpdf_interactiveform.cpp945 WideString wsStr = CPDF_FileSpec::EncodeFileName(pdf_path); in ExportToFDF() local
946 pNewDict->SetNewFor<CPDF_String>(pdfium::stream::kF, wsStr.ToDefANSI(), in ExportToFDF()
948 pNewDict->SetNewFor<CPDF_String>("UF", wsStr.AsStringView()); in ExportToFDF()
/external/pdfium/xfa/fde/
Dcfde_textout.cpp513 tr.wsStr = m_wsText.Substr(pPiece->start_char); in GetDisplayPos()