Home
last modified time | relevance | path

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

/external/proguard/src/proguard/classfile/visitor/
DClassCleaner.java142 …z clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) in visitStackMapTableAttribute() argument
144 clean(stackMapTableAttribute); in visitStackMapTableAttribute()
146 stackMapTableAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this); in visitStackMapTableAttribute()
DClassPrinter.java495 …z clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) in visitStackMapTableAttribute() argument
499 stackMapTableAttribute.u2stackMapFramesCount + "):"); in visitStackMapTableAttribute()
502 stackMapTableAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this); in visitStackMapTableAttribute()
/external/proguard/src/proguard/classfile/attribute/visitor/
DAttributeNameFilter.java222 …z clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) in visitStackMapTableAttribute() argument
224 if (accepted(clazz, stackMapTableAttribute)) in visitStackMapTableAttribute()
226 stackMapTableAttribute.accept(clazz, method, codeAttribute, attributeVisitor); in visitStackMapTableAttribute()
DRequiredAttributeFilter.java236 …z clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) in visitStackMapTableAttribute() argument
240 stackMapTableAttribute.accept(clazz, method, codeAttribute, requiredAttributeVisitor); in visitStackMapTableAttribute()
DMultiAttributeVisitor.java241 …z clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) in visitStackMapTableAttribute() argument
245 …eVisitors[index].visitStackMapTableAttribute(clazz, method, codeAttribute, stackMapTableAttribute); in visitStackMapTableAttribute()
DAttributeVisitor.java70 …ethod method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute); in visitStackMapTableAttribute() argument
/external/proguard/src/proguard/classfile/editor/
DConstantPoolRemapper.java346 …z clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) in visitStackMapTableAttribute() argument
348 stackMapTableAttribute.u2attributeNameIndex = in visitStackMapTableAttribute()
349 remapConstantIndex(stackMapTableAttribute.u2attributeNameIndex); in visitStackMapTableAttribute()
352 stackMapTableAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this); in visitStackMapTableAttribute()
DCodeAttributeComposer.java407 …z clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) in visitStackMapTableAttribute() argument
411 stackMapTableAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this); in visitStackMapTableAttribute()
DCodeAttributeEditor.java393 …z clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) in visitStackMapTableAttribute() argument
397 stackMapTableAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this); in visitStackMapTableAttribute()
DAttributeAdder.java302 …z clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) in visitStackMapTableAttribute() argument
/external/proguard/src/proguard/shrink/
DUsageMarker.java593 …z clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) in visitStackMapTableAttribute() argument
595 markAsUsed(stackMapTableAttribute); in visitStackMapTableAttribute()
597 markConstant(clazz, stackMapTableAttribute.u2attributeNameIndex); in visitStackMapTableAttribute()
600 stackMapTableAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this); in visitStackMapTableAttribute()
/external/proguard/src/proguard/classfile/io/
DProgramClassReader.java407 …z clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) in visitStackMapTableAttribute() argument
410 stackMapTableAttribute.u2stackMapFramesCount = dataInput.readUnsignedShort(); in visitStackMapTableAttribute()
412stackMapTableAttribute.stackMapFrames = new StackMapFrame[stackMapTableAttribute.u2stackMapFramesC… in visitStackMapTableAttribute()
413 for (int index = 0; index < stackMapTableAttribute.u2stackMapFramesCount; index++) in visitStackMapTableAttribute()
417 stackMapTableAttribute.stackMapFrames[index] = stackMapFrame; in visitStackMapTableAttribute()
DProgramClassWriter.java381 …z clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) in visitStackMapTableAttribute() argument
384 dataOutput.writeShort(stackMapTableAttribute.u2stackMapFramesCount); in visitStackMapTableAttribute()
386 stackMapTableAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this); in visitStackMapTableAttribute()
/external/proguard/src/proguard/optimize/
DChangedCodePrinter.java153 …z clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) in visitStackMapTableAttribute() argument
155 …attributeVisitor.visitStackMapTableAttribute(clazz, method, codeAttribute, stackMapTableAttribute); in visitStackMapTableAttribute()
/external/proguard/src/proguard/obfuscate/
DUtf8UsageMarker.java202 …z clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) in visitStackMapTableAttribute() argument
204 markCpUtf8Entry(clazz, stackMapTableAttribute.u2attributeNameIndex); in visitStackMapTableAttribute()
/external/proguard/src/proguard/classfile/util/
DSimplifiedVisitor.java354 …z clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) in visitStackMapTableAttribute() argument
356 visitAnyAttribute(clazz, stackMapTableAttribute); in visitStackMapTableAttribute()