Home
last modified time | relevance | path

Searched refs:stackMapFrames (Results 1 – 5 of 5) sorted by relevance

/external/proguard/src/proguard/classfile/attribute/preverification/
DStackMapAttribute.java36 public FullFrame[] stackMapFrames; field in StackMapAttribute
50 public StackMapAttribute(FullFrame[] stackMapFrames) in StackMapAttribute() argument
52 this(stackMapFrames.length, stackMapFrames); in StackMapAttribute()
60 FullFrame[] stackMapFrames) in StackMapAttribute() argument
63 this.stackMapFrames = stackMapFrames; in StackMapAttribute()
84 FullFrame stackMapFrame = stackMapFrames[index]; in stackMapFramesAccept()
DStackMapTableAttribute.java36 public StackMapFrame[] stackMapFrames; field in StackMapTableAttribute
50 public StackMapTableAttribute(StackMapFrame[] stackMapFrames) in StackMapTableAttribute() argument
52 this(stackMapFrames.length, stackMapFrames); in StackMapTableAttribute()
60 StackMapFrame[] stackMapFrames) in StackMapTableAttribute() argument
63 this.stackMapFrames = stackMapFrames; in StackMapTableAttribute()
84 StackMapFrame stackMapFrame = stackMapFrames[index]; in stackMapFramesAccept()
/external/proguard/src/proguard/preverify/
DCodePreverifier.java189 ((StackMapAttribute)originalStackMapAttribute).stackMapFrames : in visitCodeAttribute0()
190 ((StackMapTableAttribute)originalStackMapAttribute).stackMapFrames; in visitCodeAttribute0()
218 FullFrame[] stackMapFrames = new FullFrame[frameCount]; in visitCodeAttribute0() local
219 stackMapFrameList.toArray(stackMapFrames); in visitCodeAttribute0()
222 stackMapAttribute = new StackMapAttribute(stackMapFrames); in visitCodeAttribute0()
227 StackMapFrame[] stackMapFrames = new StackMapFrame[frameCount]; in visitCodeAttribute0() local
228 stackMapFrameList.toArray(stackMapFrames); in visitCodeAttribute0()
231 stackMapAttribute = new StackMapTableAttribute(stackMapFrames); in visitCodeAttribute0()
/external/proguard/src/proguard/classfile/io/
DProgramClassReader.java455 stackMapAttribute.stackMapFrames = new FullFrame[stackMapAttribute.u2stackMapFramesCount]; in visitStackMapAttribute()
460 stackMapAttribute.stackMapFrames[index] = stackMapFrame; in visitStackMapAttribute()
470 …stackMapTableAttribute.stackMapFrames = new StackMapFrame[stackMapTableAttribute.u2stackMapFramesC… in visitStackMapTableAttribute()
475 stackMapTableAttribute.stackMapFrames[index] = stackMapFrame; in visitStackMapTableAttribute()
/external/javassist/src/main/javassist/bytecode/
DStackMapTable.java187 pos = stackMapFrames(pos, i); in parse()
199 int stackMapFrames(int pos, int nth) throws BadBytecode { in stackMapFrames() method in StackMapTable.Walker