6 references to Clear
Microsoft.CodeAnalysis (6)
src\Dependencies\Collections\SegmentedArray.cs (1)
20=> Clear(array, 0, array.Length);
src\Dependencies\Collections\SegmentedDictionary`2.cs (1)
307SegmentedArray.Clear(_entries, 0, count);
src\Dependencies\Collections\SegmentedHashSet`1.cs (1)
209SegmentedArray.Clear(_entries, 0, count);
src\Dependencies\Collections\SegmentedList`1.cs (3)
374SegmentedArray.Clear(_items, 0, size); // Clear the elements so that the gc can reclaim the references. 1056SegmentedArray.Clear(_items, freeIndex, _size - freeIndex); // Clear the elements so that the gc can reclaim the references. 1116SegmentedArray.Clear(_items, _size, count);