8 writes to CharLen_Prop
mscorlib (8)
system\io\streamreader.cs (8)
954
CharLen_Prop
= 0;
984
CharLen_Prop
= 0; // StreamReader's buffer is empty.
989
CharLen_Prop
+= n; // Number of chars in StreamReader's buffer.
1050
CharLen_Prop
= 0; // StreamReader's buffer is empty.
1059
CharLen_Prop
+= n; // Number of chars in StreamReader's buffer.
1187
CharLen_Prop
= 0;
1206
CharLen_Prop
+= Decoder_Prop.GetChars(tmpByteBuffer, 0, ByteLen_Prop, CharBuffer_Prop, CharLen_Prop);
1241
CharLen_Prop
+= Decoder_Prop.GetChars(tmpByteBuffer, 0, ByteLen_Prop, CharBuffer_Prop, CharLen_Prop);
14 references to CharLen_Prop
mscorlib (14)
system\io\streamreader.cs (14)
808
if (CharPos_Prop ==
CharLen_Prop
&& (await ReadBufferAsync().ConfigureAwait(false)) == 0)
816
int tmpCharLen =
CharLen_Prop
;
890
StringBuilder sb = new StringBuilder(
CharLen_Prop
- CharPos_Prop);
894
sb.Append(CharBuffer_Prop, tmpCharPos,
CharLen_Prop
- tmpCharPos);
895
CharPos_Prop =
CharLen_Prop
; // We consumed these characters
897
} while (
CharLen_Prop
> 0);
934
if (CharPos_Prop ==
CharLen_Prop
&& (await ReadBufferAsync().ConfigureAwait(false)) == 0)
949
int n =
CharLen_Prop
- CharPos_Prop;
1206
CharLen_Prop += Decoder_Prop.GetChars(tmpByteBuffer, 0, ByteLen_Prop, CharBuffer_Prop,
CharLen_Prop
);
1211
return
CharLen_Prop
;
1222
return
CharLen_Prop
;
1241
CharLen_Prop += Decoder_Prop.GetChars(tmpByteBuffer, 0, ByteLen_Prop, CharBuffer_Prop,
CharLen_Prop
);
1242
} while (
CharLen_Prop
== 0);
1244
return
CharLen_Prop
;