Home
last modified time | relevance | path

Searched refs:currentOffset (Results 1 - 5 of 5) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/jspandafile/
H A Ddebug_info_extractor.h127 uint32_t currentOffset = UINT32_MAX; in MatchWithLocation() local
144 currentOffset = lineTable[j].offset; in MatchWithLocation()
147 if (pair.offset >= currentOffset && pair.offset < nextOffset) { in MatchWithLocation()
150 } else if (pair.column < minColumn && currentOffset < minColumnOffset) { in MatchWithLocation()
152 minColumnOffset = currentOffset; in MatchWithLocation()
162 if (currentOffset != UINT32_MAX) { // find corresponding row, but not find corresponding column in MatchWithLocation()
163 return cb(JSPtLocation(jsPandaFile_, currentMethodId, currentOffset, url)); in MatchWithLocation()
/arkcompiler/runtime_core/static_core/runtime/tests/tooling/
H A Dtest_extractor.cpp69 PandaList<PtStepRange> TestExtractor::GetStepRanges(EntityId methodId, uint32_t currentOffset) in GetStepRanges() argument
76 std::optional<size_t> line = GetLineNumberByTableOffset(lineTable, currentOffset); in GetStepRanges()
H A Dtest_extractor.h52 PandaList<PtStepRange> GetStepRanges(EntityId methodId, uint32_t currentOffset);
/arkcompiler/ets_runtime/ecmascript/debugger/
H A Ddebugger_api.cpp187 uint32_t currentOffset = frameHandler->GetBytecodeOffset(); in GetVregIndex() local
193 // if currentOffset not in variable's scope, skip it in GetVregIndex()
194 if (iter->name == name.data() && currentOffset >= iter->startOffset && currentOffset <= iter->endOffset) { in GetVregIndex()
/arkcompiler/ets_runtime/ecmascript/base/
H A Djson_parser.cpp1138 uint32_t currentOffset = parser->current_ - parser->begin_;
1141 parser->current_ = reinterpret_cast<uint8_t *>(ToUintPtr(begin) + currentOffset);

Completed in 7 milliseconds