29 references to InnerList
System.Drawing (29)
misc\ClientUtils.cs (29)
312
WeakRefObject weakRef =
InnerList
[index] as WeakRefObject;
321
InnerList
[index] = CreateWeakRefObject(value);
332
InnerList
.RemoveAt(currentIndex);
352
if( this.
InnerList
[i] != other.
InnerList
[i] ) {
353
if( this.
InnerList
[i] == null || !this.
InnerList
[i].Equals(other.
InnerList
[i])) {
381
destinationList.
InnerList
[--destinationIndex] = sourceList.
InnerList
[--sourceIndex];
386
destinationList.
InnerList
[destinationIndex++] = sourceList.
InnerList
[sourceIndex++];
405
for( int idx = 0; idx < this.
InnerList
.Count; idx++ ) {
406
if(this.
InnerList
[idx] != null && this.
InnerList
[idx].GetHashCode() == hash ) {
414
public void Clear() {
InnerList
.Clear(); }
415
public bool IsFixedSize { get { return
InnerList
.IsFixedSize; } }
416
public bool Contains(object value) { return
InnerList
.Contains(CreateWeakRefObject(value)); }
417
public void RemoveAt(int index) {
InnerList
.RemoveAt(index); }
418
public void Remove(object value) {
InnerList
.Remove(CreateWeakRefObject(value)); }
419
public int IndexOf(object value) { return
InnerList
.IndexOf(CreateWeakRefObject(value)); }
420
public void Insert(int index, object value) {
InnerList
.Insert(index, CreateWeakRefObject(value)); }
425
return
InnerList
.Add(CreateWeakRefObject(value));
431
public int Count { get { return
InnerList
.Count; } }
432
object ICollection.SyncRoot { get { return
InnerList
.SyncRoot; } }
433
public bool IsReadOnly { get { return
InnerList
.IsReadOnly; } }
434
public void CopyTo(Array array, int index) {
InnerList
.CopyTo(array, index); }
435
bool ICollection.IsSynchronized { get { return
InnerList
.IsSynchronized; } }
440
return
InnerList
.GetEnumerator();