Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:currentOffset
(Results
1 - 5
of
5
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/jspandafile/
H
A
D
debug_info_extractor.h
127
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
D
test_extractor.cpp
69
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
D
test_extractor.h
52
PandaList<PtStepRange> GetStepRanges(EntityId methodId, uint32_t
currentOffset
);
/arkcompiler/ets_runtime/ecmascript/debugger/
H
A
D
debugger_api.cpp
187
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
D
json_parser.cpp
1138
uint32_t
currentOffset
= parser->current_ - parser->begin_;
1141
parser->current_ = reinterpret_cast<uint8_t *>(ToUintPtr(begin) +
currentOffset
);
Completed in 7 milliseconds