Searched refs:stackMapFrames (Results 1 – 5 of 5) sorted by relevance
36 public FullFrame[] stackMapFrames; field in StackMapAttribute50 public StackMapAttribute(FullFrame[] stackMapFrames) in StackMapAttribute() argument52 this(stackMapFrames.length, stackMapFrames); in StackMapAttribute()60 FullFrame[] stackMapFrames) in StackMapAttribute() argument63 this.stackMapFrames = stackMapFrames; in StackMapAttribute()84 FullFrame stackMapFrame = stackMapFrames[index]; in stackMapFramesAccept()
36 public StackMapFrame[] stackMapFrames; field in StackMapTableAttribute50 public StackMapTableAttribute(StackMapFrame[] stackMapFrames) in StackMapTableAttribute() argument52 this(stackMapFrames.length, stackMapFrames); in StackMapTableAttribute()60 StackMapFrame[] stackMapFrames) in StackMapTableAttribute() argument63 this.stackMapFrames = stackMapFrames; in StackMapTableAttribute()84 StackMapFrame stackMapFrame = stackMapFrames[index]; in stackMapFramesAccept()
189 ((StackMapAttribute)originalStackMapAttribute).stackMapFrames : in visitCodeAttribute0()190 ((StackMapTableAttribute)originalStackMapAttribute).stackMapFrames; in visitCodeAttribute0()218 FullFrame[] stackMapFrames = new FullFrame[frameCount]; in visitCodeAttribute0() local219 stackMapFrameList.toArray(stackMapFrames); in visitCodeAttribute0()222 stackMapAttribute = new StackMapAttribute(stackMapFrames); in visitCodeAttribute0()227 StackMapFrame[] stackMapFrames = new StackMapFrame[frameCount]; in visitCodeAttribute0() local228 stackMapFrameList.toArray(stackMapFrames); in visitCodeAttribute0()231 stackMapAttribute = new StackMapTableAttribute(stackMapFrames); in visitCodeAttribute0()
455 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()
187 pos = stackMapFrames(pos, i); in parse()199 int stackMapFrames(int pos, int nth) throws BadBytecode { in stackMapFrames() method in StackMapTable.Walker