/arkcompiler/runtime_core/static_core/assembler/ |
H A D | context.cpp | 34 token = std::string_view(&*(tokens[number - 1].wholeLine.begin() + tokens[number - 1].boundLeft), in Make() 146 token = std::string_view(&*(tokens[number - 1].wholeLine.begin() + tokens[number - 1].boundLeft), in operator ++() 162 token = std::string_view(&*(tokens[number - 1].wholeLine.begin() + tokens[number - 1].boundLeft), in operator ++() 183 token = std::string_view(&*(tokens[number - 1].wholeLine.begin() + tokens[number - 1].boundLeft), in operator --() 201 token = std::string_view(&*(tokens[number - 1].wholeLine.begin() + tokens[number - 1].boundLeft), in operator --()
|
H A D | assembly-file-location.h | 24 std::string wholeLine; /* The line in which the field is defined */ member in ark::pandasm::FileLocation 33 : wholeLine(std::move(fC)), boundLeft(bL), boundRight(bR), lineNumber(lN), isDefined(d) in FileLocation()
|
H A D | assembly-debug.h | 28 std::string wholeLine; // NOTE(mbolshov): redundant given file and line_number member 44 : lineNumber(lN), wholeLine(std::move(fC)), boundLeft(bL), boundRight(bR) in Ins()
|
H A D | assembly-parser.h | 114 context_.tokens[static_cast<int>(context_.number) + tokenShift - 1].wholeLine); in GetError() 123 context_.tokens[context_.number - 1].wholeLine, Error::ErrorClass::WARNING); in GetWarning() 237 context_.tokens[context_.number - 1].wholeLine, flag, lineStric_); in TryEmplaceInTable() 262 iter->second.fileLocation->wholeLine = context_.tokens[context_.number - 1].wholeLine; in AddObjectInTable() 278 context_.tokens[context_.number - 1].wholeLine, flag, lineStric_); in TryEmplaceInTable()
|
H A D | assembly-parser.cpp | 147 << "): " << context_.tokens[context_.number - 1].wholeLine; in ParseFieldType() 219 LOG(DEBUG, ASSEMBLER) << "started parsing of array (line " << lineStric_ << "): " << tokens[0].wholeLine; in ParseAsArray() 236 LOG(DEBUG, ASSEMBLER) << "array body is open, line " << lineStric_ << ": " << tokens[0].wholeLine; in ParseAsArray() 266 LOG(DEBUG, ASSEMBLER) << "array body is closed, line " << lineStric_ << ": " << tokens[0].wholeLine; in ParseAsArray() 380 << "): " << context_.tokens[context_.number - 1].wholeLine; in ParseArrayElementType() 552 LOG(DEBUG, ASSEMBLER) << "started parsing of record (line " << lineStric_ << "): " << tokens[0].wholeLine; in ParseAsRecord() 572 LOG(DEBUG, ASSEMBLER) << "record body is open, line " << lineStric_ << ": " << tokens[0].wholeLine; in ParseAsRecord() 584 LOG(DEBUG, ASSEMBLER) << "record body is closed, line " << lineStric_ << ": " << tokens[0].wholeLine; in ParseAsRecord() 597 LOG(DEBUG, ASSEMBLER) << "started parsing of function (line " << lineStric_ << "): " << tokens[0].wholeLine; in ParseAsFunction() 617 LOG(DEBUG, ASSEMBLER) << "function body is open, line " << lineStric_ << ": " << tokens[0].wholeLine; in ParseAsFunction() [all...] |
H A D | error.h | 108 std::string wholeLine; member 122 wholeLine(std::move(buff)), in Error()
|
H A D | assembly-field.h | 34 std::string wholeLine; /* The line in which the field is defined */ member
|
H A D | lexer.h | 67 std::string wholeLine; member 75 : wholeLine(std::move(begOfLine)), boundLeft(bL), boundRight(bR), type(t) in Token()
|
H A D | assembly-function.h | 43 std::string wholeLine; member
|
H A D | pandasm.cpp | 46 std::cerr << sos.str() << e.wholeLine << std::endl; in PrintError()
|
H A D | lexer.cpp | 178 << std::string_view(&*(fI.wholeLine.begin() + fI.boundLeft), fI.boundRight - fI.boundLeft) in TokenizeString()
|
/arkcompiler/ets_frontend/merge_abc/src/ |
H A D | assemblyFileLocationProto.cpp | 31 std::string wholeLine = protoLocation.wholeline(); in Deserialize() local 32 panda::pandasm::FileLocation fileLocation(wholeLine, protoLocation.boundleft(), protoLocation.boundright(), in Deserialize()
|
/arkcompiler/runtime_core/static_core/compiler/tests/ |
H A D | panda_runner.h | 54 << res.Error().wholeLine; in Parse() 103 << res.Error().wholeLine; in Run()
|
H A D | unit_test.cpp | 92 << parser.ShowError().wholeLine << std::endl; in ParseToFile()
|
/arkcompiler/ets_frontend/ets2panda/compiler/debugger/ |
H A D | debuginfoDumper.cpp | 137 WriteProperty("wholeLine", posInfo.wholeLine, false); in WritePosInfo()
|
/arkcompiler/runtime_core/static_core/bytecode_optimizer/tests/ |
H A D | runtime_adapter_test.cpp | 34 << parser.ShowError().wholeLine << std::endl; in ParseAndEmit()
|
H A D | common.h | 199 << parser.ShowError().wholeLine << std::endl; in ParseToGraph()
|
/arkcompiler/runtime_core/static_core/static_linker/tests/ |
H A D | linker_test.cpp | 137 return p.ShowError().message + "\n" + p.ShowError().wholeLine; in Build()
|
/arkcompiler/ets_frontend/ets2panda/compiler/core/ |
H A D | emitter.cpp | 223 pandaIns->insDebug.wholeLine = WholeLine(SourceCode(), nodeRange); in GenInstructionDebugInfo()
|