Home | History | Annotate | Download | only in okio

Lines Matching refs:next

30   private Segment next;
40 if (next != null) {
41 Segment result = next;
42 next = result.next;
43 result.next = null;
52 if (segment.next != null || segment.prev != null) throw new IllegalArgumentException();
56 segment.next = next;
58 next = segment;