Home
last modified time | relevance | path

Searched refs:SortedDictionary (Results 1 – 25 of 132) sorted by relevance

123456

/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Test/System.Collections.Generic/
H A DSortedDictionaryTest.cs138 SortedDictionary<int?,string> d = new SortedDictionary<int?,string> (); in AddNullKeyNullable()
311 SortedDictionary<int,string> d = new SortedDictionary<int,string> (); in KeysICollectionAdd()
321 SortedDictionary<int,string> d = new SortedDictionary<int,string> (); in KeysICollectionClear()
331 SortedDictionary<int,string> d = new SortedDictionary<int,string> (); in KeysICollectionRemove()
340 SortedDictionary<int,string> d = new SortedDictionary<int, string> (); in KeysICollectionCopyTo()
359 SortedDictionary<int,string> d = new SortedDictionary<int,string> (); in ValuesICollectionAdd()
369 SortedDictionary<int,string> d = new SortedDictionary<int,string> (); in ValuesICollectionClear()
379 SortedDictionary<int,string> d = new SortedDictionary<int,string> (); in ValuesICollectionRemove()
388 SortedDictionary<int,string> d = new SortedDictionary<int,string> (); in ValuesICollectionCopyTo()
581 SortedDictionary<int, string> Roundtrip(SortedDictionary<int, string> dic) in Roundtrip()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Collections/tests/Generic/SortedDictionary/
H A DSortedDictionary.Generic.Tests.cs22 return new SortedDictionary<TKey, TValue>(); in GenericIDictionaryFactory()
35SortedDictionary<TKey, TValue> copied = new SortedDictionary<TKey, TValue>(source, comparer); in SortedDictionary_Generic_Constructor_IComparer()
45 IDictionary<TKey, TValue> copied = new SortedDictionary<TKey, TValue>(source); in SortedDictionary_Generic_Constructor_IDictionary()
53 …Assert.Throws<ArgumentNullException>(() => new SortedDictionary<TKey, TValue>((IDictionary<TKey, T… in SortedDictionary_Generic_Constructor_NullIDictionary_ThrowsArgumentNullException()
62SortedDictionary<TKey, TValue> copied = new SortedDictionary<TKey, TValue>(source, comparer); in SortedDictionary_Generic_Constructor_IDictionary_IComparer()
75SortedDictionary<TKey, TValue> dictionary = (SortedDictionary<TKey, TValue>)GenericIDictionaryFact… in SortedDictionary_Generic_ContainsValue_NotPresent()
87SortedDictionary<TKey, TValue> dictionary = (SortedDictionary<TKey, TValue>)GenericIDictionaryFact… in SortedDictionary_Generic_ContainsValue_Present()
100SortedDictionary<TKey, TValue> dictionary = (SortedDictionary<TKey, TValue>)GenericIDictionaryFact… in SortedDictionary_Generic_ContainsValue_DefaultValueNotPresent()
108SortedDictionary<TKey, TValue> dictionary = (SortedDictionary<TKey, TValue>)GenericIDictionaryFact… in SortedDictionary_Generic_ContainsValue_DefaultValuePresent()
125SortedDictionary<TKey, TValue> set = (SortedDictionary<TKey, TValue>)GenericIDictionaryFactory(set… in SortedDictionary_Generic_DictionaryIsProperlySortedAccordingToComparer()
H A DSortedDictionary.Generic.Tests.Keys.cs20 return new SortedDictionary<string, string>().Keys; in GenericICollectionFactory()
25 SortedDictionary<string, string> list = new SortedDictionary<string, string>(); in GenericICollectionFactory()
45 …Assert.Throws<ArgumentNullException>(() => new SortedDictionary<string, string>.KeyCollection(null… in SortedDictionary_Generic_KeyCollection_Constructor_NullDictionary()
52 SortedDictionary<string, string> dictionary = new SortedDictionary<string, string>(); in SortedDictionary_Generic_KeyCollection_GetEnumerator()
69 return (ICollection)(new SortedDictionary<string, string>().Keys); in NonGenericICollectionFactory()
74 SortedDictionary<string, string> list = new SortedDictionary<string, string>(); in NonGenericICollectionFactory()
H A DSortedDictionary.Generic.Tests.Values.cs20 return new SortedDictionary<string, string>().Values; in GenericICollectionFactory()
25 SortedDictionary<string, string> list = new SortedDictionary<string, string>(); in GenericICollectionFactory()
45 …Assert.Throws<ArgumentNullException>(() => new SortedDictionary<string, string>.ValueCollection(nu… in SortedDictionary_Generic_ValueCollection_Constructor_NullDictionary()
52 SortedDictionary<string, string> dictionary = new SortedDictionary<string, string>(); in SortedDictionary_Generic_ValueCollection_GetEnumerator()
70 return (ICollection)(new SortedDictionary<string, string>().Values); in NonGenericICollectionFactory()
75 SortedDictionary<string, string> list = new SortedDictionary<string, string>(); in NonGenericICollectionFactory()
H A DSortedDictionary.Tests.cs16 return new SortedDictionary<string, string>(); in NonGenericIDictionaryFactory()
49 IDictionary dictionary = new SortedDictionary<string, int>(); in IDictionary_NonGeneric_ItemSet_NullValueWhenDefaultValueIsNonNull()
59 IDictionary dictionary = new SortedDictionary<string, string>(); in IDictionary_NonGeneric_ItemSet_KeyOfWrongType()
71 IDictionary dictionary = new SortedDictionary<string, string>(); in IDictionary_NonGeneric_ItemSet_ValueOfWrongType()
84 IDictionary dictionary = new SortedDictionary<string, string>(); in IDictionary_NonGeneric_Add_KeyOfWrongType()
97 IDictionary dictionary = new SortedDictionary<string, string>(); in IDictionary_NonGeneric_Add_ValueOfWrongType()
110 IDictionary dictionary = new SortedDictionary<string, int>(); in IDictionary_NonGeneric_Add_NullValueWhenDefaultTValueIsNonNull()
123 IDictionary dictionary = new SortedDictionary<string, int>(); in IDictionary_NonGeneric_Contains_KeyOfWrongType()
132 …AssertExtensions.Throws<ArgumentException>(null, () => new SortedDictionary<string, int>(source, S… in CantAcceptDuplicateKeysFromSourceDictionary()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Collections/tests/Generic/
H A DCollectionExtensionsTests.cs15 …IReadOnlyDictionary<string, string> dictionary = new SortedDictionary<string, string>() { { "key",… in GetValueOrDefault_KeyExistsInIReadOnlyDictionary_ReturnsValue()
23 …IReadOnlyDictionary<string, string> dictionary = new SortedDictionary<string, string>() { { "key",… in GetValueOrDefault_KeyDoesntExistInIReadOnlyDictionary_ReturnsDefaultValue()
31 …IReadOnlyDictionary<string, string> dictionary = new SortedDictionary<string, string>() { { "key",… in GetValueOrDefault_NullKeyIReadOnlyDictionary_ThrowsArgumentNullException()
54 IDictionary<string, string> dictionary = new SortedDictionary<string, string>(); in TryAdd_NullKeyIDictionary_ThrowsArgumentNullException()
61 IDictionary<string, string> dictionary = new SortedDictionary<string, string>(); in TryAdd_KeyDoesntExistInIDictionary_ReturnsTrue()
69 …IDictionary<string, string> dictionary = new SortedDictionary<string, string>() { ["key"] = "value… in TryAdd_KeyExistsInIDictionary_ReturnsFalse()
86 IDictionary<string, string> dictionary = new SortedDictionary<string, string>(); in Remove_NullKeyIDictionary_ThrowsArgumentNullException()
95 …IDictionary<string, string> dictionary = new SortedDictionary<string, string>() { ["key"] = "value… in Remove_KeyExistsInIDictionary_ReturnsTrue()
104 IDictionary<string, string> dictionary = new SortedDictionary<string, string>(); in Remove_KeyDoesntExistInIDictionary_ReturnsFalse()
/dports/devel/msbuild/msbuild-0.06/src/Tasks/AssemblyDependency/
H A DGlobalAssemblyCache.cs54SortedDictionary<Version, SortedDictionary<AssemblyNameExtension, string>> assembliesByRuntime = G… in GetLocationImpl()
57 …foreach (SortedDictionary<AssemblyNameExtension, string> runtimeBucket in assembliesByRuntime.Valu… in GetLocationImpl()
102 …private static SortedDictionary<Version, SortedDictionary<AssemblyNameExtension, string>> Generate… in GenerateListOfAssembliesByRuntime()
109SortedDictionary<Version, SortedDictionary<AssemblyNameExtension, string>> assembliesWithValidRunt… in GenerateListOfAssembliesByRuntime()
134SortedDictionary<AssemblyNameExtension, string> assembliesWithRuntime = null; in GenerateListOfAssembliesByRuntime()
140 …assembliesWithRuntime = new SortedDictionary<AssemblyNameExtension, string>(AssemblyNameReverseVer… in GenerateListOfAssembliesByRuntime()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Common/tests/System/Collections/
H A DDebugView.Tests.cs22 yield return new object[] { new SortedDictionary<string, int>() }; in TestDebuggerAttributes_Inputs()
29 yield return new object[] { new SortedDictionary<Guid, string>().Keys }; in TestDebuggerAttributes_Inputs()
30 yield return new object[] { new SortedDictionary<long, Guid>().Values }; in TestDebuggerAttributes_Inputs()
47 yield return new object[] { new SortedDictionary<string, int>{{"One", 1}, {"Two", 2}} }; in TestDebuggerAttributes_Inputs()
58 …yield return new object[] { new SortedDictionary<Guid, string>{{Guid.NewGuid(), "One"}, {Guid.NewG… in TestDebuggerAttributes_Inputs()
59 …yield return new object[] { new SortedDictionary<long, Guid>{{1L, Guid.NewGuid()}, {2L, Guid.NewGu… in TestDebuggerAttributes_Inputs()
/dports/lang/mono/mono-5.10.1.57/external/corert/src/ILCompiler.Compiler/src/Compiler/DependencyAnalysis/
H A DWindowsDebugMethodInfoSection.cs68 … List<SortedDictionary<uint, int>> moduleMethods = new List<SortedDictionary<uint, int>>(); in GetDebugMethodInfoMap()
75 moduleMethods.Add(new SortedDictionary<uint, int>()); in GetDebugMethodInfoMap()
90 SortedDictionary<uint, int> methodList = moduleMethods[assemblyIndex]; in GetDebugMethodInfoMap()
114 … private DebugInfoBlob ConvertToDebugInfoBlob(List<SortedDictionary<uint, int>> assemblyMethods) in ConvertToDebugInfoBlob()
/dports/lang/mono/mono-5.10.1.57/mcs/tools/mono-configuration-crypto/lib/Mono.Configuration.Crypto/
H A DKeyContainerCollection.cs16 SortedDictionary <string, KeyContainer> containers;
18 SortedDictionary <string, KeyContainer> Containers {
21 containers = new SortedDictionary <string, KeyContainer> ();
86 SortedDictionary <string, KeyContainer> containers = Containers; in LoadKeys()
137 SortedDictionary <string, KeyContainer> containers = Containers; in Add()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Collections/src/System/Collections/Generic/
H A DSortedDictionary.cs26 public SortedDictionary() : this((IComparer<TKey>)null) in SortedDictionary() method in System.Collections.Generic.SortedDictionary
30 public SortedDictionary(IDictionary<TKey, TValue> dictionary) : this(dictionary, null) in SortedDictionary() method in System.Collections.Generic.SortedDictionary
49 public SortedDictionary(IComparer<TKey> comparer) in SortedDictionary() method in System.Collections.Generic.SortedDictionary
563 private SortedDictionary<TKey, TValue> _dictionary;
565 public KeyCollection(SortedDictionary<TKey, TValue> dictionary) in KeyCollection()
698 private SortedDictionary<TKey, TValue>.Enumerator _dictEnum;
700 internal Enumerator(SortedDictionary<TKey, TValue> dictionary) in Enumerator()
748 private SortedDictionary<TKey, TValue> _dictionary;
750 public ValueCollection(SortedDictionary<TKey, TValue> dictionary) in ValueCollection()
883 private SortedDictionary<TKey, TValue>.Enumerator _dictEnum;
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/compmod/system/collections/generic/
H A Dsorteddictionary.cs25 public SortedDictionary() : this((IComparer<TKey>)null) { in SortedDictionary() method in System.Collections.Generic.SortedDictionary
28 public SortedDictionary(IDictionary<TKey,TValue> dictionary) : this( dictionary, null) { in SortedDictionary() method in System.Collections.Generic.SortedDictionary
43 public SortedDictionary(IComparer<TKey> comparer) { in SortedDictionary() method in System.Collections.Generic.SortedDictionary
449 private SortedDictionary<TKey,TValue> dictionary;
451 public KeyCollection(SortedDictionary<TKey,TValue> dictionary) { in KeyCollection()
561 private SortedDictionary<TKey, TValue>.Enumerator dictEnum;
563 internal Enumerator(SortedDictionary<TKey, TValue> dictionary) { in Enumerator()
604 private SortedDictionary<TKey,TValue> dictionary;
606 public ValueCollection(SortedDictionary<TKey,TValue> dictionary) { in ValueCollection()
716 private SortedDictionary<TKey, TValue>.Enumerator dictEnum;
[all …]
/dports/security/keepass/KeePass-2.49-Source/KeePass/Util/
H A DIniFile.cs26 using StrDict = System.Collections.Generic.SortedDictionary<string, string>;
32 private SortedDictionary<string, StrDict> m_vSections =
33 new SortedDictionary<string, StrDict>();
/dports/devel/msbuild/msbuild-0.06/src/Shared/
H A DVersionUtilities.cs35 …internal static SortedDictionary<Version, List<string>> GatherVersionStrings(Version targetPlatfor… in GatherVersionStrings()
37SortedDictionary<Version, List<string>> versionValues = new SortedDictionary<Version, List<string>… in GatherVersionStrings()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Workflow.ComponentModel/AuthoringOM/Filters/
H A DCompensationHandlingFilter.cs134SortedDictionary<int, CompensationInfo> sortedListOfCompensatableTargets = new SortedDictionary<in… in TryCompensateLastCompletedChildActivity()
296 …tCompensatableTargetActivities(CompositeActivity compositeActivity, SortedDictionary<int, Compensa… in CollectCompensatableTargetActivities()
324 …Contexts(ActivityExecutionContext context, Activity targetActivity, SortedDictionary<int, Compensa… in CollectCompensatableActiveContexts()
375 …Contexts(ActivityExecutionContext context, Activity targetActivity, SortedDictionary<int, Compensa… in CollectCompensatableCompletedContexts()
396SortedDictionary<int, Activity> sortedListOfCompensatableTargets = new SortedDictionary<int, Activ… in GetCompensatableChildren()
/dports/games/openbve/OpenBVE-1.8.2.1/source/AssimpParser/Wavefront/
H A DObjFileData.cs85 using GroupMap = System.Collections.Generic.SortedDictionary<string, System.Collections.Generic.Lis…
285 public SortedDictionary<string, Material> MaterialMap = new SortedDictionary<string, Material>();
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Web/System.Web.Compilation/
H A DTemplateBuildProvider.cs50 static SortedDictionary <string, ExtractDirectiveDependencies> directiveAttributes;
53 SortedDictionary <string, bool> dependencies;
70 …directiveAttributes = new SortedDictionary <string, ExtractDirectiveDependencies> (StringComparer.… in TemplateBuildProvider()
230 dict = dependencies = new SortedDictionary <string, bool> (StringComparer.OrdinalIgnoreCase); in AddParsedDependencies()
282 dependencies = new SortedDictionary <string, bool> (StringComparer.InvariantCultureIgnoreCase); in ExtractDependencies()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Json/src/System/Json/
H A DJsonObject.cs17 private readonly SortedDictionary<string, JsonValue> _map;
21 _map = new SortedDictionary<string, JsonValue>(StringComparer.Ordinal); in JsonObject()
36 _map = new SortedDictionary<string, JsonValue>(StringComparer.Ordinal); in JsonObject()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Json/System.Json/
H A DJsonObject.cs16 SortedDictionary<string, JsonValue> map;
20 map = new SortedDictionary<string, JsonValue> (StringComparer.Ordinal); in JsonObject()
31 map = new SortedDictionary<string, JsonValue> (StringComparer.Ordinal); in JsonObject()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Web.Mvc3/Mvc/
H A DFormContext.cs37 SortedDictionary<string, object> dict = new SortedDictionary<string, object>() { in GetJsonValidationMetadata()
/dports/lang/mono/mono-5.10.1.57/external/aspnetwebstack/src/System.Web.Mvc/
H A DFormContext.cs30 SortedDictionary<string, object> dict = new SortedDictionary<string, object>() in GetJsonValidationMetadata()
/dports/lang/mono/mono-5.10.1.57/external/linker/tuner/Mono.Tuner/
H A DMoonlightA11yDescriptorGenerator.cs73 SortedDictionary <TypeDefinition, IList> types = ScanAssembly (assembly); in ProcessAssembly()
142SortedDictionary<TypeDefinition, IList> /*,List<IAnnotationProvider>>*/ ScanAssembly (AssemblyDefi… in ScanAssembly()
147SortedDictionary<TypeDefinition, IList> members_used = new SortedDictionary<TypeDefinition, IList>… in ScanAssembly()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Web/Test/System.Web.UI.WebControls/
H A DMenuItemBindingTest.cs41 …static readonly SortedDictionary <string, string> toStringValues = new SortedDictionary<string, st…
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Data.SqlClient/tests/Tools/TDS/TDS/FedAuthInfo/
H A DTDSFedAuthInfoToken.cs18 public SortedDictionary<int, TDSFedAuthInfoOption> Options { get; private set; }
26 Options = new SortedDictionary<int, TDSFedAuthInfoOption>(); in TDSFedAuthInfoToken()
/dports/security/keepass/KeePass-2.49-Source/KeePassLib/Collections/
H A DProtectedBinaryDictionary.cs42 private SortedDictionary<string, ProtectedBinary> m_vBinaries =
43 new SortedDictionary<string, ProtectedBinary>();

123456