• Home
  • Raw
  • Download

Lines Matching refs:TDictionary

238   TDictionary<TKey,TValue> = class(TEnumerable<TPair<TKey,TValue>>, IDictionary<TKey, TValue>)
273 FDictionary: TDictionary<TKey,TValue>;
280 constructor Create(ADictionary: TDictionary<TKey,TValue>);
551 procedure TDictionary<TKey,TValue>.Rehash(NewCapPow2: Integer);
571 procedure TDictionary<TKey,TValue>.SetCapacity(ACapacity: Integer);
589 procedure TDictionary<TKey,TValue>.Grow;
599 function TDictionary<TKey,TValue>.GetBucketIndex(const Key: TKey; HashCode: Integer): Integer; in GetBucketIndex()
626 function TDictionary<TKey, TValue>.GetCount: Integer; in GetCount()
631 function TDictionary<TKey,TValue>.Hash(const Key: TKey): Integer; in Hash()
641 function TDictionary<TKey,TValue>.GetItem(const Key: TKey): TValue; in GetItem()
651 procedure TDictionary<TKey,TValue>.SetItem(const Key: TKey; const Value: TValue);
664 procedure TDictionary<TKey,TValue>.RehashAdd(HashCode: Integer; const Key: TKey; const Value: TValu…
674 function TDictionary<TKey, TValue>.QueryInterface(const IID: TGUID; in QueryInterface()
683 function TDictionary<TKey, TValue>._AddRef: Integer; in _AddRef()
688 function TDictionary<TKey, TValue>._Release: Integer; in _Release()
695 constructor TDictionary<TKey,TValue>.Create(ACapacity: Integer = 0);
700 constructor TDictionary<TKey,TValue>.Create(const AComparer: IEqualityComparer<TKey>);
705 constructor TDictionary<TKey,TValue>.Create(ACapacity: Integer; const AComparer: IEqualityComparer<…
718 constructor TDictionary<TKey, TValue>.Create(
728 constructor TDictionary<TKey, TValue>.Create(
739 destructor TDictionary<TKey,TValue>.Destroy;
745 procedure TDictionary<TKey,TValue>.Add(const Key: TKey; const Value: TValue);
767 procedure TDictionary<TKey,TValue>.Remove(const Key: TKey);
823 procedure TDictionary<TKey,TValue>.Clear; procedure
831 procedure TDictionary<TKey,TValue>.TrimExcess; procedure
836 function TDictionary<TKey,TValue>.TryGetValue(const Key: TKey; out Value: TValue): Boolean; in TryGetValue() function
848 procedure TDictionary<TKey,TValue>.DoAdd(HashCode, Index: Integer; const Key: TKey; const Value: TV… procedure
856 function TDictionary<TKey, TValue>.DoGetEnumerator: TEnumerator<TPair<TKey, TValue>>; in TDictionary() function
861 procedure TDictionary<TKey,TValue>.AddOrSetValue(const Key: TKey; const Value: TValue); procedure
869 function TDictionary<TKey,TValue>.ContainsKey(const Key: TKey): Boolean; in TDictionary() function
874 function TDictionary<TKey,TValue>.ContainsValue(const Value: TValue): Boolean; in ContainsValue() function
887 function TDictionary<TKey,TValue>.GetEnumerator: TPairEnumerator; in GetEnumerator() function
894 constructor TDictionary<TKey,TValue>.TPairEnumerator.Create(ADictionary: TDictionary<TKey,TValue>); procedure
901 function TDictionary<TKey, TValue>.TPairEnumerator.DoGetCurrent: TPair<TKey, TValue>; in TPairEnumerator() function
906 function TDictionary<TKey, TValue>.TPairEnumerator.DoMoveNext: Boolean; in TPairEnumerator() function
911 function TDictionary<TKey,TValue>.TPairEnumerator.GetCurrent: TPair<TKey,TValue>; in TPairEnumerator() function
917 function TDictionary<TKey,TValue>.TPairEnumerator.MoveNext: Boolean; in TPairEnumerator() function