Home
last modified time | relevance | path

Searched refs:stackMapTableAttribute (Results 1 – 18 of 18) sorted by relevance

/external/proguard/src/proguard/classfile/visitor/
DClassCleaner.java163 …z clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) in visitStackMapTableAttribute() argument
165 clean(stackMapTableAttribute); in visitStackMapTableAttribute()
167 stackMapTableAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this); in visitStackMapTableAttribute()
DClassPrinter.java554 …z clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) in visitStackMapTableAttribute() argument
558 stackMapTableAttribute.u2stackMapFramesCount + "):"); in visitStackMapTableAttribute()
561 stackMapTableAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this); in visitStackMapTableAttribute()
/external/proguard/src/proguard/classfile/attribute/visitor/
DNonEmptyAttributeFilter.java189 …z clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) in visitStackMapTableAttribute() argument
191 if (stackMapTableAttribute.u2stackMapFramesCount > 0) in visitStackMapTableAttribute()
193 …attributeVisitor.visitStackMapTableAttribute(clazz, method, codeAttribute, stackMapTableAttribute); in visitStackMapTableAttribute()
DAttributeNameFilter.java272 …z clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) in visitStackMapTableAttribute() argument
274 if (accepted(clazz, stackMapTableAttribute)) in visitStackMapTableAttribute()
276 …attributeVisitor.visitStackMapTableAttribute(clazz, method, codeAttribute, stackMapTableAttribute); in visitStackMapTableAttribute()
DRequiredAttributeFilter.java256 …z clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) in visitStackMapTableAttribute() argument
260 …AttributeVisitor.visitStackMapTableAttribute(clazz, method, codeAttribute, stackMapTableAttribute); in visitStackMapTableAttribute()
DMultiAttributeVisitor.java259 …z clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) in visitStackMapTableAttribute() argument
263 …eVisitors[index].visitStackMapTableAttribute(clazz, method, codeAttribute, stackMapTableAttribute); in visitStackMapTableAttribute()
DAttributeVisitor.java72 …ethod method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute); in visitStackMapTableAttribute() argument
/external/proguard/src/proguard/classfile/editor/
DConstantPoolRemapper.java389 …z clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) in visitStackMapTableAttribute() argument
391 stackMapTableAttribute.u2attributeNameIndex = in visitStackMapTableAttribute()
392 remapConstantIndex(stackMapTableAttribute.u2attributeNameIndex); in visitStackMapTableAttribute()
395 stackMapTableAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this); in visitStackMapTableAttribute()
DConstantPoolShrinker.java294 …z clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) in visitStackMapTableAttribute() argument
296 markConstant(clazz, stackMapTableAttribute.u2attributeNameIndex); in visitStackMapTableAttribute()
299 stackMapTableAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this); in visitStackMapTableAttribute()
DUtf8Shrinker.java231 …z clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) in visitStackMapTableAttribute() argument
233 markCpUtf8Entry(clazz, stackMapTableAttribute.u2attributeNameIndex); in visitStackMapTableAttribute()
DCodeAttributeComposer.java487 …z clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) in visitStackMapTableAttribute() argument
491 stackMapTableAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this); in visitStackMapTableAttribute()
DCodeAttributeEditor.java485 …z clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) in visitStackMapTableAttribute() argument
489 stackMapTableAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this); in visitStackMapTableAttribute()
DAttributeAdder.java322 …z clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) in visitStackMapTableAttribute() argument
/external/proguard/src/proguard/shrink/
DUsageMarker.java736 …z clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) in visitStackMapTableAttribute() argument
738 markAsUsed(stackMapTableAttribute); in visitStackMapTableAttribute()
740 markConstant(clazz, stackMapTableAttribute.u2attributeNameIndex); in visitStackMapTableAttribute()
743 stackMapTableAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this); in visitStackMapTableAttribute()
/external/proguard/src/proguard/classfile/io/
DProgramClassReader.java465 …z clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) in visitStackMapTableAttribute() argument
468 stackMapTableAttribute.u2stackMapFramesCount = dataInput.readUnsignedShort(); in visitStackMapTableAttribute()
470stackMapTableAttribute.stackMapFrames = new StackMapFrame[stackMapTableAttribute.u2stackMapFramesC… in visitStackMapTableAttribute()
471 for (int index = 0; index < stackMapTableAttribute.u2stackMapFramesCount; index++) in visitStackMapTableAttribute()
475 stackMapTableAttribute.stackMapFrames[index] = stackMapFrame; in visitStackMapTableAttribute()
DProgramClassWriter.java427 …z clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) in visitStackMapTableAttribute() argument
430 dataOutput.writeShort(stackMapTableAttribute.u2stackMapFramesCount); in visitStackMapTableAttribute()
432 stackMapTableAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this); in visitStackMapTableAttribute()
/external/proguard/src/proguard/optimize/
DChangedCodePrinter.java164 …z clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) in visitStackMapTableAttribute() argument
166 …attributeVisitor.visitStackMapTableAttribute(clazz, method, codeAttribute, stackMapTableAttribute); in visitStackMapTableAttribute()
/external/proguard/src/proguard/classfile/util/
DSimplifiedVisitor.java385 …z clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) in visitStackMapTableAttribute() argument
387 visitAnyAttribute(clazz, stackMapTableAttribute); in visitStackMapTableAttribute()