OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:methodIds
(Results
1 - 25
of
62
) sorted by null
1
2
3
/dalvik/dexgen/src/com/android/dexgen/dex/file/
MethodIdsSection.java
35
private final TreeMap<CstBaseMethodRef, MethodIdItem>
methodIds
;
45
methodIds
= new TreeMap<CstBaseMethodRef, MethodIdItem>();
51
return
methodIds
.values();
63
IndexedItem result =
methodIds
.get((CstBaseMethodRef) cst);
80
int sz =
methodIds
.size();
105
MethodIdItem result =
methodIds
.get(method);
109
methodIds
.put(method, result);
129
MethodIdItem item =
methodIds
.get(ref);
MethodAnnotationStruct.java
77
MethodIdsSection
methodIds
= file.getMethodIds();
80
methodIds
.intern(method);
DexFile.java
77
private final MethodIdsSection
methodIds
;
118
methodIds
= new MethodIdsSection(this);
127
header, stringIds, typeIds, protoIds, fieldIds,
methodIds
,
373
return
methodIds
;
430
methodIds
.intern((CstBaseMethodRef) cst);
459
return
methodIds
.get(cst);
487
methodIds
.prepare();
ParameterAnnotationStruct.java
101
MethodIdsSection
methodIds
= file.getMethodIds();
104
methodIds
.intern(method);
EncodedMethod.java
117
MethodIdsSection
methodIds
= file.getMethodIds();
120
methodIds
.intern(method);
/dalvik/dx/src/com/android/dx/dex/file/
MethodIdsSection.java
35
private final TreeMap<CstBaseMethodRef, MethodIdItem>
methodIds
;
45
methodIds
= new TreeMap<CstBaseMethodRef, MethodIdItem>();
51
return
methodIds
.values();
63
IndexedItem result =
methodIds
.get((CstBaseMethodRef) cst);
80
int sz =
methodIds
.size();
105
MethodIdItem result =
methodIds
.get(method);
109
methodIds
.put(method, result);
129
MethodIdItem item =
methodIds
.get(ref);
MethodAnnotationStruct.java
77
MethodIdsSection
methodIds
= file.getMethodIds();
80
methodIds
.intern(method);
DexFile.java
81
private final MethodIdsSection
methodIds
;
124
methodIds
= new MethodIdsSection(this);
133
header, stringIds, typeIds, protoIds, fieldIds,
methodIds
,
393
return
methodIds
;
448
methodIds
.intern((CstBaseMethodRef) cst);
477
return
methodIds
.get(cst);
507
methodIds
.prepare();
ParameterAnnotationStruct.java
102
MethodIdsSection
methodIds
= file.getMethodIds();
105
methodIds
.intern(method);
EncodedMethod.java
116
MethodIdsSection
methodIds
= file.getMethodIds();
119
methodIds
.intern(method);
/dalvik/dx/src/com/android/dx/command/findusages/
FindUsages.java
36
private final Set<Integer>
methodIds
;
63
methodIds
= fieldIds = null;
67
methodIds
= new HashSet<Integer>();
74
methodIds
.addAll(getMethodIds(dex, memberNameIndexes, typeIndex));
92
if (
methodIds
.contains(methodId)) {
93
out.println(location() + ": method reference " + dex.
methodIds
().get(methodId)
103
MethodId methodId = dex.
methodIds
().get(currentMethod.getMethodIndex());
114
if (fieldIds == null ||
methodIds
== null) {
137
if (
methodIds
.contains(methodIndex)) {
138
out.println(location() + " method declared " + dex.
methodIds
().get(methodIndex))
[
all
...]
/art/tools/dexfuzz/src/dexfuzz/rawdex/
RawDexFile.java
37
public List<MethodIdItem>
methodIds
;
67
methodIds
= new ArrayList<MethodIdItem>(header.methodIdsSize);
104
if (mapItem.size !=
methodIds
.size()) {
105
Log.debug("Updating
MethodIDs
List size: " +
methodIds
.size());
106
mapItem.size =
methodIds
.size();
107
header.methodIdsSize =
methodIds
.size();
185
if (mapItem.size !=
methodIds
.size()) {
187
+ " no longer matches
MethodIDs
table size " +
methodIds
.size())
[
all
...]
MapList.java
99
rawDexFile.
methodIds
.add(newMethodId);
/dalvik/dx/src/com/android/dex/
TableOfContents.java
37
public final Section
methodIds
= new Section(0x0005);
53
header, stringIds, typeIds, protoIds, fieldIds,
methodIds
, classDefs, mapList, callSiteIds,
115
methodIds
.size = headerIn.readInt();
116
methodIds
.off = headerIn.readInt();
192
out.writeInt(
methodIds
.size);
193
out.writeInt(
methodIds
.off);
Dex.java
68
private final MethodIdTable
methodIds
= new MethodIdTable();
236
public List<MethodId>
methodIds
() {
237
return
methodIds
;
753
checkBounds(index, tableOfContents.
methodIds
.size);
754
return open(tableOfContents.
methodIds
.off + (SizeOf.MEMBER_ID_ITEM * index))
758
return tableOfContents.
methodIds
.size;
/dalvik/dx/src/com/android/dx/command/grep/
Grep.java
78
MethodId methodId = dex.
methodIds
().get(currentMethod.getMethodIndex());
/dalvik/dx/src/com/android/dx/merge/
IndexMap.java
63
public final short[]
methodIds
;
77
this.
methodIds
= new short[tableOfContents.
methodIds
.size];
165
return
methodIds
[methodIndex] & 0xffff;
DexMerger.java
503
return tableOfContents.
methodIds
;
515
indexMap.
methodIds
[oldIndex] = (short) newIndex;
[
all
...]
/art/tools/dexfuzz/src/dexfuzz/program/
IdCreator.java
37
* Responsible for the finding and creation of TypeIds,
MethodIds
, FieldIds, and StringIds,
97
for (MethodIdItem methodId : rawDexFile.
methodIds
) {
170
if (rawDexFile.
methodIds
.size() >= 65536) {
193
//
MethodIds
must be ordered.
196
rawDexFile.
methodIds
.add(newMethodIdIdx, newMethodId);
203
MethodIdItem prevMethodId = rawDexFile.
methodIds
.get(newMethodIdIdx - 1);
233
for (MethodIdItem methodId : rawDexFile.
methodIds
) {
Program.java
303
MethodIdItem methodIdItem = rawDexFile.
methodIds
.get(methodIdx);
564
return rawDexFile.
methodIds
.size();
/dalvik/dx/src/com/android/dx/io/
DexIndexPrinter.java
85
for (MethodId methodId : dex.
methodIds
()) {