Home
last modified time | relevance | path

Searched refs:KeyCollection (Results 1 – 25 of 78) sorted by relevance

1234

/dports/deskutils/egroupware/egroupware/vendor/simplesamlphp/saml2/src/SAML2/Certificate/
H A DKeyLoader.php9 use SAML2\Certificate\KeyCollection; alias
31 $this->loadedKeys = new KeyCollection();
48 ) : KeyCollection {
65 ) : KeyCollection {
153 public function getKeys() : KeyCollection
H A DKeyCollection.php14 class KeyCollection extends ArrayCollection class
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/mscorlib/system/collections/objectmodel/
H A Dreadonlydictionary.cs33 private KeyCollection m_keys;
49 public KeyCollection Keys {
51 Contract.Ensures(Contract.Result<KeyCollection>() != null);
53 m_keys = new KeyCollection(m_dictionary.Keys);
356 … public sealed class KeyCollection : ICollection<TKey>, ICollection, IReadOnlyCollection<TKey> { class in System.Collections.ObjectModel.ReadOnlyDictionary
361 internal KeyCollection(ICollection<TKey> collection) in KeyCollection() method in System.Collections.ObjectModel.ReadOnlyDictionary.KeyCollection
555 #region Helper method for our KeyCollection and ValueCollection
624 #endregion Helper method for our KeyCollection and ValueCollection
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.ObjectModel/src/System/Collections/ObjectModel/
H A DReadOnlyDictionary.cs24 private KeyCollection _keys;
42 public KeyCollection Keys
48 _keys = new KeyCollection(m_dictionary.Keys);
424 … public sealed class KeyCollection : ICollection<TKey>, ICollection, IReadOnlyCollection<TKey> class in System.Collections.ObjectModel.ReadOnlyDictionary
430 internal KeyCollection(ICollection<TKey> collection) in KeyCollection() method in System.Collections.ObjectModel.ReadOnlyDictionary.KeyCollection
643 #region Helper method for our KeyCollection and ValueCollection
727 #endregion Helper method for our KeyCollection and ValueCollection
/dports/lang/mono/mono-5.10.1.57/external/api-doc-tools/external/Lucene.Net.Light/src/core/Support/
H A DWeakDictionary.cs160 return new KeyCollection(_hm);
178 #region KeyCollection
179 class KeyCollection : ICollection<TKey> class in Lucene.Net.Support.WeakDictionary
183 public KeyCollection(HashMap<WeakKey<TKey>, TValue> dict) in KeyCollection() method in Lucene.Net.Support.WeakDictionary.KeyCollection
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.ObjectModel/tests/ReadOnlyDictionary/
H A DReadOnlyDictionary_SerializationTests.cs28 ReadOnlyDictionary<string, string>.KeyCollection keys = d.Keys; in SerializeDeserialize_Roundtrips()
29 … ReadOnlyDictionary<string, string>.KeyCollection keysClone = BinaryFormatterHelpers.Clone(keys); in SerializeDeserialize_Roundtrips()
H A DReadOnlyDictionaryTests.cs225 …lidateDebuggerTypeProxyProperties(typeof(ReadOnlyDictionary<int, int>.KeyCollection), new Type[] {… in DebuggerAttributeTests()
231 …lidateDebuggerTypeProxyProperties(typeof(ReadOnlyDictionary<int, int>.KeyCollection), new Type[] {… in DebuggerAttributeTests()
250 …lidateDebuggerTypeProxyProperties(typeof(ReadOnlyDictionary<int, int>.KeyCollection), new Type[] {… in DebuggerAttribute_NullDictionaryKeys_ThrowsArgumentNullException()
/dports/lang/mono/mono-5.10.1.57/external/corert/src/System.Private.Interop/src/Shared/
H A DHashSet.cs157 public KeyCollection Keys
161 return new KeyCollection(this);
259 public sealed class KeyCollection : ICollection<TKey>, ICollection class in System.Collections.Generic.Internal.HashSet
263 public KeyCollection(HashSet<TKey> hashSet) in KeyCollection() method in System.Collections.Generic.Internal.HashSet.KeyCollection
H A DDictionary.cs123 public KeyCollection Keys
127 return new KeyCollection(this);
683 public sealed class KeyCollection : ICollection<TKey>, ICollection class in System.Collections.Generic.Internal.Dictionary
687 public KeyCollection(Dictionary<TKey, TValue> dictionary) in KeyCollection() method in System.Collections.Generic.Internal.Dictionary.KeyCollection
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/mscorlib/system/collections/generic/
H A Ddictionary.cs75 private KeyCollection keys;
135 public KeyCollection Keys {
137 Contract.Ensures(Contract.Result<KeyCollection>() != null);
138 if (keys == null) keys = new KeyCollection(this);
145 if (keys == null) keys = new KeyCollection(this);
152 if (keys == null) keys = new KeyCollection(this);
801 public sealed class KeyCollection: ICollection<TKey>, ICollection, IReadOnlyCollection<TKey> class in System.Collections.Generic.Dictionary
805 public KeyCollection(Dictionary<TKey,TValue> dictionary) { in KeyCollection() method in System.Collections.Generic.Dictionary.KeyCollection
/dports/www/ilias/ILIAS-5.4.25/libs/composer/vendor/simplesamlphp/saml2/src/SAML2/Certificate/
H A DKeyCollection.php11 class KeyCollection extends ArrayCollection class
H A DKeyLoader.php24 $this->loadedKeys = new KeyCollection();
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Data.SqlClient/src/System/Data/SqlClient/
H A DSqlStatistics.cs312 Debug.Assert((collection is KeyCollection) || (collection is ValueCollection)); in Collection()
326 if (_collection is KeyCollection) in ICollection.CopyTo()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Collections/src/System/Collections/Generic/
H A DSortedDictionary.cs20 private KeyCollection _keys;
154 public KeyCollection Keys
158 if (_keys == null) _keys = new KeyCollection(this);
561 … public sealed class KeyCollection : ICollection<TKey>, ICollection, IReadOnlyCollection<TKey> class in System.Collections.Generic.SortedDictionary
565 public KeyCollection(SortedDictionary<TKey, TValue> dictionary) in KeyCollection() method in System.Collections.Generic.SortedDictionary.KeyCollection
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/compmod/system/collections/generic/
H A Dsorteddictionary.cs16 private KeyCollection keys;
124 public KeyCollection Keys {
126 if (keys == null) keys = new KeyCollection(this);
448 … public sealed class KeyCollection: ICollection<TKey>, ICollection, IReadOnlyCollection<TKey> { class in System.Collections.Generic.SortedDictionary
451 public KeyCollection(SortedDictionary<TKey,TValue> dictionary) { in KeyCollection() method in System.Collections.Generic.SortedDictionary.KeyCollection
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data.Entity/System/Data/Common/Utils/
H A DSet.cs321 private Dictionary<TElement, bool>.KeyCollection.Enumerator keys;
323 internal Enumerator(Dictionary<TElement, bool>.KeyCollection.Enumerator keys) in Enumerator()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Common/src/CoreLib/System/Collections/Generic/
H A DDictionary.cs57 private KeyCollection _keys;
158 public KeyCollection Keys
162 if (_keys == null) _keys = new KeyCollection(this);
171 if (_keys == null) _keys = new KeyCollection(this);
180 if (_keys == null) _keys = new KeyCollection(this);
1060 … public sealed class KeyCollection : ICollection<TKey>, ICollection, IReadOnlyCollection<TKey> class in System.Collections.Generic.Dictionary
1064 public KeyCollection(Dictionary<TKey, TValue> dictionary) in KeyCollection() method in System.Collections.Generic.Dictionary.KeyCollection
/dports/lang/mono/mono-5.10.1.57/external/corert/src/System.Private.CoreLib/shared/System/Collections/Generic/
H A DDictionary.cs60 private KeyCollection _keys;
162 public KeyCollection Keys
166 if (_keys == null) _keys = new KeyCollection(this);
175 if (_keys == null) _keys = new KeyCollection(this);
184 if (_keys == null) _keys = new KeyCollection(this);
1042 … public sealed class KeyCollection : ICollection<TKey>, ICollection, IReadOnlyCollection<TKey> class in System.Collections.Generic.Dictionary
1046 public KeyCollection(Dictionary<TKey, TValue> dictionary) in KeyCollection() method in System.Collections.Generic.Dictionary.KeyCollection
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.ObjectModel/ref/
H A DSystem.ObjectModel.cs54 …public System.Collections.ObjectModel.ReadOnlyDictionary<TKey, TValue>.KeyCollection Keys { get { …
86 …public sealed partial class KeyCollection : System.Collections.Generic.ICollection<TKey>, System.C… class in System.Collections.ObjectModel.ReadOnlyDictionary
88 internal KeyCollection() { } in KeyCollection() method in System.Collections.ObjectModel.ReadOnlyDictionary.KeyCollection
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Collections/tests/Generic/Dictionary/
H A DDictionary.Generic.Tests.Keys.cs46 … Assert.Throws<ArgumentNullException>(() => new Dictionary<string, string>.KeyCollection(null)); in Dictionary_Generic_KeyCollection_Constructor_NullDictionary()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Collections/tests/Generic/SortedDictionary/
H A DSortedDictionary.Generic.Tests.Keys.cs45 …sert.Throws<ArgumentNullException>(() => new SortedDictionary<string, string>.KeyCollection(null)); in SortedDictionary_Generic_KeyCollection_Constructor_NullDictionary()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Collections/ref/
H A DSystem.Collections.cs75 …public System.Collections.Generic.Dictionary<TKey, TValue>.KeyCollection Keys { get { throw null; …
123 …public sealed partial class KeyCollection : System.Collections.Generic.ICollection<TKey>, System.C… class in System.Collections.Generic.Dictionary
125 public KeyCollection(System.Collections.Generic.Dictionary<TKey, TValue> dictionary) { } in KeyCollection() method in System.Collections.Generic.Dictionary.KeyCollection
131 …public System.Collections.Generic.Dictionary<TKey, TValue>.KeyCollection.Enumerator GetEnumerator(… in GetEnumerator()
408 …public System.Collections.Generic.SortedDictionary<TKey, TValue>.KeyCollection Keys { get { throw …
452 …public sealed partial class KeyCollection : System.Collections.Generic.ICollection<TKey>, System.C… class in System.Collections.Generic.SortedDictionary
454 … public KeyCollection(System.Collections.Generic.SortedDictionary<TKey, TValue> dictionary) { } in KeyCollection() method in System.Collections.Generic.SortedDictionary.KeyCollection
460 …public System.Collections.Generic.SortedDictionary<TKey, TValue>.KeyCollection.Enumerator GetEnume… in GetEnumerator()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web/Routing/
H A DRouteValueDictionary.cs32 public Dictionary<string, object>.KeyCollection Keys {
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Core/Microsoft/Scripting/Actions/
H A DExpandoObject.cs315 private class KeyCollection : ICollection<string> { class in System.Dynamic.ExpandoObject
321 internal KeyCollection(ExpandoObject expando) { in KeyCollection() method in System.Dynamic.ExpandoObject.KeyCollection
542 return new KeyCollection(this);
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Linq.Expressions/src/System/Dynamic/
H A DExpandoObject.cs350 private class KeyCollection : ICollection<string> class in System.Dynamic.ExpandoObject
357 internal KeyCollection(ExpandoObject expando) in KeyCollection() method in System.Dynamic.ExpandoObject.KeyCollection
618 ICollection<string> IDictionary<string, object>.Keys => new KeyCollection(this);

1234