Home
last modified time | relevance | path

Searched refs:errorMsg_ (Results 1 – 14 of 14) sorted by relevance

/arkcompiler/ets_frontend/ets2panda/util/
Doptions.cpp257 errorMsg_ = ss.str(); in Parse()
273 errorMsg_ = "Failed to open file: "; in Parse()
274 errorMsg_.append(sourceFile_); in Parse()
286 errorMsg_ = "Error: When compiling in project mode --output key is not needed"; in Parse()
327 errorMsg_ = "Failed to open arktsconfig: "; in Parse()
328 errorMsg_.append(arktsConfig.GetValue()); in Parse()
333 errorMsg_ = "Invalid extension (available options: js, ts, as, ets)"; in Parse()
353 errorMsg_ = in Parse()
362 errorMsg_ = "js extension is not supported within current build"; in Parse()
368 errorMsg_ = "Error: --module is not supported for this extension."; in Parse()
[all …]
Doptions.h125 return errorMsg_; in ErrorMsg()
172 std::string errorMsg_; variable
/arkcompiler/ets_frontend/merge_abc/src/
Doptions.h55 return errorMsg_; in ErrorMsg()
60 std::string errorMsg_; variable
Doptions.cpp57 errorMsg_ = ss.str(); in Parse()
/arkcompiler/toolchain/tooling/
Ddispatcher.h81 std::string errorMsg_ {};
98 return errorMsg_; in GetMessage()
112 std::string errorMsg_ {};
Ddispatcher.cpp102 response.errorMsg_ = msg; in Create()
111 response.errorMsg_ = error.value(); in Create()
125 response.errorMsg_ = message; in Fail()
/arkcompiler/ets_frontend/es2panda/aot/
Doptions.cpp318 errorMsg_ = ss.str(); in Parse()
327 errorMsg_ = "--input and --base64Input can not be used simultaneously"; in Parse()
332 errorMsg_ = "--output and --base64Output can not be used simultaneously"; in Parse()
337 errorMsg_ = "[--module] and [--commonjs] can not be used simultaneously"; in Parse()
362 errorMsg_ = "Invalid extension (available options: js, ts, as)"; in Parse()
417 errorMsg_ = "The input string is not a valid base64 data"; in Parse()
477 errorMsg_ = "--generate-patch and --hot-reload can not be used simultaneously"; in Parse()
481 errorMsg_ = "--cold-fix can not be used without --generate-patch"; in Parse()
Doptions.h95 return errorMsg_; in ErrorMsg()
144 std::string errorMsg_; variable
/arkcompiler/runtime_core/static_core/runtime/regexp/ecmascript/
Dregexp_parser.h130 return PandaString(errorMsg_); in GetErrorMsg()
232 char errorMsg_[TMP_BUF_SIZE] = {0}; // NOLINT(modernize-avoid-c-arrays) variable
Dregexp_parser.cpp1515 if (memcpy_s(errorMsg_, length, errorMessage, length) != EOK) { in ParseError()
/arkcompiler/ets_runtime/ecmascript/regexp/
Dregexp_parser.h152 return CString(errorMsg_); in GetErrorMsg()
270 char errorMsg_[TMP_BUF_SIZE] = {0}; // NOLINTNEXTLINE(modernize-avoid-c-arrays) variable
Dregexp_parser.cpp1465 if (memcpy_s(errorMsg_, length, errorMessage, length) != EOK) { in ParseError()
/arkcompiler/ets_runtime/ecmascript/serializer/
Dbase_deserializer.h81 JSTaggedValue errorMsg_; member
87 … : errorType_(errorType), errorMsg_(errorMsg), objAddr_(objAddr), offset_(offset), root_(root) {} in JSErrorInfo()
Dbase_deserializer.cpp170 JSTaggedValue errorMsg = info->errorMsg_; in DeserializeJSError()
200 jsErrorInfos_.back()->errorMsg_ = JSTaggedValue(static_cast<JSTaggedType>(addr)); in HandleNewObjectEncodeFlag()