Home
last modified time | relevance | path

Searched refs:collectIndexedItems (Results 1 – 25 of 58) sorted by relevance

123

/external/r8/src/main/java/com/android/tools/r8/graph/
DDexValue.java105 public void collectIndexedItems(IndexedItemCollection indexedItems) { in collectIndexedItems() method in DexValue.SimpleDexValue
459 public void collectIndexedItems(IndexedItemCollection indexedItems) { in collectIndexedItems() method in DexValue.NestedDexValue
460 value.collectIndexedItems(indexedItems); in collectIndexedItems()
515 public void collectIndexedItems(IndexedItemCollection indexedItems) { in collectIndexedItems() method in DexValue.DexValueType
516 value.collectIndexedItems(indexedItems); in collectIndexedItems()
532 public void collectIndexedItems(IndexedItemCollection indexedItems) { in collectIndexedItems() method in DexValue.DexValueField
533 value.collectIndexedItems(indexedItems); in collectIndexedItems()
549 public void collectIndexedItems(IndexedItemCollection indexedItems) { in collectIndexedItems() method in DexValue.DexValueMethod
550 value.collectIndexedItems(indexedItems); in collectIndexedItems()
566 public void collectIndexedItems(IndexedItemCollection indexedItems) { in collectIndexedItems() method in DexValue.DexValueEnum
[all …]
DDexProgramClass.java33 public void collectIndexedItems(IndexedItemCollection indexedItems) { in collectIndexedItems() method in DexProgramClass
35 type.collectIndexedItems(indexedItems); in collectIndexedItems()
37 superType.collectIndexedItems(indexedItems); in collectIndexedItems()
42 sourceFile.collectIndexedItems(indexedItems); in collectIndexedItems()
45 annotations.collectIndexedItems(indexedItems); in collectIndexedItems()
48 interfaces.collectIndexedItems(indexedItems); in collectIndexedItems()
DDexEncodedField.java30 public void collectIndexedItems(IndexedItemCollection indexedItems) { in collectIndexedItems() method in DexEncodedField
31 field.collectIndexedItems(indexedItems); in collectIndexedItems()
32 annotations.collectIndexedItems(indexedItems); in collectIndexedItems()
34 staticValue.collectIndexedItems(indexedItems); in collectIndexedItems()
DDexAnnotationElement.java42 public void collectIndexedItems(IndexedItemCollection indexedItems) { in collectIndexedItems() method in DexAnnotationElement
43 name.collectIndexedItems(indexedItems); in collectIndexedItems()
44 value.collectIndexedItems(indexedItems); in collectIndexedItems()
DDexProto.java42 public void collectIndexedItems(IndexedItemCollection indexedItems) { in collectIndexedItems() method in DexProto
44 shorty.collectIndexedItems(indexedItems); in collectIndexedItems()
45 returnType.collectIndexedItems(indexedItems); in collectIndexedItems()
46 parameters.collectIndexedItems(indexedItems); in collectIndexedItems()
DDexDebugEvent.java14 public void collectIndexedItems(IndexedItemCollection collection) { in collectIndexedItems() method in DexDebugEvent
190 public void collectIndexedItems(IndexedItemCollection collection) { in collectIndexedItems() method in DexDebugEvent.StartLocal
191 name.collectIndexedItems(collection); in collectIndexedItems()
192 type.collectIndexedItems(collection); in collectIndexedItems()
194 signature.collectIndexedItems(collection); in collectIndexedItems()
310 public void collectIndexedItems(IndexedItemCollection collection) { in collectIndexedItems() method in DexDebugEvent.SetFile
311 fileName.collectIndexedItems(collection); in collectIndexedItems()
DDexField.java51 public void collectIndexedItems(IndexedItemCollection indexedItems) { in collectIndexedItems() method in DexField
53 clazz.collectIndexedItems(indexedItems); in collectIndexedItems()
54 type.collectIndexedItems(indexedItems); in collectIndexedItems()
55 indexedItems.getRenamedName(this).collectIndexedItems(indexedItems); in collectIndexedItems()
DDexMemberAnnotation.java20 public void collectIndexedItems(IndexedItemCollection indexedItems) { in collectIndexedItems() method in DexMemberAnnotation
21 item.collectIndexedItems(indexedItems); in collectIndexedItems()
22 annotations.collectIndexedItems(indexedItems); in collectIndexedItems()
DDexCode.java278 public void collectIndexedItems(IndexedItemCollection indexedItems) { in collectIndexedItems() method in DexCode
280 insn.collectIndexedItems(indexedItems); in collectIndexedItems()
283 debugInfo.collectIndexedItems(indexedItems); in collectIndexedItems()
287 handler.collectIndexedItems(indexedItems); in collectIndexedItems()
356 void collectIndexedItems(IndexedItemCollection indexedItems) { in collectIndexedItems() method in DexCode.Try
398 public void collectIndexedItems(IndexedItemCollection indexedItems) { in collectIndexedItems() method in DexCode.TryHandler
439 public void collectIndexedItems(IndexedItemCollection indexedItems) { in collectIndexedItems() method in DexCode.TryHandler.TypeAddrPair
440 type.collectIndexedItems(indexedItems); in collectIndexedItems()
DDexMethod.java36 public void collectIndexedItems(IndexedItemCollection indexedItems) { in collectIndexedItems() method in DexMethod
38 holder.collectIndexedItems(indexedItems); in collectIndexedItems()
39 proto.collectIndexedItems(indexedItems); in collectIndexedItems()
40 indexedItems.getRenamedName(this).collectIndexedItems(indexedItems); in collectIndexedItems()
DDexCallSite.java76 public void collectIndexedItems(IndexedItemCollection indexedItems) { in collectIndexedItems() method in DexCallSite
78 methodName.collectIndexedItems(indexedItems); in collectIndexedItems()
79 methodProto.collectIndexedItems(indexedItems); in collectIndexedItems()
80 bootstrapMethod.collectIndexedItems(indexedItems); in collectIndexedItems()
82 arg.collectIndexedItems(indexedItems); in collectIndexedItems()
DDexItem.java13 consumeArray(items, (T item) -> item.collectIndexedItems(indexedItems)); in collectAll()
35 abstract void collectIndexedItems(IndexedItemCollection collection); in collectIndexedItems() method in DexItem
DDexEncodedAnnotation.java25 public void collectIndexedItems(IndexedItemCollection indexedItems) { in collectIndexedItems() method in DexEncodedAnnotation
26 type.collectIndexedItems(indexedItems); in collectIndexedItems()
DDexMethodHandle.java150 public void collectIndexedItems(IndexedItemCollection indexedItems) { in collectIndexedItems() method in DexMethodHandle
152 fieldOrMethod.collectIndexedItems(indexedItems); in collectIndexedItems()
DDexTypeList.java37 void collectIndexedItems(IndexedItemCollection indexedItems) { in collectIndexedItems() method in DexTypeList
39 type.collectIndexedItems(indexedItems); in collectIndexedItems()
DDexEncodedMethod.java166 public void collectIndexedItems(IndexedItemCollection indexedItems) { in collectIndexedItems() method in DexEncodedMethod
167 method.collectIndexedItems(indexedItems); in collectIndexedItems()
169 code.collectIndexedItems(indexedItems); in collectIndexedItems()
171 annotations.collectIndexedItems(indexedItems); in collectIndexedItems()
172 parameterAnnotations.collectIndexedItems(indexedItems); in collectIndexedItems()
DDexEncodedArray.java19 public void collectIndexedItems(IndexedItemCollection indexedItems) { in collectIndexedItems() method in DexEncodedArray
/external/r8/src/main/java/com/android/tools/r8/code/
DFormat4rcc.java91 public void collectIndexedItems(IndexedItemCollection indexedItems) { in collectIndexedItems() method in Format4rcc
92 BBBB.collectIndexedItems(indexedItems); in collectIndexedItems()
93 HHHH.collectIndexedItems(indexedItems); in collectIndexedItems()
DFormat45cc.java88 public void collectIndexedItems(IndexedItemCollection indexedItems) { in collectIndexedItems() method in Format45cc
89 BBBB.collectIndexedItems(indexedItems); in collectIndexedItems()
90 HHHH.collectIndexedItems(indexedItems); in collectIndexedItems()
DFormat21c.java60 public void collectIndexedItems(IndexedItemCollection indexedItems) { in collectIndexedItems() method in Format21c
61 BBBB.collectIndexedItems(indexedItems); in collectIndexedItems()
DFormat31c.java57 public void collectIndexedItems(IndexedItemCollection indexedItems) { in collectIndexedItems() method in Format31c
58 BBBBBBBB.collectIndexedItems(indexedItems); in collectIndexedItems()
DFormat22c.java64 public void collectIndexedItems(IndexedItemCollection indexedItems) { in collectIndexedItems() method in Format22c
65 CCCC.collectIndexedItems(indexedItems); in collectIndexedItems()
DFormat3rc.java85 public void collectIndexedItems(IndexedItemCollection indexedItems) { in collectIndexedItems() method in Format3rc
86 BBBB.collectIndexedItems(indexedItems); in collectIndexedItems()
DFormat35c.java108 public void collectIndexedItems(IndexedItemCollection indexedItems) { in collectIndexedItems() method in Format35c
109 BBBB.collectIndexedItems(indexedItems); in collectIndexedItems()
DFormat10x.java44 public void collectIndexedItems(IndexedItemCollection indexedItems) { in collectIndexedItems() method in Format10x

123