Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/lang/invoke/
DMethodTypeForm.java112 int[] argToSlotTab = null, slotToArgTab = null; in MethodTypeForm() local
166 argToSlotTab = new int[1+ptypeCount]; in MethodTypeForm()
167 argToSlotTab[0] = slot; // argument "-1" is past end of slots in MethodTypeForm()
174 argToSlotTab[1+i] = slot; in MethodTypeForm()
183 argToSlotTab = that.argToSlotTable; in MethodTypeForm()
187 argToSlotTab = new int[1+ptypeCount]; in MethodTypeForm()
188 argToSlotTab[0] = slot; // argument "-1" is past end of slots in MethodTypeForm()
192 argToSlotTab[1+i] = slot; in MethodTypeForm()
197 this.argToSlotTable = argToSlotTab; in MethodTypeForm()