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()
180 ((StackMapAttribute)originalStackMapAttribute).stackMapFrames : in visitCodeAttribute0()181 ((StackMapTableAttribute)originalStackMapAttribute).stackMapFrames; in visitCodeAttribute0()209 FullFrame[] stackMapFrames = new FullFrame[frameCount]; in visitCodeAttribute0() local210 stackMapFrameList.toArray(stackMapFrames); in visitCodeAttribute0()213 stackMapAttribute = new StackMapAttribute(stackMapFrames); in visitCodeAttribute0()218 StackMapFrame[] stackMapFrames = new StackMapFrame[frameCount]; in visitCodeAttribute0() local219 stackMapFrameList.toArray(stackMapFrames); in visitCodeAttribute0()222 stackMapAttribute = new StackMapTableAttribute(stackMapFrames); in visitCodeAttribute0()
397 stackMapAttribute.stackMapFrames = new FullFrame[stackMapAttribute.u2stackMapFramesCount]; in visitStackMapAttribute()402 stackMapAttribute.stackMapFrames[index] = stackMapFrame; in visitStackMapAttribute()412 …stackMapTableAttribute.stackMapFrames = new StackMapFrame[stackMapTableAttribute.u2stackMapFramesC… in visitStackMapTableAttribute()417 stackMapTableAttribute.stackMapFrames[index] = stackMapFrame; in visitStackMapTableAttribute()
180 pos = stackMapFrames(pos, i); in parse()192 int stackMapFrames(int pos, int nth) throws BadBytecode { in stackMapFrames() method in StackMapTable.Walker