92 references to Tuple
dotnet-svcutil-lib (2)
FrameworkFork\Microsoft.Xml\Xml\Core\XsdValidatingReaderAsync.cs (2)
768
tuple = new
Tuple
<XmlSchemaType, string, object>(xmlType, originalString, typedValue);
816
tuple = new
Tuple
<XmlSchemaType, string, object>(xmlType, originalString, typedValue);
Microsoft.AspNetCore.Owin (1)
WebSockets\WebSocketAdapter.cs (1)
86
return new
WebSocketReceiveTuple
(
Microsoft.Build.Engine.UnitTests (49)
FileMatcher_Tests.cs (49)
525
new
Tuple
<string, string, bool>("a", "a", true),
526
new
Tuple
<string, string, bool>("a", "", false),
527
new
Tuple
<string, string, bool>("", "a", false),
530
new
Tuple
<string, string, bool>("šđčćž", "šđčćž", true),
533
new
Tuple
<string, string, bool>("abc", "*bc", true),
534
new
Tuple
<string, string, bool>("abc", "a*c", true),
535
new
Tuple
<string, string, bool>("abc", "ab*", true),
536
new
Tuple
<string, string, bool>("ab", "*ab", true),
537
new
Tuple
<string, string, bool>("ab", "a*b", true),
538
new
Tuple
<string, string, bool>("ab", "ab*", true),
539
new
Tuple
<string, string, bool>("aba", "ab*ba", false),
540
new
Tuple
<string, string, bool>("", "*", true),
543
new
Tuple
<string, string, bool>("abc", "?bc", true),
544
new
Tuple
<string, string, bool>("abc", "a?c", true),
545
new
Tuple
<string, string, bool>("abc", "ab?", true),
546
new
Tuple
<string, string, bool>("ab", "?ab", false),
547
new
Tuple
<string, string, bool>("ab", "a?b", false),
548
new
Tuple
<string, string, bool>("ab", "ab?", false),
549
new
Tuple
<string, string, bool>("", "?", false),
552
new
Tuple
<string, string, bool>("a", "*?", true),
553
new
Tuple
<string, string, bool>("a", "?*", true),
554
new
Tuple
<string, string, bool>("ab", "*?", true),
555
new
Tuple
<string, string, bool>("ab", "?*", true),
556
new
Tuple
<string, string, bool>("abc", "*?", true),
557
new
Tuple
<string, string, bool>("abc", "?*", true),
560
new
Tuple
<string, string, bool>("a", "??", false),
561
new
Tuple
<string, string, bool>("ab", "?*?", true),
562
new
Tuple
<string, string, bool>("ab", "*?*?*", true),
563
new
Tuple
<string, string, bool>("abc", "?**?*?", true),
564
new
Tuple
<string, string, bool>("abc", "?**?*c?", false),
565
new
Tuple
<string, string, bool>("abcd", "?b*??", true),
566
new
Tuple
<string, string, bool>("abcd", "?a*??", false),
567
new
Tuple
<string, string, bool>("abcd", "?**?c?", true),
568
new
Tuple
<string, string, bool>("abcd", "?**?d?", false),
569
new
Tuple
<string, string, bool>("abcde", "?*b*?*d*?", true),
572
new
Tuple
<string, string, bool>("?", "?", true),
573
new
Tuple
<string, string, bool>("?a", "?a", true),
574
new
Tuple
<string, string, bool>("a?", "a?", true),
575
new
Tuple
<string, string, bool>("a?b", "a?", false),
576
new
Tuple
<string, string, bool>("a?ab", "a?aab", false),
577
new
Tuple
<string, string, bool>("aa?bbbc?d", "aa?bbc?dd", false),
580
new
Tuple
<string, string, bool>("*", "*", true),
581
new
Tuple
<string, string, bool>("*a", "*a", true),
582
new
Tuple
<string, string, bool>("a*", "a*", true),
583
new
Tuple
<string, string, bool>("a*b", "a*", true),
584
new
Tuple
<string, string, bool>("a*ab", "a*aab", false),
585
new
Tuple
<string, string, bool>("a*abab", "a*b", true),
586
new
Tuple
<string, string, bool>("aa*bbbc*d", "aa*bbc*dd", false),
587
new
Tuple
<string, string, bool>("aa*bbbc*d", "a*bbc*d", true)
Microsoft.CodeAnalysis (1)
StrongName\StrongNameKeys.cs (1)
159
cachedKeyPair = new
Tuple
<ImmutableArray<byte>, ImmutableArray<byte>, RSAParameters?>(keyPair, publicKey, privateKey);
Microsoft.CodeAnalysis.UnitTests (33)
Collections\ImmutableSetTest.cs (33)
298
new
SetTriad
(SetWith<int>(), Array.Empty<int>(), true),
299
new
SetTriad
(SetWith<int>(5), new int[] { 5 }, true),
300
new
SetTriad
(SetWith<int>(5), new int[] { 5, 5 }, true),
301
new
SetTriad
(SetWith<int>(5, 8), new int[] { 5, 5 }, false),
302
new
SetTriad
(SetWith<int>(5, 8), new int[] { 5, 7 }, false),
303
new
SetTriad
(SetWith<int>(5, 8), new int[] { 5, 8 }, true),
304
new
SetTriad
(SetWith<int>(5), Array.Empty<int>(), false),
305
new
SetTriad
(SetWith<int>(), new int[] { 5 }, false),
306
new
SetTriad
(SetWith<int>(5, 8), new int[] { 5 }, false),
307
new
SetTriad
(SetWith<int>(5), new int[] { 5, 8 }, false),
308
new
SetTriad
(SetWith<int>(5, 8), SetWith<int>(5, 8), true),
316
new
SetTriad
(Array.Empty<int>(), Array.Empty<int>(), false),
317
new
SetTriad
(new int[] { 1 }, Array.Empty<int>(), false),
318
new
SetTriad
(new int[] { 1 }, new int[] { 2 }, false),
319
new
SetTriad
(new int[] { 1 }, new int[] { 2, 3 }, false),
320
new
SetTriad
(new int[] { 1 }, new int[] { 1, 2 }, true),
321
new
SetTriad
(Array.Empty<int>(), new int[] { 1 }, true),
329
new
SetTriad
(Array.Empty<int>(), Array.Empty<int>(), true),
330
new
SetTriad
(new int[] { 1 }, new int[] { 1 }, true),
331
new
SetTriad
(new int[] { 1, 2 }, new int[] { 1, 2 }, true),
332
new
SetTriad
(new int[] { 1 }, Array.Empty<int>(), false),
333
new
SetTriad
(new int[] { 1 }, new int[] { 2 }, false),
334
new
SetTriad
(new int[] { 1 }, new int[] { 2, 3 }, false),
347
new
SetTriad
(Array.Empty<int>(), Array.Empty<int>(), false),
348
new
SetTriad
(Array.Empty<int>(), new int[] { 1 }, false),
349
new
SetTriad
(new int[] { 1 }, new int[] { 2 }, false),
350
new
SetTriad
(new int[] { 1 }, new int[] { 2, 3 }, false),
351
new
SetTriad
(new int[] { 1, 2 }, new int[] { 3 }, false),
352
new
SetTriad
(new int[] { 1 }, new int[] { 1, 2 }, true),
353
new
SetTriad
(new int[] { 1, 2 }, new int[] { 1 }, true),
354
new
SetTriad
(new int[] { 1 }, new int[] { 1 }, true),
355
new
SetTriad
(new int[] { 1, 2 }, new int[] { 2, 3, 4 }, true),
384
return 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)
125
return 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)
36
return 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));