/arkcompiler/runtime_core/libpandabase/os/ |
H A D | error.h | 28 explicit Error(int err) : err_(err) {} in Error() 30 explicit Error(std::string msg) : err_(std::move(msg)) {} in Error() 40 std::variant<int, std::string> err_; member in panda::os::Error
|
/arkcompiler/runtime_core/platforms/windows/libpandabase/ |
H A D | error.cpp | 24 if (std::holds_alternative<std::string>(err_)) { in ToString() 25 return std::get<std::string>(err_); in ToString() 28 int err = std::get<int>(err_); in ToString()
|
/arkcompiler/runtime_core/static_core/platforms/windows/libpandabase/ |
H A D | error.cpp | 25 if (std::holds_alternative<std::string>(err_)) { in ToString() 26 return std::get<std::string>(err_); in ToString() 29 int err = std::get<int>(err_); in ToString()
|
/arkcompiler/runtime_core/static_core/libpandabase/os/ |
H A D | error.h | 28 explicit Error(int err) : err_(err) {} in Error() 30 explicit Error(std::string msg) : err_(std::move(msg)) {} in Error() 40 std::variant<int, std::string> err_; member in ark::os::Error
|
/arkcompiler/runtime_core/platforms/unix/libpandabase/ |
H A D | error.cpp | 30 if (std::holds_alternative<std::string>(err_)) { in ToString() 31 return std::get<std::string>(err_); in ToString() 34 int err = std::get<int>(err_); in ToString()
|
/arkcompiler/runtime_core/static_core/platforms/unix/libpandabase/ |
H A D | error.cpp | 29 if (std::holds_alternative<std::string>(err_)) { in ToString() 30 return std::get<std::string>(err_); in ToString() 33 int err = std::get<int>(err_); in ToString()
|
/arkcompiler/ets_frontend/ets2panda/util/ |
H A D | plugin.h | 40 return err_; in Error() 76 os::Error err_; member in ark::es2panda::util::Plugin
|
H A D | plugin.cpp | 25 Plugin::Plugin(util::StringView const &name) : name_ {name}, err_ {0}, h_ {nullptr} in Plugin() 32 err_ = loadRes.Error();
|
/arkcompiler/runtime_core/assembler/ |
H A D | assembly-parser.cpp | 654 if (open_ || err_.err != Error::ErrorType::ERR_NONE) { in ParseResetFunctionLabelsAndParams() 770 if (err_.err != Error::ErrorType::ERR_NONE) { in ParseResetTables() 776 if (err_.err != Error::ErrorType::ERR_NONE) { in ParseResetTables() 944 if (!context_.Mask() && err_.err == Error::ErrorType::ERR_NONE) { in ParseAfterLine() 948 if (err_.err != Error::ErrorType::ERR_NONE) { in ParseAfterLine() 966 if (open_ && err_.err == Error::ErrorType::ERR_NONE) { in ParseAfterMainLoop() 974 if (err_.err != Error::ErrorType::ERR_NONE) { in ParseAfterMainLoop() 975 return Unexpected(err_); in ParseAfterMainLoop() 1075 err_ = context_.err; in SetError()
|
H A D | assembly-parser.h | 79 return err_; in ShowError() 99 panda::pandasm::Error err_; member in panda::pandasm::Parser
|
H A D | lexer.cpp | 187 return std::pair<std::vector<Token>, Error>(lines_.back().tokens, err_); in TokenizeString() 250 err_ = Error(std::string("Missing terminating ") + quote + " character", 0, in LexString()
|
H A D | lexer.h | 103 Error err_; member in panda::pandasm::Lexer
|
/arkcompiler/runtime_core/static_core/assembler/ |
H A D | assembly-parser.h | 79 return err_; in ShowError() 100 ark::pandasm::Error err_; member in ark::pandasm::Parser
|
H A D | lexer.h | 110 Error err_; member in ark::pandasm::Lexer
|
H A D | assembly-parser.cpp | 690 if (open_ || err_.err != Error::ErrorType::ERR_NONE) { in ParseResetFunctionLabelsAndParams() 827 if (err_.err != Error::ErrorType::ERR_NONE) { in ParseResetTables() 833 if (err_.err != Error::ErrorType::ERR_NONE) { in ParseResetTables() 1001 if (!context_.Mask() && err_.err == Error::ErrorType::ERR_NONE) { in ParseAfterLine() 1005 if (err_.err != Error::ErrorType::ERR_NONE) { in ParseAfterLine() 1023 if (open_ && err_.err == Error::ErrorType::ERR_NONE) { in ParseAfterMainLoop() 1031 if (err_.err != Error::ErrorType::ERR_NONE) { in ParseAfterMainLoop() 1032 return Unexpected(err_); in ParseAfterMainLoop() 1138 err_ = context_.err; in SetError()
|
H A D | lexer.cpp | 184 return std::pair<std::vector<Token>, Error>(lines_.back().tokens, err_); in TokenizeString() 245 err_ = Error(std::string("Missing terminating ") + quote + " character", 0, in LexString()
|