Home | History | Annotate | Download | only in net

Lines Matching refs:start

30     public final int start;
34 if (startUid < 0) throw new IllegalArgumentException("Invalid start UID.");
37 start = startUid;
46 return start / PER_USER_RANGE;
50 return start <= uid && uid <= stop;
57 return 1 + stop - start;
64 return start <= other.start && other.stop <= stop;
70 result = 31 * result + start;
82 return start == other.start && stop == other.stop;
89 return start + "-" + stop;
100 dest.writeInt(start);
108 int start = in.readInt();
111 return new UidRange(start, stop);