Home
last modified time | relevance | path

Searched refs:u2bootstrapMethodsCount (Results 1 – 7 of 7) sorted by relevance

/external/proguard/src/proguard/classfile/attribute/
DBootstrapMethodsAttribute.java33 public int u2bootstrapMethodsCount; field in BootstrapMethodsAttribute
49 int u2bootstrapMethodsCount, in BootstrapMethodsAttribute() argument
54 this.u2bootstrapMethodsCount = u2bootstrapMethodsCount; in BootstrapMethodsAttribute()
72 for (int index = 0; index < u2bootstrapMethodsCount; index++) in bootstrapMethodEntriesAccept()
/external/proguard/src/proguard/classfile/editor/
DBootstrapMethodsAttributeEditor.java55 … targetBootstrapMethodsAttribute.u2bootstrapMethodsCount, in addBootstrapMethodInfo()
58 return targetBootstrapMethodsAttribute.u2bootstrapMethodsCount++; in addBootstrapMethodInfo()
/external/proguard/src/proguard/shrink/
DClassShrinker.java163 bootstrapMethodsAttribute.u2bootstrapMethodsCount); in visitBootstrapMethodsAttribute()
165 if (newBootstrapMethodsCount < bootstrapMethodsAttribute.u2bootstrapMethodsCount) in visitBootstrapMethodsAttribute()
167 bootstrapMethodsAttribute.u2bootstrapMethodsCount = newBootstrapMethodsCount; in visitBootstrapMethodsAttribute()
/external/proguard/src/proguard/classfile/io/
DProgramClassReader.java315 bootstrapMethodsAttribute.u2bootstrapMethodsCount = dataInput.readUnsignedShort(); in visitBootstrapMethodsAttribute()
317 …bute.bootstrapMethods = new BootstrapMethodInfo[bootstrapMethodsAttribute.u2bootstrapMethodsCount]; in visitBootstrapMethodsAttribute()
318 for (int index = 0; index < bootstrapMethodsAttribute.u2bootstrapMethodsCount; index++) in visitBootstrapMethodsAttribute()
DProgramClassWriter.java316 dataOutput.writeShort(bootstrapMethodsAttribute.u2bootstrapMethodsCount); in visitBootstrapMethodsAttribute()
/external/proguard/src/proguard/classfile/attribute/visitor/
DNonEmptyAttributeFilter.java62 if (bootstrapMethodsAttribute.u2bootstrapMethodsCount > 0) in visitBootstrapMethodsAttribute()
/external/proguard/src/proguard/classfile/visitor/
DClassPrinter.java404 …Bootstrap methods attribute (count = " + bootstrapMethodsAttribute.u2bootstrapMethodsCount + "):"); in visitBootstrapMethodsAttribute()