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

Lines Matching full:integer

49   TIntegerArray = array of Integer;
131 function GetCapacity: Integer;
132 procedure SetCapacity(Value: Integer);
133 function GetCount: Integer;
134 procedure SetCount(Value: Integer);
135 function GetItem(Index: Integer): T;
136 procedure SetItem(Index: Integer; const Value: T);
141 function Add(const Value: T): Integer;
148 procedure Insert(Index: Integer; const Value: T);
150 procedure InsertRange(Index: Integer; const Values: array of T); overload;
151 procedure InsertRange(Index: Integer; const Collection: IEnumerable<T>); overload;
152 procedure InsertRange(Index: Integer; const Collection: TEnumerable<T>); overload;
153 procedure InsertRange(Index: Integer; const List: IList<T>); overload;
155 function Remove(const Value: T): Integer;
156 procedure Delete(Index: Integer);
157 procedure DeleteRange(AIndex, ACount: Integer);
163 function IndexOf(const Value: T): Integer;
164 function LastIndexOf(const Value: T): Integer;
170 function BinarySearch(const Item: T; out Index: Integer): Boolean; overload;
171 function BinarySearch(const Item: T; out Index: Integer; const AComparer: IComparer<T>): Boolean; overload;
175 function GetRange(const Index, Count: Integer): IList<T>;
179 property Capacity: Integer read GetCapacity write SetCapacity;
180 property Count: Integer read GetCount write SetCount;
181 property Items[Index: Integer]: T read GetItem write SetItem; default;
191 function GetCount: Integer;
206 property Count: Integer read GetCount;
212 FRefCount: Integer;
216 function _AddRef: Integer; stdcall;
217 function _Release: Integer; stdcall;
220 function GetCapacity: Integer;
221 procedure SetCapacity(Value: Integer);
222 function GetCount: Integer;
223 procedure SetCount(Value: Integer);
224 function GetItem(Index: Integer): T;
225 procedure SetItem(Index: Integer; const Value: T);
228 function GetRange(const Index, Count: Integer): IList<T>;
230 procedure InsertRange(Index: Integer; const List: IList<T>); overload;
242 HashCode: Integer;
249 FCount: Integer;
251 FGrowThreshold: Integer;
253 procedure SetCapacity(ACapacity: Integer);
254 procedure Rehash(NewCapPow2: Integer);
256 function GetBucketIndex(const Key: TKey; HashCode: Integer): Integer;
257 function Hash(const Key: TKey): Integer;
258 procedure RehashAdd(HashCode: Integer; const Key: TKey; const Value: TValue);
259 procedure DoAdd(HashCode, Index: Integer; const Key: TKey; const Value: TValue);
263 constructor Create(ACapacity: Integer = 0); overload;
265 constructor Create(ACapacity: Integer; const AComparer: IEqualityComparer<TKey>); overload;
274 FIndex: Integer;
286 FRefCount: Integer;
288 function _AddRef: Integer; stdcall;
289 function _Release: Integer; stdcall;
294 function GetCount: Integer;
327 /// x: Integer;
358 /// -Integer
375 FCount: Integer;
376 function GetAsInteger(const Name: String): Integer;
377 procedure SetAsInteger(const Name: String; const Value: Integer);
384 property Count: Integer read FCount;
385 property AsInteger[const Name: String]: Integer read GetAsInteger write SetAsInteger;
389 function InCircularRange(Bottom, Item, TopInc: Integer): Boolean;
468 function TList<T>.GetCapacity: Integer;
473 function TList<T>.GetCount: Integer;
478 function TList<T>.GetItem(Index: Integer): T;
488 function TList<T>.GetRange(const Index, Count: Integer): IList<T>;
490 I: Integer;
498 procedure TList<T>.InsertRange(Index: Integer; const List: IList<T>);
517 Integer);
522 procedure TList<T>.SetCount(Value: Integer);
527 procedure TList<T>.SetItem(Index: Integer; const Value: T);
537 function TList<T>._AddRef: Integer;
542 function TList<T>._Release: Integer;
551 procedure TDictionary<TKey,TValue>.Rehash(NewCapPow2: Integer);
554 i: Integer;
571 procedure TDictionary<TKey,TValue>.SetCapacity(ACapacity: Integer);
573 newCap: Integer;
591 newCap: Integer;
599 function TDictionary<TKey,TValue>.GetBucketIndex(const Key: TKey; HashCode: Integer): Integer;
601 start, hc: Integer;
604 Exit(not High(Integer));
626 function TDictionary<TKey, TValue>.GetCount: Integer;
631 function TDictionary<TKey,TValue>.Hash(const Key: TKey): Integer;
633 PositiveMask = not Integer($80000000);
636 // Not using compiler-Abs because we *must* get a positive integer;
637 // for compiler, Abs(Low(Integer)) is a null op.
643 index: Integer;
653 index: Integer;
664 procedure TDictionary<TKey,TValue>.RehashAdd(HashCode: Integer; const Key: TKey; const Value: TValue);
666 index: Integer;
683 function TDictionary<TKey, TValue>._AddRef: Integer;
688 function TDictionary<TKey, TValue>._Release: Integer;
695 constructor TDictionary<TKey,TValue>.Create(ACapacity: Integer = 0);
705 constructor TDictionary<TKey,TValue>.Create(ACapacity: Integer; const AComparer: IEqualityComparer<TKey>);
707 cap: Integer;
747 index, hc: Integer;
760 function InCircularRange(Bottom, Item, TopInc: Integer): Boolean;
769 gap, index, hc, bucket: Integer;
838 index: Integer;
848 procedure TDictionary<TKey,TValue>.DoAdd(HashCode, Index: Integer; const Key: TKey; const Value: TValue);
876 i: Integer;
932 I: Integer;
939 function TLocalStorage.GetAsInteger(const Name: String): Integer;
941 I: Integer;
945 Exit(Integer(FEntries[I].FValue));
951 I: Integer;
964 procedure TLocalStorage.SetAsInteger(const Name: String; const Value: Integer);
966 I: Integer;
983 I: Integer;