2 writes to formatList
System.Windows.Forms (2)
winforms\Managed\System\WinForms\DataFormats.cs (2)
297
formatList
= newList;
326
formatList
= new Format [] {
14 references to formatList
System.Windows.Forms (14)
winforms\Managed\System\WinForms\DataFormats.cs (14)
210
if (
formatList
[n].Name.Equals(format))
211
return
formatList
[n];
215
if (String.Equals(
formatList
[n].Name, format, StringComparison.OrdinalIgnoreCase))
216
return
formatList
[n];
228
formatList
[formatCount] = new Format(format, formatId);
229
return
formatList
[formatCount++];
256
if (
formatList
[n].Id == id)
257
return
formatList
[n];
276
formatList
[formatCount] = new Format(s.ToString(), id);
278
return
formatList
[formatCount++];
289
if (null ==
formatList
||
formatList
.Length <= formatCount + size) {
295
newList[n] =
formatList
[n];
346
formatCount =
formatList
.Length;