OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:typeLists
(Results
1 - 13
of
13
) sorted by null
/art/tools/dexfuzz/src/dexfuzz/rawdex/
RawDexFile.java
43
public List<TypeList>
typeLists
;
132
if (mapItem.size !=
typeLists
.size()) {
133
Log.debug("Updating
TypeLists
List size: " +
typeLists
.size());
134
mapItem.size =
typeLists
.size();
208
if (mapItem.size !=
typeLists
.size()) {
210
+ " no longer matches
TypeLists
table size " +
typeLists
.size());
212
for (TypeList typeList :
typeLists
) {
371
if (
typeLists
!= null)
[
all
...]
MapList.java
114
rawDexFile.
typeLists
= new ArrayList<TypeList>(mapItem.size);
117
rawDexFile.
typeLists
.add(newTypeList);
/dalvik/dx/src/com/android/dx/io/
DexIndexPrinter.java
92
if (tableOfContents.
typeLists
.off == -1) {
96
Dex.Section in = dex.open(tableOfContents.
typeLists
.off);
97
for (int i = 0; i < tableOfContents.
typeLists
.size; i++) {
/dalvik/dexgen/src/com/android/dexgen/dex/file/
DexFile.java
52
private final MixedItemSection
typeLists
;
108
typeLists
= new MixedItemSection(null, this, 4, SortType.NONE);
128
classDefs, wordData,
typeLists
, stringData, byteData,
270
return
typeLists
;
490
typeLists
.prepare();
ProtoIdItem.java
117
MixedItemSection
typeLists
= file.getTypeLists();
123
parameterTypes =
typeLists
.intern(parameterTypes);
ClassDefItem.java
134
MixedItemSection
typeLists
= file.getTypeLists();
155
interfaces =
typeLists
.intern(interfaces);
/dalvik/dx/src/com/android/dx/dex/file/
DexFile.java
60
private final MixedItemSection
typeLists
;
126
typeLists
= new MixedItemSection(null, this, 4, SortType.NONE);
157
wordData,
typeLists
, stringData, byteData, classData, map };
164
wordData,
typeLists
, stringData, byteData, classData, map };
346
return
typeLists
;
634
typeLists
.prepare();
ProtoIdItem.java
114
MixedItemSection
typeLists
= file.getTypeLists();
120
parameterTypes =
typeLists
.intern(parameterTypes);
ClassDefItem.java
131
MixedItemSection
typeLists
= file.getTypeLists();
152
interfaces =
typeLists
.intern(interfaces);
/art/tools/dexfuzz/src/dexfuzz/program/
IdCreator.java
635
if (rawDexFile.
typeLists
== null) {
638
rawDexFile.
typeLists
= new ArrayList<TypeList>();
643
rawDexFile.
typeLists
.get(rawDexFile.
typeLists
.size() - 1);
648
rawDexFile.
typeLists
.add(typeList);
659
if (rawDexFile.
typeLists
== null) {
664
for (TypeList typeList : rawDexFile.
typeLists
) {
/dalvik/dx/src/com/android/dex/
TableOfContents.java
42
public final Section
typeLists
= new Section(0x1001);
54
methodHandles,
typeLists
, annotationSetRefLists, annotationSets, classDatas, codes,
/dalvik/dx/src/com/android/dx/merge/
DexMerger.java
120
contentsOut.
typeLists
.off = dexOut.getNextSectionStart();
440
return tableOfContents.
typeLists
;
[
all
...]
/external/dexmaker/lib/
dalvik-dx-9.0.0_r3.jar
Completed in 298 milliseconds