Searched refs:nLocals (Results 1 – 2 of 2) sorted by relevance
74 public Frame(final int nLocals, final int nStack) { in Frame() argument75 this.values = new Value[nLocals + nStack]; in Frame()76 this.locals = nLocals; in Frame()
399 protected Frame newFrame(final int nLocals, final int nStack) { in newFrame() argument400 return new Frame(nLocals, nStack); in newFrame()