/arkcompiler/runtime_core/assembler/ |
D | context.cpp | 35 tokens[number - 1].bound_right - tokens[number - 1].bound_left); in Make() 142 tokens[number - 1].bound_right - tokens[number - 1].bound_left); in operator ++() 158 tokens[number - 1].bound_right - tokens[number - 1].bound_left); in operator ++() 179 tokens[number - 1].bound_right - tokens[number - 1].bound_left); in operator --() 197 tokens[number - 1].bound_right - tokens[number - 1].bound_left); in operator --()
|
D | assembly-file-location.h | 26 size_t bound_right = 0; variable 32 … : whole_line(std::move(f_c)), bound_left(b_l), bound_right(b_r), line_number(l_n), is_defined(d) in FileLocation()
|
D | assembly-debug.h | 28 size_t bound_right = 0; member 42 : line_number(l_n), whole_line(std::move(f_c)), bound_left(b_l), bound_right(b_r) in Ins()
|
D | assembly-parser.h | 112 … context_.tokens[static_cast<int>(context_.number) + token_shift - 1].bound_right, 121 context_.tokens[context_.number - 1].bound_right, 130 return SourcePosition {line_stric_, context_.tokens[context_.number - 1].bound_right}; in GetCurrentPosition() 231 context_.tokens[context_.number - 1].bound_right, in TryEmplaceInTable() 255 … iter->second.file_location->bound_right = context_.tokens[context_.number - 1].bound_right; in AddObjectInTable() 270 context_.tokens[context_.number - 1].bound_right, in TryEmplaceInTable()
|
D | lexer.cpp | 181 f_i.bound_right - f_i.bound_left) in TokenizeString() 293 size_t bound_right; in LexTokens() local 313 bound_right = curr_line_->pos; in LexTokens() 317 … << std::string_view(&*(curr_line_->buffer.begin() + bound_left), bound_right - bound_left) in LexTokens() 319 … << "type: " << TokenTypeWhat(LexGetType(bound_left, bound_right)) << ")"; in LexTokens() 321 … curr_line_->tokens.emplace_back(bound_left, bound_right, LexGetType(bound_left, bound_right), in LexTokens()
|
D | lexer.h | 63 size_t bound_right; member 69 : whole_line(std::move(beg_of_line)), bound_left(b_l), bound_right(b_r), type(t) in Token()
|
D | assembly-field.h | 36 size_t bound_right = 0; member
|
D | assembly-parser.cpp | 663 … k.second.file_location->bound_left, k.second.file_location->bound_right, in ParseResetFunctionLabelsAndParams() 684 debug.bound_left, debug.bound_right, debug.whole_line); in ParseResetFunctionLabelsAndParams() 699 … k.second.file_location->bound_right, k.second.file_location->whole_line); in ParseResetFunctionTable() 718 debug.bound_right, debug.whole_line); in ParseResetFunctionTable() 735 debug.bound_right, debug.whole_line); in ParseResetFunctionTable() 749 … k.second.file_location->bound_right, k.second.file_location->whole_line); in ParseResetRecordTable() 754 … k.second.file_location->bound_left, k.second.file_location->bound_right, in ParseResetRecordTable() 762 fld.bound_left, fld.bound_right, fld.whole_line); in ParseResetRecordTable() 1849 field.bound_right = context_.tokens[context_.number - 1].bound_right; in ParseOperandField() 2091 curr_debug.bound_right = context_.tokens[context_.number - 1].bound_right; in SetOperationInformation()
|
/arkcompiler/ets_frontend/merge_abc/src/ |
D | assemblyFieldProto.cpp | 29 protoField.set_boundright(field.bound_right); in Serialize() 42 field.bound_right = protoField.boundright(); in Deserialize()
|
D | assemblyDebugProto.cpp | 25 protoDebug.set_boundright(debug.bound_right); in Serialize() 34 debug.bound_right = protoDebug.boundright(); in Deserialize()
|
D | assemblyFileLocationProto.cpp | 23 protoLocation.set_boundright(location.bound_right); in Serialize()
|
/arkcompiler/runtime_core/assembler/tests/ |
D | assembler_lexer_test.cpp | 261 EXPECT_EQ(tok.first[0].bound_right, s.length()); 275 EXPECT_EQ(tok.first[0].bound_right, s.find('1'));
|
D | lexer_test.cpp | 184 ASSERT_EQ(tok.first[0].bound_right, s.length()); in TEST() 198 ASSERT_EQ(tok.first[0].bound_right, s.find('1')); in TEST()
|
/arkcompiler/ets_frontend/merge_abc/ |
D | HowToWriteProtoForAssemblyStuff.md | 136 size_t bound_right = 0;
|
/arkcompiler/ets_frontend/es2panda/compiler/debugger/ |
D | debuginfoDumper.cpp | 138 WriteProperty("boundRight", posInfo.bound_right); in WritePosInfo()
|
/arkcompiler/ets_frontend/es2panda/compiler/core/emitter/ |
D | emitter.cpp | 179 pandaIns->ins_debug.bound_right = offset_ + insLen; in GenInstructionDebugInfo()
|
/arkcompiler/ets_frontend/ts2panda/ts2abc/ |
D | ts2abc.cpp | 409 insDebug.bound_right = debugPosInfo["br"].asUInt(); in ParseInstructionDebugInfo()
|