12 references to cDims
System.Private.Windows.Core (9)
Windows\Win32\System\Com\SAFEARRAY.cs (5)
20return new ReadOnlySpan<SAFEARRAYBOUND>(b, cDims)[dimension]; 81ReadOnlySpan<SAFEARRAYBOUND> bounds = new(b, cDims); 83int boundIndex = cDims - 1; 86for (ushort dim = 1; dim < cDims; dim++) 94cell += (uint)(c1 - bounds[cDims - 1].lLbound);
Windows\Win32\System\Variant\VARIANT.cs (4)
671if (psa->cDims == 1 && psa->GetBounds().lLbound == 0) 677int[] lengths = new int[psa->cDims]; 678int[] bounds = new int[psa->cDims]; 682for (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);