9 writes to position
Microsoft.CodeAnalysis.CodeStyle (9)
SerializableBytes.cs (9)
107this.position = 0; 145this.position = value; 172position = target; 189this.position++; 201this.position += totalCopyCount; 328this.position = value; 370position = value; 383this.position++; 405this.position += writeCount;
14 references to position
Microsoft.CodeAnalysis.CodeStyle (14)
SerializableBytes.cs (14)
135return this.position; 157SeekOrigin.Current => checked(offset + position), 178if (position >= length) 195if (count <= 0 || position >= length) 200var totalCopyCount = Read(this.chunks, this.position, this.length, buffer, index, count); 263protected int CurrentChunkIndex { get { return GetChunkIndex(this.position); } } 264protected int CurrentChunkOffset { get { return GetChunkOffset(this.position); } } 368if (position > value) 376EnsureCapacity(this.position + 1); 384if (this.position >= length) 386this.length = this.position; 392EnsureCapacity(this.position + count); 411if (this.position >= length) 413this.length = this.position;