Home | History | Annotate | Download | only in Antlr3.Runtime

Lines Matching defs:Create

94         constructor Create(const AHashList: THashList<TKey, TValue>);
117 constructor Create; overload;
118 constructor Create(const ACapacity: Integer); overload;
201 constructor THashList<TKey, TValue>.Create;
203 Create(-1);
206 constructor THashList<TKey, TValue>.Create(const ACapacity: Integer);
208 inherited Create;
211 FDictionary := TDictionary<TKey, TValue>.Create;
212 FInsertionOrderList := TList<TKey>.Create;
216 FDictionary := TDictionary<TKey, TValue>.Create(ACapacity);
217 FInsertionOrderList := TList<TKey>.Create;
229 Result := TPairEnumerator.Create(Self);
269 constructor THashList<TKey, TValue>.TPairEnumerator.Create(
272 inherited Create;
296 raise EInvalidOperation.Create('Collection was modified; enumeration operation may not execute.');
342 SB := TStringBuilder.Create;
374 SB := TStringBuilder.Create;
410 SB := TStringBuilder.Create;