Home | History | Annotate | Download | only in net

Lines Matching refs:start

32     public final int start;
36 if (startUid < 0) throw new IllegalArgumentException("Invalid start UID.");
39 start = startUid;
48 return start / PER_USER_RANGE;
54 result = 31 * result + start;
66 return start == other.start && stop == other.stop;
73 return start + "-" + stop;
84 dest.writeInt(start);
92 int start = in.readInt();
95 return new UidRange(start, stop);