HomeSort by relevance Sort by last modified time
    Searched refs:TKey (Results 1 - 11 of 11) sorted by null

  /external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
DictionaryExtensions.cs 55 public static TValue get<TKey, TValue>(IDictionary<TKey, TValue> map, TKey key) {
67 public static TValue get<TKey, TValue>(Dictionary<TKey, TValue> map, TKey key) {
78 public static TValue get<TKey, TValue>(SortedList<TKey, TValue> map, TKey key) {
96 public static void put<TKey, TValue>(IDictionary<TKey, TValue> map, TKey key, TValue value)
    [all...]
  /external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
DictionaryExtensions.cs 55 public static TValue get<TKey, TValue>( this IDictionary<TKey, TValue> map, TKey key )
68 public static TValue get<TKey, TValue>( this Dictionary<TKey, TValue> map, TKey key )
80 public static TValue get<TKey, TValue>( this SortedList<TKey, TValue> map, TKey key )
99 public static void put<TKey, TValue>( this IDictionary<TKey, TValue> map, TKey key, TValue value
    [all...]
  /art/libartbase/base/
variant_map.h 184 template <typename Base, template <typename TV> class TKey> friend struct VariantMap;
212 template <typename Base, template <typename TV> class TKey>
216 using Key = TKey<TValue>;
221 const TValue* Get(const TKey<TValue>& key) const {
228 TValue* Get(const TKey<TValue>& key) {
235 TValue GetOrDefault(const TKey<TValue>& key) const {
241 void AssignIfExists(const TKey<T>& key, U* out) {
252 ScopedRemove(VariantMap& map, const TKey<TValue>& key) : map_(map), key_(key) {}
258 const TKey<TValue>& key_;
265 TValue ReleaseOrDefault(const TKey<TValue>& key)
    [all...]
  /external/antlr/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Collections.pas 51 IHashList<TKey, TValue> = interface(IDictionary<TKey, TValue>)
79 THashList<TKey, TValue> = class(TANTLRObject, IHashList<TKey, TValue>)
82 TPairEnumerator = class(TEnumerator<TPair<TKey, TValue>>)
84 FHashList: THashList<TKey, TValue>;
85 FOrderList: IList<TKey>;
88 FPair: TPair<TKey, TValue>;
89 function GetCurrent: TPair<TKey, TValue>;
91 function DoGetCurrent: TPair<TKey, TValue>; override
    [all...]
Antlr.Runtime.Tools.pas 186 IDictionary<TKey,TValue> = interface(IANTLRInterface)
189 function GetItem(const Key: TKey): TValue;
190 procedure SetItem(const Key: TKey; const Value: TValue);
194 procedure Add(const Key: TKey; const Value: TValue);
195 procedure Remove(const Key: TKey);
198 function TryGetValue(const Key: TKey; out Value: TValue): Boolean;
199 procedure AddOrSetValue(const Key: TKey; const Value: TValue);
200 function ContainsKey(const Key: TKey): Boolean;
202 function GetEnumerator: TEnumerator<TPair<TKey, TValue>>;
205 property Items[const Key: TKey]: TValue read GetItem write SetItem; default
    [all...]
  /external/protobuf/csharp/src/Google.Protobuf/Collections/
ReadOnlyDictionary.cs 42 internal sealed class ReadOnlyDictionary<TKey, TValue> : IDictionary<TKey, TValue>
44 private readonly IDictionary<TKey, TValue> wrapped;
46 public ReadOnlyDictionary(IDictionary<TKey, TValue> wrapped)
51 public void Add(TKey key, TValue value)
56 public bool ContainsKey(TKey key)
61 public ICollection<TKey> Keys
66 public bool Remove(TKey key)
71 public bool TryGetValue(TKey key, out TValue value)
81 public TValue this[TKey key]
    [all...]
  /art/cmdline/
cmdline_parser_test.cc 96 template <typename TMap, typename TKey, typename T>
99 const TKey& key) {
113 template <typename TMap, typename TKey, typename T>
116 const TKey& key) {
  /external/lua/src/
lobject.h 475 typedef union TKey {
481 } TKey;
486 { TKey *k_=(key); const TValue *io_=(obj); \
493 TKey i_key;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
lobject.h 545 typedef union TKey {
551 } TKey;
556 TKey i_key;
  /external/protobuf/csharp/src/Google.Protobuf/
CodedOutputStream.cs 55 /// and <c>MapField&lt;TKey, TValue&gt;</c> to serialize such fields.
CodedInputStream.cs 51 /// and <see cref="MapField{TKey, TValue}"/> to serialize such fields.
    [all...]

Completed in 469 milliseconds