92 references to Tuple
dotnet-svcutil-lib (2)
FrameworkFork\Microsoft.Xml\Xml\Core\XsdValidatingReaderAsync.cs (2)
768tuple = new Tuple<XmlSchemaType, string, object>(xmlType, originalString, typedValue); 816tuple = new Tuple<XmlSchemaType, string, object>(xmlType, originalString, typedValue);
Microsoft.AspNetCore.Owin (1)
WebSockets\WebSocketAdapter.cs (1)
86return new WebSocketReceiveTuple(
Microsoft.Build.Engine.UnitTests (49)
FileMatcher_Tests.cs (49)
525new Tuple<string, string, bool>("a", "a", true), 526new Tuple<string, string, bool>("a", "", false), 527new Tuple<string, string, bool>("", "a", false), 530new Tuple<string, string, bool>("šđčćž", "šđčćž", true), 533new Tuple<string, string, bool>("abc", "*bc", true), 534new Tuple<string, string, bool>("abc", "a*c", true), 535new Tuple<string, string, bool>("abc", "ab*", true), 536new Tuple<string, string, bool>("ab", "*ab", true), 537new Tuple<string, string, bool>("ab", "a*b", true), 538new Tuple<string, string, bool>("ab", "ab*", true), 539new Tuple<string, string, bool>("aba", "ab*ba", false), 540new Tuple<string, string, bool>("", "*", true), 543new Tuple<string, string, bool>("abc", "?bc", true), 544new Tuple<string, string, bool>("abc", "a?c", true), 545new Tuple<string, string, bool>("abc", "ab?", true), 546new Tuple<string, string, bool>("ab", "?ab", false), 547new Tuple<string, string, bool>("ab", "a?b", false), 548new Tuple<string, string, bool>("ab", "ab?", false), 549new Tuple<string, string, bool>("", "?", false), 552new Tuple<string, string, bool>("a", "*?", true), 553new Tuple<string, string, bool>("a", "?*", true), 554new Tuple<string, string, bool>("ab", "*?", true), 555new Tuple<string, string, bool>("ab", "?*", true), 556new Tuple<string, string, bool>("abc", "*?", true), 557new Tuple<string, string, bool>("abc", "?*", true), 560new Tuple<string, string, bool>("a", "??", false), 561new Tuple<string, string, bool>("ab", "?*?", true), 562new Tuple<string, string, bool>("ab", "*?*?*", true), 563new Tuple<string, string, bool>("abc", "?**?*?", true), 564new Tuple<string, string, bool>("abc", "?**?*c?", false), 565new Tuple<string, string, bool>("abcd", "?b*??", true), 566new Tuple<string, string, bool>("abcd", "?a*??", false), 567new Tuple<string, string, bool>("abcd", "?**?c?", true), 568new Tuple<string, string, bool>("abcd", "?**?d?", false), 569new Tuple<string, string, bool>("abcde", "?*b*?*d*?", true), 572new Tuple<string, string, bool>("?", "?", true), 573new Tuple<string, string, bool>("?a", "?a", true), 574new Tuple<string, string, bool>("a?", "a?", true), 575new Tuple<string, string, bool>("a?b", "a?", false), 576new Tuple<string, string, bool>("a?ab", "a?aab", false), 577new Tuple<string, string, bool>("aa?bbbc?d", "aa?bbc?dd", false), 580new Tuple<string, string, bool>("*", "*", true), 581new Tuple<string, string, bool>("*a", "*a", true), 582new Tuple<string, string, bool>("a*", "a*", true), 583new Tuple<string, string, bool>("a*b", "a*", true), 584new Tuple<string, string, bool>("a*ab", "a*aab", false), 585new Tuple<string, string, bool>("a*abab", "a*b", true), 586new Tuple<string, string, bool>("aa*bbbc*d", "aa*bbc*dd", false), 587new Tuple<string, string, bool>("aa*bbbc*d", "a*bbc*d", true)
Microsoft.CodeAnalysis (1)
StrongName\StrongNameKeys.cs (1)
159cachedKeyPair = new Tuple<ImmutableArray<byte>, ImmutableArray<byte>, RSAParameters?>(keyPair, publicKey, privateKey);
Microsoft.CodeAnalysis.UnitTests (33)
Collections\ImmutableSetTest.cs (33)
298new SetTriad(SetWith<int>(), Array.Empty<int>(), true), 299new SetTriad(SetWith<int>(5), new int[] { 5 }, true), 300new SetTriad(SetWith<int>(5), new int[] { 5, 5 }, true), 301new SetTriad(SetWith<int>(5, 8), new int[] { 5, 5 }, false), 302new SetTriad(SetWith<int>(5, 8), new int[] { 5, 7 }, false), 303new SetTriad(SetWith<int>(5, 8), new int[] { 5, 8 }, true), 304new SetTriad(SetWith<int>(5), Array.Empty<int>(), false), 305new SetTriad(SetWith<int>(), new int[] { 5 }, false), 306new SetTriad(SetWith<int>(5, 8), new int[] { 5 }, false), 307new SetTriad(SetWith<int>(5), new int[] { 5, 8 }, false), 308new SetTriad(SetWith<int>(5, 8), SetWith<int>(5, 8), true), 316new SetTriad(Array.Empty<int>(), Array.Empty<int>(), false), 317new SetTriad(new int[] { 1 }, Array.Empty<int>(), false), 318new SetTriad(new int[] { 1 }, new int[] { 2 }, false), 319new SetTriad(new int[] { 1 }, new int[] { 2, 3 }, false), 320new SetTriad(new int[] { 1 }, new int[] { 1, 2 }, true), 321new SetTriad(Array.Empty<int>(), new int[] { 1 }, true), 329new SetTriad(Array.Empty<int>(), Array.Empty<int>(), true), 330new SetTriad(new int[] { 1 }, new int[] { 1 }, true), 331new SetTriad(new int[] { 1, 2 }, new int[] { 1, 2 }, true), 332new SetTriad(new int[] { 1 }, Array.Empty<int>(), false), 333new SetTriad(new int[] { 1 }, new int[] { 2 }, false), 334new SetTriad(new int[] { 1 }, new int[] { 2, 3 }, false), 347new SetTriad(Array.Empty<int>(), Array.Empty<int>(), false), 348new SetTriad(Array.Empty<int>(), new int[] { 1 }, false), 349new SetTriad(new int[] { 1 }, new int[] { 2 }, false), 350new SetTriad(new int[] { 1 }, new int[] { 2, 3 }, false), 351new SetTriad(new int[] { 1, 2 }, new int[] { 3 }, false), 352new SetTriad(new int[] { 1 }, new int[] { 1, 2 }, true), 353new SetTriad(new int[] { 1, 2 }, new int[] { 1 }, true), 354new SetTriad(new int[] { 1 }, new int[] { 1 }, true), 355new SetTriad(new int[] { 1, 2 }, new int[] { 2, 3, 4 }, true), 384return new Tuple<IEnumerable<T>, IEnumerable<T>, bool>(scenario.Item2, scenario.Item1, scenario.Item3);
Microsoft.Maui.Controls (1)
MessagingCenter.cs (1)
33 public Sender(string message, Type senderType, Type argType) : base(message, senderType, argType)
Microsoft.ML.TimeSeries (1)
RootCauseAnalyzer.cs (1)
125return new Tuple<PointTree, PointTree, Dictionary<Dictionary<string, Object>, TimeSeriesPoint>>(pointTree, anomalyTree, dimPointMapping);
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Tuple.cs (1)
36return new Tuple<T1, T2, T3>(item1, item2, item3);
System.Xaml (1)
System\Xaml\Schema\ReferenceEqualityComparer.cs (1)
31: base(item1, item2, item3)
xunit.assert (2)
CollectionAsserts.cs (2)
84 errors.Add(new Tuple<int, string, Exception>(idx, ArgumentFormatter.Format(item), ex)); 138 errors.Add(new Tuple<int, string, Exception>(idx, ArgumentFormatter.Format(item), ex));