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