Home
last modified time | relevance | path

Searched refs:errorCode (Results 1 - 7 of 7) sorted by relevance

/arkcompiler/runtime_core/static_core/plugins/ets/runtime/intrinsics/
H A Dstd_core_String.cpp193 UErrorCode errorCode = U_ZERO_ERROR; in StringNormalize() local
194 utf16Str = normalizer->normalize(utf16Str, errorCode); in StringNormalize()
196 if (UNLIKELY(U_FAILURE(errorCode))) { in StringNormalize()
197 std::string message = "Got error in process of normalization: '" + std::string(u_errorName(errorCode)) + "'"; in StringNormalize()
208 UErrorCode errorCode = U_ZERO_ERROR; in StdCoreStringNormalizeNFC() local
209 auto normalizer = Normalizer2::getNFCInstance(errorCode); in StdCoreStringNormalizeNFC()
210 if (UNLIKELY(U_FAILURE(errorCode))) { in StdCoreStringNormalizeNFC()
211 std::string message = "Cannot get NFC normalizer: '" + std::string(u_errorName(errorCode)) + "'"; in StdCoreStringNormalizeNFC()
220 UErrorCode errorCode = U_ZERO_ERROR; in StdCoreStringNormalizeNFD() local
221 auto normalizer = Normalizer2::getNFDInstance(errorCode); in StdCoreStringNormalizeNFD()
232 UErrorCode errorCode = U_ZERO_ERROR; StdCoreStringNormalizeNFKC() local
244 UErrorCode errorCode = U_ZERO_ERROR; StdCoreStringNormalizeNFKD() local
[all...]
/arkcompiler/runtime_core/static_core/libllvmbackend/object_code/
H A Dcreated_object_file.cpp131 std::error_code errorCode; in WriteTo() local
132 llvm::raw_fd_ostream dest(output, errorCode, llvm::sys::fs::FA_Write); in WriteTo()
134 if (errorCode) { in WriteTo()
136 llvm::Twine(errorCode.value()) + ", message = " + errorCode.message(), in WriteTo()
/arkcompiler/ets_runtime/ecmascript/containers/
H A Dcontainers_errors.cpp19 JSTaggedValue ContainerError::BusinessError(JSThread *thread, int32_t errorCode, const char *msg) in BusinessError() argument
23 JSHandle<JSTaggedValue> code(thread, JSTaggedValue(errorCode)); in BusinessError()
H A Dcontainers_errors.h35 static PUBLIC_API JSTaggedValue BusinessError(JSThread *thread, int32_t errorCode, const char *msg);
/arkcompiler/ets_frontend/ets2panda/checker/ets/
H A Dfunction.cpp1515 const OverrideErrorCode &errorCode) in ReportOverrideError()
1518 switch (errorCode) { in ReportOverrideError()
1514 ReportOverrideError(Signature *signature, Signature *overriddenSignature, const OverrideErrorCode &errorCode) ReportOverrideError() argument
/arkcompiler/ets_runtime/ecmascript/builtins/
H A Dbuiltins_string.cpp942 UErrorCode errorCode = U_ZERO_ERROR; in Normalize() local
945 icu::Normalizer::normalize(src, uForm, option, res, errorCode); in Normalize()
/arkcompiler/ets_frontend/ets2panda/checker/
H A DETSchecker.h455 void ReportOverrideError(Signature *signature, Signature *overriddenSignature, const OverrideErrorCode &errorCode);

Completed in 11 milliseconds