/arkcompiler/runtime_core/assembler/ |
H A D | context.cpp | 34 token = std::string_view(&*(tokens[number - 1].whole_line.begin() + tokens[number - 1].bound_left), in Make() 141 token = std::string_view(&*(tokens[number - 1].whole_line.begin() + tokens[number - 1].bound_left), in operator ++() 157 token = std::string_view(&*(tokens[number - 1].whole_line.begin() + tokens[number - 1].bound_left), in operator ++() 178 token = std::string_view(&*(tokens[number - 1].whole_line.begin() + tokens[number - 1].bound_left), in operator --() 196 token = std::string_view(&*(tokens[number - 1].whole_line.begin() + tokens[number - 1].bound_left), in operator --()
|
H A D | assembly-parser.cpp | 146 << "): " << context_.tokens[context_.number - 1].whole_line; in ParseFieldType() 222 LOG(DEBUG, ASSEMBLER) << "started parsing of array (line " << line_stric_ << "): " << tokens[0].whole_line; in ParseAsArray() 239 LOG(DEBUG, ASSEMBLER) << "array body is open, line " << line_stric_ << ": " << tokens[0].whole_line; in ParseAsArray() 269 LOG(DEBUG, ASSEMBLER) << "array body is closed, line " << line_stric_ << ": " << tokens[0].whole_line; in ParseAsArray() 375 << "): " << context_.tokens[context_.number - 1].whole_line; in ParseArrayElementType() 537 LOG(DEBUG, ASSEMBLER) << "started parsing of record (line " << line_stric_ << "): " << tokens[0].whole_line; in ParseAsRecord() 557 LOG(DEBUG, ASSEMBLER) << "record body is open, line " << line_stric_ << ": " << tokens[0].whole_line; in ParseAsRecord() 569 LOG(DEBUG, ASSEMBLER) << "record body is closed, line " << line_stric_ << ": " << tokens[0].whole_line; in ParseAsRecord() 582 LOG(DEBUG, ASSEMBLER) << "started parsing of function (line " << line_stric_ << "): " << tokens[0].whole_line; in ParseAsFunction() 602 LOG(DEBUG, ASSEMBLER) << "function body is open, line " << line_stric_ << ": " << tokens[0].whole_line; in ParseAsFunction() [all...] |
H A D | assembly-file-location.h | 23 std::string whole_line = ""; /* The line in which the field is defined */ member in panda::pandasm::FileLocation 32 : whole_line(std::move(f_c)), bound_left(b_l), bound_right(b_r), line_number(l_n), is_defined(d) in FileLocation()
|
H A D | assembly-debug.h | 26 std::string whole_line = ""; // TODO(mbolshov): redundant given file and line_number member 42 : line_number(l_n), whole_line(std::move(f_c)), bound_left(b_l), bound_right(b_r) in Ins()
|
H A D | assembly-parser.h | 113 context_.tokens[static_cast<int>(context_.number) + token_shift - 1].whole_line); in GetError() 122 context_.tokens[context_.number - 1].whole_line, Error::ErrorClass::WARNING); in GetWarning() 232 context_.tokens[context_.number - 1].whole_line, flag, line_stric_); in TryEmplaceInTable() 256 iter->second.file_location->whole_line = context_.tokens[context_.number - 1].whole_line; in AddObjectInTable() 271 context_.tokens[context_.number - 1].whole_line, flag, line_stric_); in TryEmplaceInTable()
|
H A D | error.h | 106 std::string whole_line; member 119 whole_line(std::move(buff)), in Error()
|
H A D | assembly-field.h | 33 std::string whole_line = ""; /* The line in which the field is defined */ member
|
H A D | lexer.h | 61 std::string whole_line; member 69 : whole_line(std::move(beg_of_line)), bound_left(b_l), bound_right(b_r), type(t) in Token()
|
H A D | assembly-function.h | 42 std::string whole_line; member
|
H A D | pandasm.cpp | 43 std::cerr << sos.str() << e.whole_line << std::endl; in PrintError()
|
H A D | lexer.cpp | 180 << std::string_view(&*(f_i.whole_line.begin() + f_i.bound_left), in TokenizeString()
|
/arkcompiler/ets_frontend/merge_abc/src/ |
H A D | assemblyFieldProto.cpp | 27 protoField.set_wholeline(field.whole_line); in Serialize() 40 field.whole_line = protoField.wholeline(); in Deserialize()
|
H A D | assemblyDebugProto.cpp | 23 protoDebug.set_wholeline(debug.whole_line); in Serialize() 32 debug.whole_line = protoDebug.wholeline(); in Deserialize()
|
H A D | assemblyFileLocationProto.cpp | 21 protoLocation.set_wholeline(location.whole_line); in Serialize()
|
H A D | assemblyFunctionProto.cpp | 22 protoBlock.set_wholeline(block.whole_line); in Serialize() 32 block.whole_line = protoBlock.wholeline(); in Deserialize()
|
/arkcompiler/runtime_core/abc2program/ |
H A D | dump_utils.cpp | 115 debug_ins.whole_line = input.ins_debug.whole_line; in DeepCopyIns() 125 res.whole_line = catch_block.whole_line; in DeepCopyCatchBlock()
|
/arkcompiler/runtime_core/compiler/tests/ |
H A D | panda_runner.h | 48 << res.Error().whole_line; in Parse() 94 << res.Error().whole_line; in Run()
|
H A D | unit_test.cpp | 92 << parser.ShowError().whole_line << std::endl; in ParseToFile()
|
/arkcompiler/ets_frontend/es2panda/compiler/debugger/ |
H A D | debuginfoDumper.cpp | 140 WriteProperty("wholeLine", posInfo.whole_line, false); in WritePosInfo()
|
/arkcompiler/runtime_core/bytecode_optimizer/tests/ |
H A D | runtime_adapter_test.cpp | 34 << parser.ShowError().whole_line << std::endl; in ParseAndEmit()
|
H A D | common.h | 190 << parser.ShowError().whole_line << std::endl; in ParseToGraph()
|