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

Lines Matching refs:ReturnValue

155   ReturnValue: string;
157 ReturnValue := FIANTLRString.GetValue;
158 CheckEquals(ReturnValue,'foo');
183 ReturnValue: string;
185 ReturnValue := FANTLRString.ToString;
186 CheckEquals(ReturnValue,'foo');
205 ReturnValue: IANTLRInterface;
207 ReturnValue := FICloneable.Clone;
208 Check(Supports(ReturnValue, IFoo));
209 CheckEquals((ReturnValue as IFoo).Value,(FICloneable as IFoo).Value);
224 ReturnValue: Integer;
227 ReturnValue := FIList.GetCapacity;
228 CheckEquals(ReturnValue,100);
242 ReturnValue: Integer;
246 ReturnValue := FIList.GetCount;
247 CheckEquals(ReturnValue,1);
261 ReturnValue: Integer;
270 ReturnValue := FIList.GetItem(Index);
271 CheckEquals(ReturnValue,300);
292 ReturnValue: Integer;
297 ReturnValue := FIList.Add(Value);
298 CheckEquals(ReturnValue,0);
337 ReturnValue: Integer;
346 ReturnValue := FIList.Remove(Value);
347 CheckEquals(ReturnValue,2);
394 ReturnValue: Boolean;
403 ReturnValue := FIList.Contains(Value);
404 CheckTrue(ReturnValue);
406 ReturnValue := FIList.Contains(Value);
407 CheckFalse(ReturnValue);
412 ReturnValue: Integer;
421 ReturnValue := FIList.IndexOf(Value);
422 CheckEquals(ReturnValue,2);
424 ReturnValue := FIList.IndexOf(Value);
425 CheckEquals(ReturnValue,-1);
444 ReturnValue: Integer;
448 ReturnValue := FIDictionary.GetItem(Key);
449 CheckEquals(ReturnValue,7);
465 ReturnValue: Integer;
467 ReturnValue := FIDictionary.GetCount;
468 CheckEquals(ReturnValue,4);
493 ReturnValue: Boolean;
498 ReturnValue := FIDictionary.TryGetValue(Key, Value);
499 CheckTrue(ReturnValue);
503 ReturnValue := FIDictionary.TryGetValue(Key, Value);
504 CheckFalse(ReturnValue);
509 ReturnValue: Boolean;
513 ReturnValue := FIDictionary.ContainsKey(Key);
514 CheckTrue(ReturnValue);
517 ReturnValue := FIDictionary.ContainsKey(Key);
518 CheckFalse(ReturnValue);
523 ReturnValue: Boolean;
527 ReturnValue := FIDictionary.ContainsValue(Value);
528 CheckTrue(ReturnValue);
531 ReturnValue := FIDictionary.ContainsValue(Value);
532 CheckFalse(ReturnValue);