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.java172 int[] argToSlotTab = null, slotToArgTab = null; in MethodTypeForm() local
225 argToSlotTab = new int[1+ptypeCount]; in MethodTypeForm()
226 argToSlotTab[0] = slot; // argument "-1" is past end of slots in MethodTypeForm()
233 argToSlotTab[1+i] = slot; in MethodTypeForm()
242 argToSlotTab = that.argToSlotTable; in MethodTypeForm()
246 argToSlotTab = new int[1+ptypeCount]; in MethodTypeForm()
247 argToSlotTab[0] = slot; // argument "-1" is past end of slots in MethodTypeForm()
251 argToSlotTab[1+i] = slot; in MethodTypeForm()
256 this.argToSlotTable = argToSlotTab; in MethodTypeForm()