1 write to _allowedBmpCodePoints
System.Text.Encodings.Web (1)
System\Text\Encodings\Web\OptimizedInboxTextEncoder.cs (1)
39
_allowedBmpCodePoints
= allowedCodePointsBmp;
17 references to _allowedBmpCodePoints
System.Text.Encodings.Web (17)
System\Text\Encodings\Web\OptimizedInboxTextEncoder.cs (17)
51
_allowedBmpCodePoints
.ForbidUndefinedCharacters();
59
_allowedBmpCodePoints
.ForbidHtmlCharacters();
64
_allowedBmpCodePoints
.ForbidChar(ch);
69
_asciiPreescapedData.PopulatePreescapedData(
_allowedBmpCodePoints
, scalarEscaper);
79
if (
_allowedBmpCodePoints
.IsCharAllowed((char)i))
104
if (
_allowedBmpCodePoints
.IsCodePointAllowed((uint)unicodeScalar))
388
if (!
_allowedBmpCodePoints
.IsCharAllowed((char)scalarValue.Value)) { break; } // disallowed code point
421
if (!
_allowedBmpCodePoints
.IsCharAllowed(data[0])) { goto Return; }
422
if (!
_allowedBmpCodePoints
.IsCharAllowed(data[1])) { idx += 1; goto Return; }
423
if (!
_allowedBmpCodePoints
.IsCharAllowed(data[2])) { idx += 2; goto Return; }
424
if (!
_allowedBmpCodePoints
.IsCharAllowed(data[3])) { idx += 3; goto Return; }
425
if (!
_allowedBmpCodePoints
.IsCharAllowed(data[4])) { idx += 4; goto Return; }
426
if (!
_allowedBmpCodePoints
.IsCharAllowed(data[5])) { idx += 5; goto Return; }
427
if (!
_allowedBmpCodePoints
.IsCharAllowed(data[6])) { idx += 6; goto Return; }
428
if (!
_allowedBmpCodePoints
.IsCharAllowed(data[7])) { idx += 7; goto Return; }
435
if (!
_allowedBmpCodePoints
.IsCharAllowed(c)) { goto Return; }
452
return
_allowedBmpCodePoints
.IsCodePointAllowed((uint)value.Value);