Searched refs:errorCode (Results 1 - 7 of 7) sorted by relevance
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/intrinsics/ |
H A D | std_core_String.cpp | 193 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 D | created_object_file.cpp | 131 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 D | containers_errors.cpp | 19 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 D | containers_errors.h | 35 static PUBLIC_API JSTaggedValue BusinessError(JSThread *thread, int32_t errorCode, const char *msg);
|
/arkcompiler/ets_frontend/ets2panda/checker/ets/ |
H A D | function.cpp | 1515 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 D | builtins_string.cpp | 942 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 D | ETSchecker.h | 455 void ReportOverrideError(Signature *signature, Signature *overriddenSignature, const OverrideErrorCode &errorCode);
|
Completed in 11 milliseconds