1 instantiation of Section
System.Collections.Specialized (1)
System\Collections\Specialized\BitVector32.cs (1)
148return new Section(mask, offset);
152 references to Section
PresentationBuildTasks (27)
src\Microsoft.DotNet.Wpf\src\PresentationFramework\System\Windows\Markup\BamlRecords.cs (27)
952private static BitVector32.Section _pinnedFlagSection = BitVector32.CreateSection( 3 /* Allocates two bits to store values up to 3 */ ); 955internal static BitVector32.Section LastFlagsSection 1130internal new static BitVector32.Section LastFlagsSection 1331private static BitVector32.Section _assemblyIdLowSection 1334private static BitVector32.Section _assemblyIdHighSection 1601private static BitVector32.Section _sharedSection 1604private static BitVector32.Section _sharedSetSection 1759private static BitVector32.Section _sharedSection 1762private static BitVector32.Section _sharedSetSection 2425private static BitVector32.Section _isValueTypeExtensionSection 2428private static BitVector32.Section _isValueStaticExtensionSection 3302private static BitVector32.Section _typeIdLowSection 3305private static BitVector32.Section _typeIdHighSection 3308private static BitVector32.Section _useTypeConverter 3311private static BitVector32.Section _isInjected 3316internal new static BitVector32.Section LastFlagsSection 3666private static BitVector32.Section _isValueTypeExtensionSection 3669private static BitVector32.Section _isValueStaticExtensionSection 3673internal new static BitVector32.Section LastFlagsSection 4215private static BitVector32.Section _assemblyIdLowSection 4218private static BitVector32.Section _assemblyIdHighSection 4428private static BitVector32.Section _typeIdLowSection 4431private static BitVector32.Section _typeIdHighSection 4909private static BitVector32.Section _isInternalSection 4912private static BitVector32.Section _attributeUsageSection 5048private static BitVector32.Section _stringIdLowSection 5051private static BitVector32.Section _stringIdHighSection
PresentationFramework (39)
System\Windows\Markup\BamlRecords.cs (39)
952private static BitVector32.Section _pinnedFlagSection = BitVector32.CreateSection( 3 /* Allocates two bits to store values up to 3 */ ); 955internal static BitVector32.Section LastFlagsSection 1130internal new static BitVector32.Section LastFlagsSection 1331private static BitVector32.Section _assemblyIdLowSection 1334private static BitVector32.Section _assemblyIdHighSection 1339internal new static BitVector32.Section LastFlagsSection 1601private static BitVector32.Section _sharedSection 1604private static BitVector32.Section _sharedSetSection 1609internal new static BitVector32.Section LastFlagsSection 1759private static BitVector32.Section _sharedSection 1762private static BitVector32.Section _sharedSetSection 1767internal new static BitVector32.Section LastFlagsSection 2425private static BitVector32.Section _isValueTypeExtensionSection 2428private static BitVector32.Section _isValueStaticExtensionSection 2433internal new static BitVector32.Section LastFlagsSection 2874private static BitVector32.Section _isValueSetSection 2878private static BitVector32.Section _isValueTypeIdSection 2882private static BitVector32.Section _isRawEnumValueSetSection 2886internal new static BitVector32.Section LastFlagsSection 3302private static BitVector32.Section _typeIdLowSection 3305private static BitVector32.Section _typeIdHighSection 3308private static BitVector32.Section _useTypeConverter 3311private static BitVector32.Section _isInjected 3316internal new static BitVector32.Section LastFlagsSection 3666private static BitVector32.Section _isValueTypeExtensionSection 3669private static BitVector32.Section _isValueStaticExtensionSection 3673internal new static BitVector32.Section LastFlagsSection 4215private static BitVector32.Section _assemblyIdLowSection 4218private static BitVector32.Section _assemblyIdHighSection 4223internal new static BitVector32.Section LastFlagsSection 4428private static BitVector32.Section _typeIdLowSection 4431private static BitVector32.Section _typeIdHighSection 4436internal new static BitVector32.Section LastFlagsSection 4909private static BitVector32.Section _isInternalSection 4912private static BitVector32.Section _attributeUsageSection 4917internal new static BitVector32.Section LastFlagsSection 5048private static BitVector32.Section _stringIdLowSection 5051private static BitVector32.Section _stringIdHighSection 5056internal new static BitVector32.Section LastFlagsSection
System.Collections.Specialized (13)
System\Collections\Specialized\BitVector32.cs (13)
62public int this[Section section] 124public static Section CreateSection(short maxValue) 132public static Section CreateSection(short maxValue, Section previous) 137private static Section CreateSectionHelper(short maxValue, short priorMask, short priorOffset) 187public readonly struct Section : IEquatable<Section> 202public override bool Equals([NotNullWhen(true)] object? o) => o is Section other && Equals(other); 204public bool Equals(Section obj) 209public static bool operator ==(Section a, Section b) 214public static bool operator !=(Section a, Section b) 221public static string ToString(Section value)
System.Windows.Forms (73)
System\Windows\Forms\Controls\Labels\Label.cs (6)
31private static readonly BitVector32.Section s_stateUseMnemonic = BitVector32.CreateSection(1); 32private static readonly BitVector32.Section s_stateAutoSize = BitVector32.CreateSection(1, s_stateUseMnemonic); 33private static readonly BitVector32.Section s_stateAnimating = BitVector32.CreateSection(1, s_stateAutoSize); 34private static readonly BitVector32.Section s_stateFlatStyle = BitVector32.CreateSection((int)FlatStyle.System, s_stateAnimating); 35private static readonly BitVector32.Section s_stateBorderStyle = BitVector32.CreateSection((int)BorderStyle.Fixed3D, s_stateFlatStyle); 36private static readonly BitVector32.Section s_stateAutoEllipsis = BitVector32.CreateSection(1, s_stateBorderStyle);
System\Windows\Forms\Controls\ListView\ListViewItem.cs (5)
26private static readonly BitVector32.Section s_stateSelectedSection = BitVector32.CreateSection(1); 27private static readonly BitVector32.Section s_stateImageMaskSet = BitVector32.CreateSection(1, s_stateSelectedSection); 28private static readonly BitVector32.Section s_stateWholeRowOneStyleSection = BitVector32.CreateSection(1, s_stateImageMaskSet); 29private static readonly BitVector32.Section s_savedStateImageIndexSection = BitVector32.CreateSection(15, s_stateWholeRowOneStyleSection); 30private static readonly BitVector32.Section s_subItemCountSection = BitVector32.CreateSection(MaxSubItems, s_savedStateImageIndexSection);
System\Windows\Forms\Controls\RichTextBox\RichTextBox.cs (13)
81private static readonly BitVector32.Section s_autoWordSelectionSection = BitVector32.CreateSection(1); 82private static readonly BitVector32.Section s_showSelBarSection = BitVector32.CreateSection(1, s_autoWordSelectionSection); 83private static readonly BitVector32.Section s_autoUrlDetectSection = BitVector32.CreateSection(1, s_showSelBarSection); 84private static readonly BitVector32.Section s_fInCtorSection = BitVector32.CreateSection(1, s_autoUrlDetectSection); 85private static readonly BitVector32.Section s_protectedErrorSection = BitVector32.CreateSection(1, s_fInCtorSection); 86private static readonly BitVector32.Section s_linkcursorSection = BitVector32.CreateSection(1, s_protectedErrorSection); 87private static readonly BitVector32.Section s_allowOleDropSection = BitVector32.CreateSection(1, s_linkcursorSection); 88private static readonly BitVector32.Section s_suppressTextChangedEventSection = BitVector32.CreateSection(1, s_allowOleDropSection); 89private static readonly BitVector32.Section s_callOnContentsResizedSection = BitVector32.CreateSection(1, s_suppressTextChangedEventSection); 90private static readonly BitVector32.Section s_richTextShortcutsEnabledSection = BitVector32.CreateSection(1, s_callOnContentsResizedSection); 91private static readonly BitVector32.Section s_allowOleObjectsSection = BitVector32.CreateSection(1, s_richTextShortcutsEnabledSection); 92private static readonly BitVector32.Section s_scrollBarsSection = BitVector32.CreateSection((short)RichTextBoxScrollBars.ForcedBoth, s_allowOleObjectsSection); 93private static readonly BitVector32.Section s_enableAutoDragDropSection = BitVector32.CreateSection(1, s_scrollBarsSection);
System\Windows\Forms\Form.cs (40)
59private static readonly BitVector32.Section s_formStateAllowTransparency = BitVector32.CreateSection(1); 60private static readonly BitVector32.Section s_formStateBorderStyle = BitVector32.CreateSection(6, s_formStateAllowTransparency); 61private static readonly BitVector32.Section s_formStateTaskBar = BitVector32.CreateSection(1, s_formStateBorderStyle); 62private static readonly BitVector32.Section s_formStateControlBox = BitVector32.CreateSection(1, s_formStateTaskBar); 63private static readonly BitVector32.Section s_formStateKeyPreview = BitVector32.CreateSection(1, s_formStateControlBox); 64private static readonly BitVector32.Section s_formStateLayered = BitVector32.CreateSection(1, s_formStateKeyPreview); 65private static readonly BitVector32.Section s_formStateMaximizeBox = BitVector32.CreateSection(1, s_formStateLayered); 66private static readonly BitVector32.Section s_formStateMinimizeBox = BitVector32.CreateSection(1, s_formStateMaximizeBox); 67private static readonly BitVector32.Section s_formStateHelpButton = BitVector32.CreateSection(1, s_formStateMinimizeBox); 68private static readonly BitVector32.Section s_formStateStartPos = BitVector32.CreateSection(4, s_formStateHelpButton); 69private static readonly BitVector32.Section s_formStateWindowState = BitVector32.CreateSection(2, s_formStateStartPos); 70private static readonly BitVector32.Section s_formStateShowWindowOnCreate = BitVector32.CreateSection(1, s_formStateWindowState); 71private static readonly BitVector32.Section s_formStateAutoScaling = BitVector32.CreateSection(1, s_formStateShowWindowOnCreate); 72private static readonly BitVector32.Section s_formStateSetClientSize = BitVector32.CreateSection(1, s_formStateAutoScaling); 73private static readonly BitVector32.Section s_formStateTopMost = BitVector32.CreateSection(1, s_formStateSetClientSize); 74private static readonly BitVector32.Section s_formStateSWCalled = BitVector32.CreateSection(1, s_formStateTopMost); 75private static readonly BitVector32.Section s_formStateMdiChildMax = BitVector32.CreateSection(1, s_formStateSWCalled); 76private static readonly BitVector32.Section s_formStateRenderSizeGrip = BitVector32.CreateSection(1, s_formStateMdiChildMax); 77private static readonly BitVector32.Section s_formStateSizeGripStyle = BitVector32.CreateSection(2, s_formStateRenderSizeGrip); 78private static readonly BitVector32.Section s_formStateIsWindowActivated = BitVector32.CreateSection(1, s_formStateSizeGripStyle); 79private static readonly BitVector32.Section s_formStateIsTextEmpty = BitVector32.CreateSection(1, s_formStateIsWindowActivated); 80private static readonly BitVector32.Section s_formStateIsActive = BitVector32.CreateSection(1, s_formStateIsTextEmpty); 81private static readonly BitVector32.Section s_formStateIconSet = BitVector32.CreateSection(1, s_formStateIsActive); 84private static readonly BitVector32.Section s_formStateExCalledClosing = BitVector32.CreateSection(1); 85private static readonly BitVector32.Section s_formStateExUpdateMenuHandlesSuspendCount = BitVector32.CreateSection(8, s_formStateExCalledClosing); 86private static readonly BitVector32.Section s_formStateExUpdateMenuHandlesDeferred = BitVector32.CreateSection(1, s_formStateExUpdateMenuHandlesSuspendCount); 87private static readonly BitVector32.Section s_formStateExUseMdiChildProc = BitVector32.CreateSection(1, s_formStateExUpdateMenuHandlesDeferred); 88private static readonly BitVector32.Section s_formStateExCalledOnLoad = BitVector32.CreateSection(1, s_formStateExUseMdiChildProc); 89private static readonly BitVector32.Section s_formStateExCalledMakeVisible = BitVector32.CreateSection(1, s_formStateExCalledOnLoad); 90private static readonly BitVector32.Section s_formStateExCalledCreateControl = BitVector32.CreateSection(1, s_formStateExCalledMakeVisible); 91private static readonly BitVector32.Section s_formStateExAutoSize = BitVector32.CreateSection(1, s_formStateExCalledCreateControl); 92private static readonly BitVector32.Section s_formStateExInUpdateMdiControlStrip = BitVector32.CreateSection(1, s_formStateExAutoSize); 93private static readonly BitVector32.Section s_formStateExShowIcon = BitVector32.CreateSection(1, s_formStateExInUpdateMdiControlStrip); 94private static readonly BitVector32.Section s_formStateExMnemonicProcessed = BitVector32.CreateSection(1, s_formStateExShowIcon); 95private static readonly BitVector32.Section s_formStateExInScale = BitVector32.CreateSection(1, s_formStateExMnemonicProcessed); 96private static readonly BitVector32.Section s_formStateExInModalSizingLoop = BitVector32.CreateSection(1, s_formStateExInScale); 97private static readonly BitVector32.Section s_formStateExSettingAutoScale = BitVector32.CreateSection(1, s_formStateExInModalSizingLoop); 98private static readonly BitVector32.Section s_formStateExWindowBoundsWidthIsClientSize = BitVector32.CreateSection(1, s_formStateExSettingAutoScale); 99private static readonly BitVector32.Section s_formStateExWindowBoundsHeightIsClientSize = BitVector32.CreateSection(1, s_formStateExWindowBoundsWidthIsClientSize); 100private static readonly BitVector32.Section s_formStateExWindowClosing = BitVector32.CreateSection(1, s_formStateExWindowBoundsHeightIsClientSize);
System\Windows\Forms\Layout\CommonProperties.cs (9)
39private static readonly BitVector32.Section s_dockAndAnchorNeedsLayoutSection = BitVector32.CreateSection(0x7F); 40private static readonly BitVector32.Section s_dockAndAnchorSection = BitVector32.CreateSection(0x0F); 41private static readonly BitVector32.Section s_dockModeSection = BitVector32.CreateSection(0x01, s_dockAndAnchorSection); 42private static readonly BitVector32.Section s_autoSizeSection = BitVector32.CreateSection(0x01, s_dockModeSection); 43private static readonly BitVector32.Section s_boxStretchInternalSection = BitVector32.CreateSection(0x03, s_autoSizeSection); 44private static readonly BitVector32.Section s_anchorNeverShrinksSection = BitVector32.CreateSection(0x01, s_boxStretchInternalSection); 45private static readonly BitVector32.Section s_flowBreakSection = BitVector32.CreateSection(0x01, s_anchorNeverShrinksSection); 46private static readonly BitVector32.Section s_selfAutoSizingSection = BitVector32.CreateSection(0x01, s_flowBreakSection); 47private static readonly BitVector32.Section s_autoSizeModeSection = BitVector32.CreateSection(0x01, s_selfAutoSizingSection);