OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:name_idx
(Results
1 - 6
of
6
) sorted by null
/cts/tools/dex-tools/src/dex/reader/
DexFileReader.java
202
public int
name_idx
; // name of field : index into string id (or
field in class:DexFileReader.FieldIdItem
216
item.
name_idx
= b.readUInt();
224
public int
name_idx
; // name of method : index into string id (or
field in class:DexFileReader.MethodsIdItem
238
item.
name_idx
= b.readUInt();
DexFieldImpl.java
70
return stringPool[fieldIdItem.
name_idx
];
DexEncodedValueImpl.java
164
String constantName = stringPool[fieldIdItem.
name_idx
];
189
String fieldName = stringPool[fieldIdItem.
name_idx
];
DexMethodImpl.java
97
return stringPool[methodsIdItem.
name_idx
];
/art/runtime/
dex_file.cc
485
// Binary search MethodIds knowing that they are sorted by class_idx,
name_idx
then proto_idx
487
const uint32_t
name_idx
= GetIndexForStringId(name);
local
499
if (
name_idx
> field.name_idx_) {
501
} else if (
name_idx
< field.name_idx_) {
520
// Binary search MethodIds knowing that they are sorted by class_idx,
name_idx
then proto_idx
522
const uint32_t
name_idx
= GetIndexForStringId(name);
local
534
if (
name_idx
> method.name_idx_) {
536
} else if (
name_idx
< method.name_idx_) {
819
uint32_t
name_idx
;
local
844
name_idx
= DecodeUnsignedLeb128P1(&stream)
[
all
...]
dex_file_verifier.cc
664
if (!CheckIndex(idx, header_->string_ids_size_, "annotation_element
name_idx
")) {
669
ErrorStringPrintf("Out-of-order annotation_element
name_idx
: %x then %x",
937
uint32_t
name_idx
= DecodeUnsignedLeb128(&ptr_);
local
938
if (
name_idx
!= 0) {
939
name_idx
--;
940
if (!CheckIndex(
name_idx
, header_->string_ids_size_, "DBG_START_LOCAL
name_idx
")) {
968
uint32_t
name_idx
= DecodeUnsignedLeb128(&ptr_);
local
992
uint32_t
name_idx
= DecodeUnsignedLeb128(&ptr_);
local
[
all
...]
Completed in 293 milliseconds