Home
last modified time | relevance | path

Searched refs:bootstrapMethods (Results 1 – 4 of 4) sorted by relevance

/external/proguard/src/proguard/classfile/attribute/
DBootstrapMethodsAttribute.java34 public BootstrapMethodInfo[] bootstrapMethods; field in BootstrapMethodsAttribute
50 BootstrapMethodInfo[] bootstrapMethods) in BootstrapMethodsAttribute() argument
55 this.bootstrapMethods = bootstrapMethods; in BootstrapMethodsAttribute()
76 bootstrapMethodInfoVisitor.visitBootstrapMethodInfo(clazz, bootstrapMethods[index]); in bootstrapMethodEntriesAccept()
91 …bootstrapMethodInfoVisitor.visitBootstrapMethodInfo(clazz, bootstrapMethods[bootstrapMethodIndex]); in bootstrapMethodEntryAccept()
/external/proguard/src/proguard/classfile/editor/
DBootstrapMethodsAttributeEditor.java53 targetBootstrapMethodsAttribute.bootstrapMethods = in addBootstrapMethodInfo()
54 (BootstrapMethodInfo[])ArrayUtil.add(targetBootstrapMethodsAttribute.bootstrapMethods, in addBootstrapMethodInfo()
/external/proguard/src/proguard/shrink/
DClassShrinker.java162 shrinkBootstrapMethodArray(bootstrapMethodsAttribute.bootstrapMethods, in visitBootstrapMethodsAttribute()
495 private int shrinkBootstrapMethodArray(BootstrapMethodInfo[] bootstrapMethods, int length) in shrinkBootstrapMethodArray() argument
507 BootstrapMethodInfo bootstrapMethod = bootstrapMethods[index]; in shrinkBootstrapMethodArray()
516 bootstrapMethods[counter++] = bootstrapMethod; in shrinkBootstrapMethodArray()
526 Arrays.fill(bootstrapMethods, counter, length, null); in shrinkBootstrapMethodArray()
/external/proguard/src/proguard/classfile/io/
DProgramClassReader.java317 …bootstrapMethodsAttribute.bootstrapMethods = new BootstrapMethodInfo[bootstrapMethodsAttribute.u2b… in visitBootstrapMethodsAttribute()
322 bootstrapMethodsAttribute.bootstrapMethods[index] = bootstrapMethodInfo; in visitBootstrapMethodsAttribute()