Home
last modified time | relevance | path

Searched refs:SortedList (Results 1 – 25 of 511) sorted by relevance

12345678910>>...21

/dports/devel/hs-haskell-language-server/haskell-language-server-1.4.0/_cabal_deps/sorted-list-0.2.1.0/Data/
H A DSortedList.hs148 SortedList xs <> SortedList ys = SortedList $ mergeSortedLists xs ys function
155 mappend (SortedList xs) (SortedList ys) = SortedList $ mergeSortedLists xs ys
232 splitAt :: Int -> SortedList a -> (SortedList a, SortedList a)
235 in (SortedList ys, SortedList zs)
240 partition :: (a -> Bool) -> SortedList a -> (SortedList a, SortedList a)
243 in (SortedList ys, SortedList zs)
293 nub (SortedList l) = SortedList $ go l
377 span :: (a -> Bool) -> SortedList a -> (SortedList a, SortedList a)
380 in (SortedList ys, SortedList zs)
396 intersect :: Ord a => SortedList a -> SortedList a -> SortedList a
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/corlib/Test/System.Collections/
H A DSortedListTest.cs45 SortedList temp1 = new SortedList (); in TestConstructor1()
53 SortedList temp1 = new SortedList (c); in TestConstructor2()
66 SortedList temp1 = new SortedList (d); in TestConstructor3()
126 SortedList sl1 = new SortedList (); in TestIsSynchronized()
144 SortedList list = new SortedList (); in TestCapacity2()
189 SortedList sl1 = new SortedList (); in TestCount()
200 SortedList sl1 = new SortedList (); in TestIsFixed()
207 SortedList sl1 = new SortedList (); in TestIsReadOnly()
214 SortedList sl1 = new SortedList (); in TestItem()
234 SortedList sl1 = new SortedList (); in TestSyncRoot()
[all …]
/dports/cad/uranium/Uranium-3ed9c4de/tests/
H A DTestSortedList.py5 from UM.SortedList import SortedList
10 slt = SortedList()
14 slt = SortedList()
30 slt = SortedList()
35 slt = SortedList()
40 slt = SortedList()
46 slt = SortedList()
64 slt = SortedList()
77 slt = SortedList()
96 slt = SortedList()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Collections/tests/Generic/SortedList/
H A DSortedList.Generic.Tests.cs48 SortedList<TKey, TValue> copied = new SortedList<TKey, TValue>(source, comparer); in SortedList_Generic_Constructor_IComparer()
83 SortedList<TKey, TValue> copied = new SortedList<TKey, TValue>(source, comparer); in SortedList_Generic_Constructor_IDictionary_IComparer()
96 SortedList<TKey, TValue> dictionary = new SortedList<TKey, TValue>(count); in SortedList_Generic_Constructor_int()
118 SortedList<TKey, TValue> dictionary = new SortedList<TKey, TValue>(count, comparer); in SortedList_Generic_Constructor_int_IComparer()
132SortedList<TKey, TValue> dictionary = (SortedList<TKey, TValue>)GenericIDictionaryFactory(count); in SortedList_Generic_Capacity_setRoundTrips()
144SortedList<TKey, TValue> dictionary = (SortedList<TKey, TValue>)GenericIDictionaryFactory(count); in SortedList_Generic_Capacity_NegativeValue_ThrowsArgumentOutOfRangeException()
154SortedList<TKey, TValue> dictionary = (SortedList<TKey, TValue>)GenericIDictionaryFactory(); in SortedList_Generic_Capacity_LessThanCount_ThrowsArgumentOutOfRangeException()
166SortedList<TKey, TValue> dictionary = (SortedList<TKey, TValue>)GenericIDictionaryFactory(); in SortedList_Generic_Capacity_GrowsDuringAdds()
186SortedList<TKey, TValue> dictionary = (SortedList<TKey, TValue>)GenericIDictionaryFactory(); in SortedList_Generic_Capacity_ClearDoesntTrim()
207 SortedList<TKey, TValue> dictionary = new SortedList<TKey, TValue>(count); in SortedList_Generic_Capacity_ClearTrimsToInitialCapacity()
[all …]
H A DSortedList.Tests.cs16 return new SortedList<string, string>(); in NonGenericIDictionaryFactory()
40 IDictionary dictionary = new SortedList<string, int>(); in IDictionary_NonGeneric_ItemSet_NullValueWhenDefaultValueIsNonNull()
50 IDictionary dictionary = new SortedList<string, string>(); in IDictionary_NonGeneric_ItemSet_KeyOfWrongType()
62 IDictionary dictionary = new SortedList<string, string>(); in IDictionary_NonGeneric_ItemSet_ValueOfWrongType()
75 IDictionary dictionary = new SortedList<string, string>(); in IDictionary_NonGeneric_Add_KeyOfWrongType()
88 IDictionary dictionary = new SortedList<string, string>(); in IDictionary_NonGeneric_Add_ValueOfWrongType()
101 IDictionary dictionary = new SortedList<string, int>(); in IDictionary_NonGeneric_Add_NullValueWhenDefaultTValueIsNonNull()
114 IDictionary dictionary = new SortedList<string, int>(); in IDictionary_NonGeneric_Contains_KeyOfWrongType()
124 …AssertExtensions.Throws<ArgumentException>(null, () => new SortedList<string, int>(source, StringC… in CantAcceptDuplicateKeysFromSourceDictionary()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Collections.NonGeneric/tests/
H A DSortedListTests.cs19 var sortList = new SortedList(); in Ctor_Empty()
236 var list = SortedList.Synchronized(new SortedList() { { "a", 1 }, { "b", 2 } }); in DebuggerAttribute_SynchronizedList()
282 var sortList1 = new SortedList(); in Add()
342 SortedList sortListClone = (SortedList)sortList2.Clone(); in Clone()
358 var sortList = new SortedList(); in Clone_IsShallowCopy()
364 SortedList sortListClone = (SortedList)sortList.Clone(); in Clone_IsShallowCopy()
393 var sortList1 = new SortedList(); in ContainsKey()
419 var sortList1 = new SortedList(); in ContainsKey_NullKey_ThrowsArgumentNullException()
430 var sortList1 = new SortedList(); in ContainsValue()
1500 SortedList sortList = SortedList.Synchronized(new SortedList()); in Synchronized_IsSynchronized()
[all …]
H A DHelpers.cs151 …public static void PerformActionOnAllSortedListWrappers(SortedList sortedList, Action<SortedList> … in PerformActionOnAllSortedListWrappers()
154 SortedList[] sortedListTypes = in PerformActionOnAllSortedListWrappers()
156 (SortedList)sortedList.Clone(), in PerformActionOnAllSortedListWrappers()
157 SortedList.Synchronized(sortedList) in PerformActionOnAllSortedListWrappers()
160 foreach (SortedList sortedListType in sortedListTypes) in PerformActionOnAllSortedListWrappers()
166 public static SortedList CreateIntSortedList(int count, int start = 0) in CreateIntSortedList()
168 var sortedList = new SortedList(); in CreateIntSortedList()
178 public static SortedList CreateStringSortedList(int count, int start = 0) in CreateStringSortedList()
180 var sortedList = new SortedList(); in CreateStringSortedList()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web.Extensions/ui/
H A DProfileServiceManager.cs132SortedList<string, object> topLevelSettings = new SortedList<string, object>(loadedProperties.Coun… in GenerateInitializationScript()
133 SortedList<string, SortedList<string, object>> profileGroups = null; in GenerateInitializationScript()
167 SortedList<string, object> topLevelSettings, in GetSettingsProperty()
168 ref SortedList<string, SortedList<string, object>> profileGroups, in GetSettingsProperty()
177 SortedList<string, object> containingObject; in GetSettingsProperty()
189 profileGroups = new SortedList<string, SortedList<string, object>>(); in GetSettingsProperty()
190 containingObject = new SortedList<string, object>(); in GetSettingsProperty()
196 containingObject = new SortedList<string, object>(); in GetSettingsProperty()
212 …derProfileProperties(StringBuilder sb, SortedList<string, object> topLevelSettings, SortedList<str… in RenderProfileProperties()
225 foreach(KeyValuePair<string, SortedList<string, object>> group in profileGroups) { in RenderProfileProperties()
/dports/dns/libidn/libidn-1.35/csharp/generate/
H A DGenerateNFKC.cs206 SortedList canonical = new SortedList(); in Generate()
207 SortedList compatibility = new SortedList(); in Generate()
208 SortedList combiningClasses = new SortedList(); in Generate()
283 SortedList compatibilityKeys = new SortedList(); in Generate()
303 SortedList firstMap = new SortedList(); in Generate()
304 SortedList secondMap = new SortedList(); in Generate()
358 SortedList singleFirstComposition = new SortedList(); in Generate()
360 SortedList complexComposition = new SortedList(); in Generate()
408 SortedList m = new SortedList(); in Generate()
546 SortedList indices = new SortedList(); in Generate()
[all …]
/dports/math/gap/gap-4.11.0/pkg/irredsol-1.4/tst/
H A Daccess.tst7 gap> SortedList (List (all, Size));
10 gap> SortedList (List (all, Size)) ;
15 gap> SortedList (List (all, Size)) ;
23 gap> SortedList (List (all, Size)) ;
26 gap> SortedList (List (all, Size)) ;
29 gap> SortedList (List (all, Size)) ;
32 gap> SortedList (List (all, Size)) ;
35 gap> SortedList (List (all, Size)) ;
38 gap> SortedList (List (all, Size)) ;
41 gap> SortedList (List (all, Size)) ;
[all …]
/dports/math/gap/gap-4.11.0/tst/testinstall/
H A Dstabchain.tst5 > m := SortedList(List(g));
9 > if m <> SortedList(List(g)) then Print("1"); fi;
10 > if m <> SortedList(List(g, x -> x)) then Print("2"); fi;
12 > if m <> SortedList(List(g)) then Print("3"); fi;
13 > if m <> SortedList(List(g, x -> x)) then Print("3"); fi;
15 > if m <> SortedList(List(g)) then Print("5"); fi;
16 > if m <> SortedList(List(g, x -> x)) then Print("4"); fi;
/dports/audio/supercollider/SuperCollider-3.11.0-Source/HelpSource/Classes/
H A DSortedList.schelp1 CLASS::SortedList
8 Creates a SortedList with the initial capacity given by strong::size:: and a comparison strong::fun…
15 Adds an item in the SortedList at the correct position.
17 SortedList[1, 2, 5, 6].add(4).postln;
21 Adds all the items in the collection into the SortedList.
23 SortedList[1, 2, 5, 6].addAll([0, 3, 4, 7]).postln;
/dports/math/gap/gap-4.11.0/pkg/autpgrp-1.10.2/tst/
H A Dmore.tst17 gap> SortedList(A.agOrder); A.glOrder; A.size;
29 gap> SortedList(A.agOrder); A.glOrder; A.size;
41 gap> SortedList(A.agOrder); A.glOrder; A.size;
53 gap> SortedList(A.agOrder); A.glOrder; A.size;
71 gap> SortedList(A.agOrder); A.glOrder; A.size;
83 gap> SortedList(A.agOrder); A.glOrder; A.size;
95 gap> SortedList(A.agOrder); A.glOrder; A.size;
107 gap> SortedList(A.agOrder); A.glOrder; A.size;
127 gap> SortedList(A.agOrder); A.glOrder; A.size;
139 gap> SortedList(A.agOrder); A.glOrder; A.size;
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/mscorlib/system/collections/
H A Dsortedlist.cs92 public SortedList() { in SortedList() method in System.Collections.SortedList
110 public SortedList(int initialCapacity) { in SortedList() method in System.Collections.SortedList
129 public SortedList(IComparer comparer) in SortedList() method in System.Collections.SortedList
154 public SortedList(IDictionary d) in SortedList() method in System.Collections.SortedList
293 SortedList sl = new SortedList(_size); in Clone()
536 public static SortedList Synchronized(SortedList list) { in Synchronized()
559 private SortedList _list;
732 private SortedList sortedList;
826 private SortedList sortedList;
914 private SortedList sortedList;
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Collections.NonGeneric/src/System/Collections/
H A DSortedList.cs66 public class SortedList : IDictionary, ICloneable class
89 public SortedList() in SortedList() method in System.Collections.SortedList
109 public SortedList(int initialCapacity) in SortedList() method in System.Collections.SortedList
129 public SortedList(IComparer comparer) in SortedList() method in System.Collections.SortedList
156 public SortedList(IDictionary d) in SortedList() method in System.Collections.SortedList
324 SortedList sl = new SortedList(_size); in Clone()
586 public static SortedList Synchronized(SortedList list) in Synchronized()
611 private class SyncSortedList : SortedList
832 private SortedList _sortedList;
938 internal KeyList(SortedList sortedList) in KeyList()
[all …]
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/llvm/lib/ProfileData/
H A DSampleProf.cpp219 std::vector<StringRef> SortedList; in write() local
220 SortedList.insert(SortedList.begin(), Syms.begin(), Syms.end()); in write()
221 llvm::sort(SortedList); in write()
224 for (auto &Sym : SortedList) { in write()
235 std::vector<StringRef> SortedList; in dump() local
236 SortedList.insert(SortedList.begin(), Syms.begin(), Syms.end()); in dump()
237 llvm::sort(SortedList); in dump()
239 for (auto &Sym : SortedList) in dump()
/dports/devel/llvm10/llvm-10.0.1.src/lib/ProfileData/
H A DSampleProf.cpp218 std::vector<StringRef> SortedList; in write() local
219 SortedList.insert(SortedList.begin(), Syms.begin(), Syms.end()); in write()
220 llvm::sort(SortedList); in write()
223 for (auto &Sym : SortedList) { in write()
234 std::vector<StringRef> SortedList; in dump() local
235 SortedList.insert(SortedList.begin(), Syms.begin(), Syms.end()); in dump()
236 llvm::sort(SortedList); in dump()
238 for (auto &Sym : SortedList) in dump()
/dports/devel/llvm11/llvm-11.0.1.src/lib/ProfileData/
H A DSampleProf.cpp219 std::vector<StringRef> SortedList; in write() local
220 SortedList.insert(SortedList.begin(), Syms.begin(), Syms.end()); in write()
221 llvm::sort(SortedList); in write()
224 for (auto &Sym : SortedList) { in write()
235 std::vector<StringRef> SortedList; in dump() local
236 SortedList.insert(SortedList.begin(), Syms.begin(), Syms.end()); in dump()
237 llvm::sort(SortedList); in dump()
239 for (auto &Sym : SortedList) in dump()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/
H A DSampleProf.cpp218 std::vector<StringRef> SortedList; in write() local
219 SortedList.insert(SortedList.begin(), Syms.begin(), Syms.end()); in write()
220 llvm::sort(SortedList); in write()
223 for (auto &Sym : SortedList) { in write()
234 std::vector<StringRef> SortedList; in dump() local
235 SortedList.insert(SortedList.begin(), Syms.begin(), Syms.end()); in dump()
236 llvm::sort(SortedList); in dump()
238 for (auto &Sym : SortedList) in dump()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/llvm/lib/ProfileData/
H A DSampleProf.cpp218 std::vector<StringRef> SortedList; in write() local
219 SortedList.insert(SortedList.begin(), Syms.begin(), Syms.end()); in write()
220 llvm::sort(SortedList); in write()
223 for (auto &Sym : SortedList) { in write()
234 std::vector<StringRef> SortedList; in dump() local
235 SortedList.insert(SortedList.begin(), Syms.begin(), Syms.end()); in dump()
236 llvm::sort(SortedList); in dump()
238 for (auto &Sym : SortedList) in dump()
/dports/net/norm/norm-1.5r6/protolib/src/common/
H A DprotoGraph.cpp336 ProtoGraph::Vertice::SortedList::SortedList(ItemPool* itemPool) in SortedList() function in ProtoGraph::Vertice::SortedList
341 ProtoGraph::Vertice::SortedList::~SortedList() in ~SortedList()
411 void ProtoGraph::Vertice::SortedList::Empty() in Empty()
416 ProtoGraph::Vertice::SortedList::Item::Item() in Item()
420 ProtoGraph::Vertice::SortedList::Item::~Item() in ~Item()
458 ProtoGraph::Vertice::SortedList::ItemPool::ItemPool() in ItemPool()
462 ProtoGraph::Vertice::SortedList::ItemPool::~ItemPool() in ~ItemPool()
466 ProtoGraph::Vertice::SortedList::Item* ProtoGraph::Vertice::SortedList::ItemPool::GetItem() in GetItem()
488 ProtoGraph::Vertice::SortedList::Iterator::Iterator(SortedList& theList) in Iterator()
493 ProtoGraph::Vertice::SortedList::Iterator::~Iterator() in ~Iterator()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/
H A DC14NAncestralNamespaceContextManager.cs18 …private void GetNamespaceToRender(string nsPrefix, SortedList attrListToRender, SortedList nsListT… in GetNamespaceToRender()
59 … override void GetNamespacesToRender(XmlElement element, SortedList attrListToRender, SortedList n… in GetNamespacesToRender()
90 …internal override void TrackNamespaceNode(XmlAttribute attr, SortedList nsListToRender, Hashtable … in TrackNamespaceNode()
95 …al override void TrackXmlNamespaceNode(XmlAttribute attr, SortedList nsListToRender, SortedList at… in TrackXmlNamespaceNode()
H A DAncestralNamespaceContextManager.cs67 …internal abstract void TrackNamespaceNode(XmlAttribute attr, SortedList nsListToRender, Hashtable … in TrackNamespaceNode()
68 …al abstract void TrackXmlNamespaceNode(XmlAttribute attr, SortedList nsListToRender, SortedList at… in TrackXmlNamespaceNode()
69 … abstract void GetNamespacesToRender(XmlElement element, SortedList attrListToRender, SortedList n… in GetNamespacesToRender()
81 internal void LoadRenderedNamespaces(SortedList nsRenderedList) in LoadRenderedNamespaces()
/dports/math/gap/gap-4.11.0/tst/testinstall/kernel/
H A Dobject.tst13 gap> SortedList(KnownPropertiesOfObject((1,2)));
17 gap> SortedList(KnownPropertiesOfObject([]));
20 gap> SortedList(KnownTruePropertiesOfObject([]));
25 gap> SortedList(KnownPropertiesOfObject([3,2]));
27 gap> SortedList(KnownTruePropertiesOfObject([3,2]));
29 gap> SortedList(KnownAttributesOfObject(Group((1,2,3))));
/dports/net/rabbitmq/rabbitmq-server-3.9.11/deps/rabbit/src/
H A Drabbit_prelaunch_enabled_plugins_file.erl37 SortedList = lists:usort(List),
38 case SortedList of
46 ["~n - ~s" || _ <- SortedList]]),
47 SortedList,
50 Content = io_lib:format("~p.~n", [SortedList]),

12345678910>>...21