Home
last modified time | relevance | path

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

/external/pdfium/core/src/fxcrt/
Dfx_basic_util.cpp264 CFX_WideString FX_DecodeURI(const CFX_ByteString& bsURI) in FX_DecodeURI() argument
267 int nLength = bsURI.GetLength(); in FX_DecodeURI()
269 …if (i < nLength - 2 && bsURI[i] == '%' && FX_IsXDigit(bsURI[i + 1]) && FX_IsXDigit(bsURI[i + 2])) { in FX_DecodeURI()
270 rURI += (FX_HexToI(bsURI[i + 1]) << 4 | FX_HexToI(bsURI[i + 2])); in FX_DecodeURI()
273 rURI += bsURI[i]; in FX_DecodeURI()
/external/pdfium/fpdfsdk/include/
Dfpdfformfill.h511 void (*FFI_DoURIAction)(struct _FPDF_FORMFILLINFO* pThis, FPDF_BYTESTRING bsURI);
Dfsdk_mgr.h327 void FFI_DoURIAction(FX_LPCSTR bsURI) in FFI_DoURIAction() argument
331 m_pInfo->FFI_DoURIAction(m_pInfo, bsURI); in FFI_DoURIAction()
/external/pdfium/core/include/fxcrt/
Dfx_basic.h370 CFX_WideString FX_DecodeURI(const CFX_ByteString& bsURI);