Home
last modified time | relevance | path

Searched refs:codeFlag (Results 1 - 3 of 3) sorted by relevance

/commonlibrary/ets_utils/js_util_module/util/
H A Djs_stringdecoder.cpp55 UErrorCode codeFlag = U_ZERO_ERROR; in Write() local
56 ucnv_toUnicode(conv_, &target, target + len, &source, source + length, nullptr, flush, &codeFlag); in Write()
57 if (U_FAILURE(codeFlag)) { in Write()
60 err += u_errorName(codeFlag); in Write()
64 pendingLen_ = ucnv_toUCountPending(conv_, &codeFlag); in Write()
H A Djs_textdecoder.cpp138 UErrorCode codeFlag = U_ZERO_ERROR; in Decode() local
139 ucnv_toUnicode(GetConverterPtr(), &target, target + len, &source, source + length, nullptr, flush, &codeFlag); in Decode() local
140 if (codeFlag != U_ZERO_ERROR) { in Decode()
146 SetBomFlag(arr, codeFlag, decArr, resultLength, omitInitialBom); in Decode()
217 UErrorCode codeFlag = U_ZERO_ERROR; in DecodeToString() local
218 ucnv_toUnicode(GetConverterPtr(), &target, target + len, &source, source + length, nullptr, flush, &codeFlag); in DecodeToString() local
219 if (codeFlag != U_ZERO_ERROR) { in DecodeToString()
267 void TextDecoder::SetBomFlag(const UChar *arr, const UErrorCode codeFlag, const DecodeArr decArr, in SetBomFlag() argument
273 if (U_SUCCESS(codeFlag)) { in SetBomFlag()
H A Djs_textdecoder.h137 void SetBomFlag(const UChar *arr, const UErrorCode codeFlag, const DecodeArr decArr,

Completed in 3 milliseconds