19 references to ReplacementChar
Microsoft.CodeAnalysis.CodeStyle (19)
Rune.cs (14)
275
/// and outs via <paramref name="result"/> <see cref="
ReplacementChar
"/> and via <paramref name="charsConsumed"/> the length of the input buffer.
279
/// and outs via <paramref name="result"/> <see cref="
ReplacementChar
"/> and via <paramref name="charsConsumed"/> the number of
286
/// will contain the real scalar value if successfully decoded, or it will contain <see cref="
ReplacementChar
"/> if
338
result =
ReplacementChar
;
344
result =
ReplacementChar
;
359
/// and outs via <paramref name="result"/> <see cref="
ReplacementChar
"/> and via <paramref name="bytesConsumed"/> the length of the input buffer.
363
/// and outs via <paramref name="result"/> <see cref="
ReplacementChar
"/> and via <paramref name="bytesConsumed"/> the number of
370
/// will contain the real scalar value if successfully decoded, or it will contain <see cref="
ReplacementChar
"/> if
527
result =
ReplacementChar
;
534
result =
ReplacementChar
;
584
result =
ReplacementChar
;
594
result =
ReplacementChar
;
670
value =
ReplacementChar
;
709
value =
ReplacementChar
;
VirtualChar.cs (5)
33
/// cref="Rune.
ReplacementChar
"/>. The value of this character can be retrieved from
40
/// cref="Rune"/>. If <see cref="Rune"/> is not <see cref="Rune.
ReplacementChar
"/>, this will be <c>0</c>.
60
/// value will be <see cref="Rune.
ReplacementChar
"/>.
67
return new VirtualChar(rune: Rune.
ReplacementChar
, surrogateChar, span);
72
Contract.ThrowIfFalse(surrogateChar == 0 || rune == Rune.
ReplacementChar
,