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:class_idx_off
(Results
1 - 6
of
6
) sorted by relevance
/arkcompiler/runtime_core/libpandafile/
H
A
D
file.h
71
uint32_t
class_idx_off
;
member
84
uint32_t
class_idx_off
;
member
194
Span class_idx_data = file.SubSpan(header->
class_idx_off
, header->num_classes * sizeof(uint32_t));
in GetClasses()
236
ThrowIfWithCheck(index_header->
class_idx_off
> header->file_size || class_idx_size > header->file_size ||
in GetClassIndex()
237
index_header->
class_idx_off
> header->file_size - class_idx_size, File::INVALID_INDEX_HEADER,
in GetClassIndex()
239
auto sp = file.SubSpan(index_header->
class_idx_off
, index_header->class_idx_size * EntityId::GetSize());
in GetClassIndex()
H
A
D
file.cpp
625
if (!CheckHeaderElementOffset(header->
class_idx_off
, header->num_classes, header->file_size)) {
in CheckHeader()
626
LOG(ERROR, PANDAFILE) << "Invalid panda file
class_idx_off
" << header->
class_idx_off
<<
in CheckHeader()
/arkcompiler/runtime_core/abc2program/
H
A
D
abc2program_compiler.cpp
91
auto class_off = header->
class_idx_off
+ sizeof(uint32_t) * offset;
in CheckClassId()
/arkcompiler/ets_runtime/ecmascript/jspandafile/tests/
H
A
D
js_pandafile_test.cpp
253
Span classIdxData = fileData.SubSpan(header->
class_idx_off
, header->num_classes * sizeof(uint32_t));
in HWTEST_F_L0()
/arkcompiler/runtime_core/libpandafile/tests/
H
A
D
file_item_container_test.cpp
247
EXPECT_EQ(panda_file->GetHeader()->
class_idx_off
, sizeof(File::Header));
in TestPandaFile()
250
reinterpret_cast<const uint32_t *>(panda_file->GetBase() + panda_file->GetHeader()->
class_idx_off
);
in TestPandaFile()
/arkcompiler/runtime_core/disassembler/
H
A
D
disassembler.cpp
486
auto class_off = file_->GetHeader()->
class_idx_off
+ sizeof(uint32_t) * i;
in GetRecords()
Completed in 11 milliseconds