1 write to _text
Microsoft.Build.Framework (1)
Utilities\MessageParser.cs (1)
196
_text
= text;
23 references to _text
Microsoft.Build.Framework (23)
Utilities\MessageParser.cs (23)
203
=> _position <
_text
.Length
204
?
_text
.Substring(_position)
209
while (_position <
_text
.Length && char.IsWhiteSpace(
_text
[_position]))
217
Assumed.LessThan(_position,
_text
.Length);
218
Assumed.Equal(
_text
[_position], c);
225
if (
_text
.Length < _position + 8 ||
226
_text
[_position] is not 'M' ||
227
_text
[_position + 1] is not 'S' ||
228
_text
[_position + 2] is not 'B' ||
229
!char.IsAsciiDigit(
_text
[_position + 3]) ||
230
!char.IsAsciiDigit(
_text
[_position + 4]) ||
231
!char.IsAsciiDigit(
_text
[_position + 5]) ||
232
!char.IsAsciiDigit(
_text
[_position + 6]) ||
233
_text
[_position + 7] is not ':')
253
code =
_text
.Substring(start, _position - start);
264
while (_position <
_text
.Length && char.IsAsciiLetter(
_text
[_position]))
277
while (_position <
_text
.Length && char.IsAsciiDigit(
_text
[_position]))
289
return _position <
_text
.Length &&
_text
[_position] is ':';
302
code =
_text
.Substring(start, _position - start);