1 instantiation of Section
System (1)
compmod\system\collections\specialized\bitvector32.cs (1)
164return new Section(CreateMaskFromHighValue(maxValue), offset);
155 references to Section
PresentationBuildTasks (27)
Framework\System\Windows\Markup\BamlRecords.cs (27)
966private static BitVector32.Section _pinnedFlagSection = BitVector32.CreateSection( 3 /* Allocates two bits to store values up to 3 */ ); 969internal static BitVector32.Section LastFlagsSection 1149internal new static BitVector32.Section LastFlagsSection 1364private static BitVector32.Section _assemblyIdLowSection 1367private static BitVector32.Section _assemblyIdHighSection 1643private static BitVector32.Section _sharedSection 1646private static BitVector32.Section _sharedSetSection 1807private static BitVector32.Section _sharedSection 1810private static BitVector32.Section _sharedSetSection 2516private static BitVector32.Section _isValueTypeExtensionSection 2519private static BitVector32.Section _isValueStaticExtensionSection 3490private static BitVector32.Section _typeIdLowSection 3493private static BitVector32.Section _typeIdHighSection 3496private static BitVector32.Section _useTypeConverter 3499private static BitVector32.Section _isInjected 3504internal new static BitVector32.Section LastFlagsSection 3864private static BitVector32.Section _isValueTypeExtensionSection 3867private static BitVector32.Section _isValueStaticExtensionSection 3871internal new static BitVector32.Section LastFlagsSection 4456private static BitVector32.Section _assemblyIdLowSection 4459private static BitVector32.Section _assemblyIdHighSection 4676private static BitVector32.Section _typeIdLowSection 4679private static BitVector32.Section _typeIdHighSection 5166private static BitVector32.Section _isInternalSection 5169private static BitVector32.Section _attributeUsageSection 5311private static BitVector32.Section _stringIdLowSection 5314private static BitVector32.Section _stringIdHighSection
PresentationFramework (39)
src\Framework\System\Windows\Markup\BamlRecords.cs (39)
966private static BitVector32.Section _pinnedFlagSection = BitVector32.CreateSection( 3 /* Allocates two bits to store values up to 3 */ ); 969internal static BitVector32.Section LastFlagsSection 1149internal new static BitVector32.Section LastFlagsSection 1364private static BitVector32.Section _assemblyIdLowSection 1367private static BitVector32.Section _assemblyIdHighSection 1372internal new static BitVector32.Section LastFlagsSection 1643private static BitVector32.Section _sharedSection 1646private static BitVector32.Section _sharedSetSection 1651internal new static BitVector32.Section LastFlagsSection 1807private static BitVector32.Section _sharedSection 1810private static BitVector32.Section _sharedSetSection 1815internal new static BitVector32.Section LastFlagsSection 2516private static BitVector32.Section _isValueTypeExtensionSection 2519private static BitVector32.Section _isValueStaticExtensionSection 2524internal new static BitVector32.Section LastFlagsSection 2974private static BitVector32.Section _isValueSetSection 2978private static BitVector32.Section _isValueTypeIdSection 2982private static BitVector32.Section _isRawEnumValueSetSection 2986internal new static BitVector32.Section LastFlagsSection 3490private static BitVector32.Section _typeIdLowSection 3493private static BitVector32.Section _typeIdHighSection 3496private static BitVector32.Section _useTypeConverter 3499private static BitVector32.Section _isInjected 3504internal new static BitVector32.Section LastFlagsSection 3864private static BitVector32.Section _isValueTypeExtensionSection 3867private static BitVector32.Section _isValueStaticExtensionSection 3871internal new static BitVector32.Section LastFlagsSection 4456private static BitVector32.Section _assemblyIdLowSection 4459private static BitVector32.Section _assemblyIdHighSection 4464internal new static BitVector32.Section LastFlagsSection 4676private static BitVector32.Section _typeIdLowSection 4679private static BitVector32.Section _typeIdHighSection 4684internal new static BitVector32.Section LastFlagsSection 5166private static BitVector32.Section _isInternalSection 5169private static BitVector32.Section _attributeUsageSection 5174internal new static BitVector32.Section LastFlagsSection 5311private static BitVector32.Section _stringIdLowSection 5314private static BitVector32.Section _stringIdHighSection 5319internal new static BitVector32.Section LastFlagsSection
System (14)
compmod\system\collections\specialized\bitvector32.cs (14)
56public int this[Section section] { 140public static Section CreateSection(short maxValue) { 147public static Section CreateSection(short maxValue, Section previous) { 151private static Section CreateSectionHelper(short maxValue, short priorMask, short priorOffset) { 230if (o is Section) 231return Equals((Section)o); 236public bool Equals(Section obj) 241public static bool operator ==(Section a, Section b) 246public static bool operator !=(Section a, Section b) 257public static string ToString(Section value) { 264return Section.ToString(this);
System.Windows.Forms (75)
winforms\Managed\System\WinForms\Form.cs (42)
82private static readonly BitVector32.Section FormStateAllowTransparency = BitVector32.CreateSection(1); 83private static readonly BitVector32.Section FormStateBorderStyle = BitVector32.CreateSection(6, FormStateAllowTransparency); 84private static readonly BitVector32.Section FormStateTaskBar = BitVector32.CreateSection(1, FormStateBorderStyle); 85private static readonly BitVector32.Section FormStateControlBox = BitVector32.CreateSection(1, FormStateTaskBar); 86private static readonly BitVector32.Section FormStateKeyPreview = BitVector32.CreateSection(1, FormStateControlBox); 87private static readonly BitVector32.Section FormStateLayered = BitVector32.CreateSection(1, FormStateKeyPreview); 88private static readonly BitVector32.Section FormStateMaximizeBox = BitVector32.CreateSection(1, FormStateLayered); 89private static readonly BitVector32.Section FormStateMinimizeBox = BitVector32.CreateSection(1, FormStateMaximizeBox); 90private static readonly BitVector32.Section FormStateHelpButton = BitVector32.CreateSection(1, FormStateMinimizeBox); 91private static readonly BitVector32.Section FormStateStartPos = BitVector32.CreateSection(4, FormStateHelpButton); 92private static readonly BitVector32.Section FormStateWindowState = BitVector32.CreateSection(2, FormStateStartPos); 93private static readonly BitVector32.Section FormStateShowWindowOnCreate = BitVector32.CreateSection(1, FormStateWindowState); 94private static readonly BitVector32.Section FormStateAutoScaling = BitVector32.CreateSection(1, FormStateShowWindowOnCreate); 95private static readonly BitVector32.Section FormStateSetClientSize = BitVector32.CreateSection(1, FormStateAutoScaling); 96private static readonly BitVector32.Section FormStateTopMost = BitVector32.CreateSection(1, FormStateSetClientSize); 97private static readonly BitVector32.Section FormStateSWCalled = BitVector32.CreateSection(1, FormStateTopMost); 98private static readonly BitVector32.Section FormStateMdiChildMax = BitVector32.CreateSection(1, FormStateSWCalled); 99private static readonly BitVector32.Section FormStateRenderSizeGrip = BitVector32.CreateSection(1, FormStateMdiChildMax); 100private static readonly BitVector32.Section FormStateSizeGripStyle = BitVector32.CreateSection(2, FormStateRenderSizeGrip); 101private static readonly BitVector32.Section FormStateIsRestrictedWindow = BitVector32.CreateSection(1, FormStateSizeGripStyle); 102private static readonly BitVector32.Section FormStateIsRestrictedWindowChecked = BitVector32.CreateSection(1, FormStateIsRestrictedWindow); 103private static readonly BitVector32.Section FormStateIsWindowActivated = BitVector32.CreateSection(1, FormStateIsRestrictedWindowChecked); 104private static readonly BitVector32.Section FormStateIsTextEmpty = BitVector32.CreateSection(1, FormStateIsWindowActivated); 105private static readonly BitVector32.Section FormStateIsActive = BitVector32.CreateSection(1, FormStateIsTextEmpty); 106private static readonly BitVector32.Section FormStateIconSet = BitVector32.CreateSection(1, FormStateIsActive); 115private static readonly BitVector32.Section FormStateExCalledClosing = BitVector32.CreateSection(1); 116private static readonly BitVector32.Section FormStateExUpdateMenuHandlesSuspendCount = BitVector32.CreateSection(8, FormStateExCalledClosing); 117private static readonly BitVector32.Section FormStateExUpdateMenuHandlesDeferred = BitVector32.CreateSection(1, FormStateExUpdateMenuHandlesSuspendCount); 118private static readonly BitVector32.Section FormStateExUseMdiChildProc = BitVector32.CreateSection(1, FormStateExUpdateMenuHandlesDeferred); 119private static readonly BitVector32.Section FormStateExCalledOnLoad = BitVector32.CreateSection(1, FormStateExUseMdiChildProc); 120private static readonly BitVector32.Section FormStateExCalledMakeVisible = BitVector32.CreateSection(1, FormStateExCalledOnLoad); 121private static readonly BitVector32.Section FormStateExCalledCreateControl = BitVector32.CreateSection(1, FormStateExCalledMakeVisible); 122private static readonly BitVector32.Section FormStateExAutoSize = BitVector32.CreateSection(1, FormStateExCalledCreateControl); 123private static readonly BitVector32.Section FormStateExInUpdateMdiControlStrip = BitVector32.CreateSection(1, FormStateExAutoSize); 124private static readonly BitVector32.Section FormStateExShowIcon = BitVector32.CreateSection(1, FormStateExInUpdateMdiControlStrip); 125private static readonly BitVector32.Section FormStateExMnemonicProcessed = BitVector32.CreateSection(1, FormStateExShowIcon); 126private static readonly BitVector32.Section FormStateExInScale = BitVector32.CreateSection(1, FormStateExMnemonicProcessed); 127private static readonly BitVector32.Section FormStateExInModalSizingLoop = BitVector32.CreateSection(1, FormStateExInScale); 128private static readonly BitVector32.Section FormStateExSettingAutoScale = BitVector32.CreateSection(1, FormStateExInModalSizingLoop); 129private static readonly BitVector32.Section FormStateExWindowBoundsWidthIsClientSize = BitVector32.CreateSection(1, FormStateExSettingAutoScale); 130private static readonly BitVector32.Section FormStateExWindowBoundsHeightIsClientSize = BitVector32.CreateSection(1, FormStateExWindowBoundsWidthIsClientSize); 131private static readonly BitVector32.Section FormStateExWindowClosing = BitVector32.CreateSection(1, FormStateExWindowBoundsHeightIsClientSize);
winforms\Managed\System\WinForms\Label.cs (6)
50private static readonly BitVector32.Section StateUseMnemonic = BitVector32.CreateSection(1); 51private static readonly BitVector32.Section StateAutoSize = BitVector32.CreateSection(1, StateUseMnemonic); 52private static readonly BitVector32.Section StateAnimating = BitVector32.CreateSection(1, StateAutoSize); 53private static readonly BitVector32.Section StateFlatStyle = BitVector32.CreateSection((int)FlatStyle.System, StateAnimating); 54private static readonly BitVector32.Section StateBorderStyle = BitVector32.CreateSection((int)BorderStyle.Fixed3D, StateFlatStyle); 55private static readonly BitVector32.Section StateAutoEllipsis = BitVector32.CreateSection(1, StateBorderStyle);
winforms\Managed\System\WinForms\Layout\CommonProperties.cs (9)
56private static readonly BitVector32.Section _dockAndAnchorNeedsLayoutSection = BitVector32.CreateSection(0x7F); 57private static readonly BitVector32.Section _dockAndAnchorSection = BitVector32.CreateSection(0x0F); 58private static readonly BitVector32.Section _dockModeSection = BitVector32.CreateSection(0x01, _dockAndAnchorSection); 59private static readonly BitVector32.Section _autoSizeSection = BitVector32.CreateSection(0x01, _dockModeSection); 60private static readonly BitVector32.Section _BoxStretchInternalSection = BitVector32.CreateSection(0x03, _autoSizeSection); 61private static readonly BitVector32.Section _anchorNeverShrinksSection = BitVector32.CreateSection(0x01, _BoxStretchInternalSection); 62private static readonly BitVector32.Section _flowBreakSection = BitVector32.CreateSection(0x01, _anchorNeverShrinksSection); 63private static readonly BitVector32.Section _selfAutoSizingSection = BitVector32.CreateSection(0x01, _flowBreakSection); 64private static readonly BitVector32.Section _autoSizeModeSection = BitVector32.CreateSection(0x01, _selfAutoSizingSection);
winforms\Managed\System\WinForms\ListViewItem.cs (5)
49private static readonly BitVector32.Section StateSelectedSection = BitVector32.CreateSection(1); 50private static readonly BitVector32.Section StateImageMaskSet = BitVector32.CreateSection(1, StateSelectedSection); 51private static readonly BitVector32.Section StateWholeRowOneStyleSection = BitVector32.CreateSection(1, StateImageMaskSet); 52private static readonly BitVector32.Section SavedStateImageIndexSection = BitVector32.CreateSection(15, StateWholeRowOneStyleSection); 53private static readonly BitVector32.Section SubItemCountSection = BitVector32.CreateSection(MAX_SUBITEMS, SavedStateImageIndexSection);
winforms\Managed\System\WinForms\RichTextBox.cs (13)
126private static readonly BitVector32.Section autoWordSelectionSection = BitVector32.CreateSection(1); 127private static readonly BitVector32.Section showSelBarSection = BitVector32.CreateSection(1, autoWordSelectionSection); 128private static readonly BitVector32.Section autoUrlDetectSection = BitVector32.CreateSection(1, showSelBarSection); 129private static readonly BitVector32.Section fInCtorSection = BitVector32.CreateSection(1, autoUrlDetectSection); 130private static readonly BitVector32.Section protectedErrorSection = BitVector32.CreateSection(1, fInCtorSection); 131private static readonly BitVector32.Section linkcursorSection = BitVector32.CreateSection(1, protectedErrorSection); 132private static readonly BitVector32.Section allowOleDropSection = BitVector32.CreateSection(1, linkcursorSection); 133private static readonly BitVector32.Section suppressTextChangedEventSection = BitVector32.CreateSection(1, allowOleDropSection); 134private static readonly BitVector32.Section callOnContentsResizedSection = BitVector32.CreateSection(1, suppressTextChangedEventSection); 135private static readonly BitVector32.Section richTextShortcutsEnabledSection = BitVector32.CreateSection(1, callOnContentsResizedSection); 136private static readonly BitVector32.Section allowOleObjectsSection = BitVector32.CreateSection(1, richTextShortcutsEnabledSection); 137private static readonly BitVector32.Section scrollBarsSection = BitVector32.CreateSection((short) RichTextBoxScrollBars.ForcedBoth, allowOleObjectsSection); 138private static readonly BitVector32.Section enableAutoDragDropSection = BitVector32.CreateSection(1, scrollBarsSection);