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

Lines Matching refs:TValue

55         public static TValue get<TKey, TValue>( this IDictionary<TKey, TValue> map, TKey key )
57 TValue value;
61 if ( typeof( TValue ).IsValueType )
64 return default( TValue );
68 public static TValue get<TKey, TValue>( this Dictionary<TKey, TValue> map, TKey key )
70 TValue value;
74 if ( typeof( TValue ).IsValueType )
77 return default( TValue );
80 public static TValue get<TKey, TValue>( this SortedList<TKey, TValue> map, TKey key )
82 TValue value;
86 if ( typeof( TValue ).IsValueType )
89 return default( TValue );
99 public static void put<TKey, TValue>( this IDictionary<TKey, TValue> map, TKey key, TValue value )
105 public static void put<TKey, TValue>( this Dictionary<TKey, TValue> map, TKey key, TValue value )
117 public static HashSet<TKey> keySet<TKey, TValue>( this IDictionary<TKey, TValue> map )
124 public static HashSet<TKey> keySet<TKey, TValue>( this Dictionary<TKey, TValue> map )
130 public static HashSet<object> keySet<TKey, TValue>( this SortedList<TKey, TValue> map )