5 writes to _remaining
Microsoft.CodeAnalysis.Test.Utilities (5)
FX\CappedStringWriter.cs (5)
28
_expectedLength =
_remaining
= 1024 * 1024;
33
_remaining
= Math.Max(256, expectedLength * 4);
46
_remaining
--;
59
_remaining
-= count;
72
_remaining
-= value.Length;
3 references to _remaining
Microsoft.CodeAnalysis.Test.Utilities (3)
FX\CappedStringWriter.cs (3)
44
if (1 <=
_remaining
)
57
if (count <=
_remaining
)
70
if (value.Length <=
_remaining
)