OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:string_ids_size_
(Results
1 - 4
of
4
) sorted by null
/art/runtime/
dex_file_verifier.cc
231
((header_->string_ids_off_ != 0) || (header_->
string_ids_size_
!= 0))) {
444
if (!CheckIndex(idx, header_->
string_ids_size_
, "encoded_value string")) {
544
if (!CheckIndex(idx, header_->
string_ids_size_
, "annotation_element name_idx")) {
787
if (!CheckIndex(parameter_name, header_->
string_ids_size_
, "debug_info_item parameter_name")) {
816
if (!CheckIndex(name_idx, header_->
string_ids_size_
, "DBG_START_LOCAL name_idx")) {
823
if (!CheckIndex(type_idx, header_->
string_ids_size_
, "DBG_START_LOCAL type_idx")) {
847
if (!CheckIndex(name_idx, header_->
string_ids_size_
, "DBG_START_LOCAL_EXTENDED name_idx")) {
854
if (!CheckIndex(type_idx, header_->
string_ids_size_
, "DBG_START_LOCAL_EXTENDED type_idx")) {
861
if (!CheckIndex(sig_idx, header_->
string_ids_size_
, "DBG_START_LOCAL_EXTENDED sig_idx")) {
871
if (!CheckIndex(name_idx, header_->
string_ids_size_
, "DBG_SET_FILE name_idx"))
[
all
...]
dex_file_test.cc
96
EXPECT_EQ(15U, header.
string_ids_size_
);
dex_file.h
73
uint32_t
string_ids_size_
; // number of StringIds
member in struct:art::DexFile::Header
400
return header_->
string_ids_size_
;
411
CHECK_LT(&string_id, string_ids_ + header_->
string_ids_size_
) << GetLocation();
[
all
...]
/art/runtime/verifier/
method_verifier.cc
739
if (idx >= dex_file_->GetHeader().
string_ids_size_
) {
741
<< dex_file_->GetHeader().
string_ids_size_
<< ")";
[
all
...]
Completed in 53 milliseconds