Lines Matching refs:IsEmpty
27 IsEmpty = true; in Clear()
34 if(!IsEmpty && ((LastPosition + 1) % buffer.Length) == FirstPosition) in Enqueue()
41 IsEmpty = false; in Enqueue()
49 if(IsEmpty) in TryDequeue()
56 IsEmpty = true; in TryDequeue()
73 if(IsEmpty) in TryPeek()
84 if(IsEmpty) in CopyTo()
101 if(IsEmpty) in GetEnumerator()
133 private bool IsEmpty { get; set; } property in Antmicro.Renode.Utilities.Collections.CircularBuffer
136 public int Count => IsEmpty ? 0
164 …IsWrapped = !IsEmpty; // usually we should isWrapped=true here, unless there is nothing in the col… in MoveLast()