3 writes to _priorPage
Microsoft.Build.Tasks.Core (3)
StreamMappedString.cs (3)
99_priorPage = null; 266_priorPage = new char[_pageSize]; 322_priorPage = swap;
10 references to _priorPage
Microsoft.Build.Tasks.Core (10)
StreamMappedString.cs (10)
214return _priorPage; 263if (_priorPage == null) 269_charactersRead = _reader.ReadBlock(_priorPage, 0, _pageSize); 273if (_priorPage[i] == '\x1a') 275Array.Copy(_priorPage, i + 1, _priorPage, i, _charactersRead - i - 1); 276_charactersRead += _reader.ReadBlock(_priorPage, _charactersRead - 1, 1); 305ErrorUtilities.VerifyThrow(_priorPage != null, "There is no last character in the stream."); 306c = _priorPage[_pageSize - 1]; 321_currentPage = _priorPage;