Home | History | Annotate | Download | only in statusbar

Lines Matching defs:mSlots

25     private String[] mSlots;
36 this.mSlots = in.readStringArray();
51 out.writeStringArray(mSlots);
92 String[] s = mSlots = new String[N];
100 final int N = mSlots.length;
102 if (slot.equals(mSlots[i])) {
110 return mSlots.length;
122 return mSlots[index];
140 if (that.mSlots == null) {
141 this.mSlots = null;
144 final int N = that.mSlots.length;
145 this.mSlots = new String[N];
148 this.mSlots[i] = that.mSlots[i];
155 final int N = mSlots.length;
158 pw.printf(" %2d: (%s) %s\n", i, mSlots[i], mIcons[i]);