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

Lines Matching refs:Key

445   Key: String;
447 Key := 'Baz';
448 ReturnValue := FIDictionary.GetItem(Key);
455 Key: String;
457 Key := 'Bar';
459 FIDictionary.SetItem(Key, Value);
474 Key: String;
476 Key := 'Key';
478 FIDictionary.Add(Key, Value);
479 CheckEquals(FIDictionary['Key'],-1);
484 Key: String;
486 Key := 'Bar';
487 FIDictionary.Remove(Key);
495 Key: String;
497 Key := 'Zip';
498 ReturnValue := FIDictionary.TryGetValue(Key, Value);
502 Key := 'Oops';
503 ReturnValue := FIDictionary.TryGetValue(Key, Value);
510 Key: String;
512 Key := 'Foo';
513 ReturnValue := FIDictionary.ContainsKey(Key);
516 Key := 'foo';
517 ReturnValue := FIDictionary.ContainsKey(Key);
547 if (Pair.Key = 'Foo') then
553 if (Pair.Key = 'Bar') then
559 if (Pair.Key = 'Baz') then
565 if (Pair.Key = 'Zip') then
571 Check(False, 'Unknown key in dictionary');