Searched refs:bsURI (Results 1 – 4 of 4) sorted by relevance
264 CFX_WideString FX_DecodeURI(const CFX_ByteString& bsURI) in FX_DecodeURI() argument267 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()
511 void (*FFI_DoURIAction)(struct _FPDF_FORMFILLINFO* pThis, FPDF_BYTESTRING bsURI);
327 void FFI_DoURIAction(FX_LPCSTR bsURI) in FFI_DoURIAction() argument331 m_pInfo->FFI_DoURIAction(m_pInfo, bsURI); in FFI_DoURIAction()
370 CFX_WideString FX_DecodeURI(const CFX_ByteString& bsURI);