12 references to cDims
System.Private.Windows.Core (9)
Windows\Win32\System\Com\SAFEARRAY.cs (5)
19return new ReadOnlySpan<SAFEARRAYBOUND>(b, cDims)[dimension]; 80ReadOnlySpan<SAFEARRAYBOUND> bounds = new(b, cDims); 82int boundIndex = cDims - 1; 85for (ushort dim = 1; dim < cDims; dim++) 93cell += (uint)(c1 - bounds[cDims - 1].lLbound);
Windows\Win32\System\Variant\VARIANT.cs (4)
669if (psa->cDims == 1 && psa->GetBounds().lLbound == 0) 675int[] lengths = new int[psa->cDims]; 676int[] bounds = new int[psa->cDims]; 680for (int i = psa->cDims - 1; i >= 0; i--)
System.Windows.Forms.Primitives.Tests (3)
Interop\Oleaut32\SAFEARRAYTests.cs (3)
65Assert.Equal(1u, psa->cDims); 101Assert.Equal(1u, psa->cDims); 190Assert.Equal(2u, psa->cDims);