133 references to CreateMask
PresentationFramework (2)
src\Framework\MS\Internal\Controls\ActiveXHelper.cs (2)
57
public static readonly int inTransition = BitVector32.
CreateMask
(sinkAttached);
58
public static readonly int processingKeyUp = BitVector32.
CreateMask
(inTransition);
System (16)
compmod\system\collections\specialized\bitvector32.cs (1)
99
return
CreateMask
(0);
compmod\system\componentmodel\MaskedTextProvider.cs (6)
123
static int ALLOW_PROMPT_AS_INPUT = BitVector32.
CreateMask
(ASCII_ONLY);
124
static int INCLUDE_PROMPT = BitVector32.
CreateMask
(ALLOW_PROMPT_AS_INPUT);
125
static int INCLUDE_LITERALS = BitVector32.
CreateMask
(INCLUDE_PROMPT);
126
static int RESET_ON_PROMPT = BitVector32.
CreateMask
(INCLUDE_LITERALS);
127
static int RESET_ON_LITERALS = BitVector32.
CreateMask
(RESET_ON_PROMPT);
128
static int SKIP_SPACE = BitVector32.
CreateMask
(RESET_ON_LITERALS);
compmod\system\componentmodel\ReflectPropertyDescriptor.cs (9)
70
private static readonly int BitGetQueried = BitVector32.
CreateMask
(BitDefaultValueQueried);
71
private static readonly int BitSetQueried = BitVector32.
CreateMask
(BitGetQueried);
72
private static readonly int BitShouldSerializeQueried = BitVector32.
CreateMask
(BitSetQueried);
73
private static readonly int BitResetQueried = BitVector32.
CreateMask
(BitShouldSerializeQueried);
74
private static readonly int BitChangedQueried = BitVector32.
CreateMask
(BitResetQueried);
75
private static readonly int BitIPropChangedQueried = BitVector32.
CreateMask
(BitChangedQueried);
76
private static readonly int BitReadOnlyChecked = BitVector32.
CreateMask
(BitIPropChangedQueried);
77
private static readonly int BitAmbientValueQueried = BitVector32.
CreateMask
(BitReadOnlyChecked);
78
private static readonly int BitSetOnDemand = BitVector32.
CreateMask
(BitAmbientValueQueried);
System.Windows.Forms (115)
winforms\Managed\System\WinForms\ArrangedElement.cs (2)
27
private static readonly int stateDisposing = BitVector32.
CreateMask
(stateVisible);
28
private static readonly int stateLocked = BitVector32.
CreateMask
(stateDisposing);
winforms\Managed\System\WinForms\AxHost.cs (23)
148
private static readonly int editorRefresh = BitVector32.
CreateMask
(ocxStateSet);
149
private static readonly int listeningToIdle = BitVector32.
CreateMask
(editorRefresh);
150
private static readonly int refreshProperties = BitVector32.
CreateMask
(listeningToIdle);
152
private static readonly int checkedIppb = BitVector32.
CreateMask
(refreshProperties);
153
private static readonly int checkedCP = BitVector32.
CreateMask
(checkedIppb);
154
private static readonly int fNeedOwnWindow = BitVector32.
CreateMask
(checkedCP);
155
private static readonly int fOwnWindow = BitVector32.
CreateMask
(fNeedOwnWindow);
157
private static readonly int fSimpleFrame = BitVector32.
CreateMask
(fOwnWindow);
158
private static readonly int fFakingWindow = BitVector32.
CreateMask
(fSimpleFrame);
159
private static readonly int rejectSelection = BitVector32.
CreateMask
(fFakingWindow);
160
private static readonly int ownDisposing = BitVector32.
CreateMask
(rejectSelection);
162
private static readonly int sinkAttached = BitVector32.
CreateMask
(ownDisposing);
163
private static readonly int disposed = BitVector32.
CreateMask
(sinkAttached);
164
private static readonly int manualUpdate = BitVector32.
CreateMask
(disposed);
165
private static readonly int addedSelectionHandler = BitVector32.
CreateMask
(manualUpdate);
167
private static readonly int valueChanged = BitVector32.
CreateMask
(addedSelectionHandler);
168
private static readonly int handlePosRectChanged = BitVector32.
CreateMask
(valueChanged);
169
private static readonly int siteProcessedInputKey = BitVector32.
CreateMask
(handlePosRectChanged);
170
private static readonly int needLicenseKey = BitVector32.
CreateMask
(siteProcessedInputKey);
172
private static readonly int inTransition = BitVector32.
CreateMask
(needLicenseKey);
173
private static readonly int processingKeyUp = BitVector32.
CreateMask
(inTransition);
174
private static readonly int assignUniqueID = BitVector32.
CreateMask
(processingKeyUp);
175
private static readonly int renameEventHooked = BitVector32.
CreateMask
(assignUniqueID);
winforms\Managed\System\WinForms\ButtonInternal\ButtonBaseAdapter.cs (1)
960
private static readonly int combineImageText = BitVector32.
CreateMask
(combineCheck);
winforms\Managed\System\WinForms\ContainerControl.cs (4)
49
private static readonly int stateValidating = BitVector32.
CreateMask
(stateScalingNeededOnLayout); // Indicates whether we're currently state[stateValidating].
50
private static readonly int stateProcessingMnemonic = BitVector32.
CreateMask
(stateValidating); // Indicates whether we or one of our children is currently processing a mnemonic.
51
private static readonly int stateScalingChild = BitVector32.
CreateMask
(stateProcessingMnemonic); // True while we are scaling a child control
52
private static readonly int stateParentChanged = BitVector32.
CreateMask
(stateScalingChild); // Flagged when a parent changes so we can adpat our scaling logic to match
winforms\Managed\System\WinForms\Control.cs (10)
16255
private static readonly int viewAdvisePrimeFirst = BitVector32.
CreateMask
(viewAdviseOnlyOnce);
16256
private static readonly int eventsFrozen = BitVector32.
CreateMask
(viewAdvisePrimeFirst);
16257
private static readonly int changingExtents = BitVector32.
CreateMask
(eventsFrozen);
16258
private static readonly int saving = BitVector32.
CreateMask
(changingExtents);
16259
private static readonly int isDirty = BitVector32.
CreateMask
(saving);
16260
private static readonly int inPlaceActive = BitVector32.
CreateMask
(isDirty);
16261
private static readonly int inPlaceVisible = BitVector32.
CreateMask
(inPlaceActive);
16262
private static readonly int uiActive = BitVector32.
CreateMask
(inPlaceVisible);
16263
private static readonly int uiDead = BitVector32.
CreateMask
(uiActive);
16264
private static readonly int adjustingRect = BitVector32.
CreateMask
(uiDead);
winforms\Managed\System\WinForms\Layout\TableLayout.cs (3)
1466
private static readonly int stateChildInfoValid = BitVector32.
CreateMask
(stateValid);
1467
private static readonly int stateChildHasColumnSpan = BitVector32.
CreateMask
(stateChildInfoValid);
1468
private static readonly int stateChildHasRowSpan = BitVector32.
CreateMask
(stateChildHasColumnSpan);
winforms\Managed\System\WinForms\MaskedTextBox.cs (11)
79
private static int IME_COMPLETING = BitVector32.
CreateMask
(IME_ENDING_COMPOSITION);
82
private static int HANDLE_KEY_PRESS = BitVector32.
CreateMask
(IME_COMPLETING);
88
private static int IS_NULL_MASK = BitVector32.
CreateMask
(HANDLE_KEY_PRESS);
93
private static int QUERY_BASE_TEXT = BitVector32.
CreateMask
(IS_NULL_MASK);
99
private static int REJECT_INPUT_ON_FIRST_FAILURE = BitVector32.
CreateMask
( QUERY_BASE_TEXT );
102
private static int HIDE_PROMPT_ON_LEAVE = BitVector32.
CreateMask
(REJECT_INPUT_ON_FIRST_FAILURE);
103
private static int BEEP_ON_ERROR = BitVector32.
CreateMask
(HIDE_PROMPT_ON_LEAVE);
104
private static int USE_SYSTEM_PASSWORD_CHAR = BitVector32.
CreateMask
(BEEP_ON_ERROR);
105
private static int INSERT_TOGGLED = BitVector32.
CreateMask
(USE_SYSTEM_PASSWORD_CHAR);
106
private static int CUTCOPYINCLUDEPROMPT = BitVector32.
CreateMask
(INSERT_TOGGLED);
107
private static int CUTCOPYINCLUDELITERALS = BitVector32.
CreateMask
(CUTCOPYINCLUDEPROMPT);
winforms\Managed\System\WinForms\StatusStrip.cs (1)
35
private static readonly int stateCalledSpringTableLayout = BitVector32.
CreateMask
(stateSizingGrip);
winforms\Managed\System\WinForms\TextBoxBase.cs (11)
52
private static readonly int hideSelection = BitVector32.
CreateMask
(autoSize);
53
private static readonly int multiline = BitVector32.
CreateMask
(hideSelection);
54
private static readonly int modified = BitVector32.
CreateMask
(multiline);
55
private static readonly int readOnly = BitVector32.
CreateMask
(modified);
56
private static readonly int acceptsTab = BitVector32.
CreateMask
(readOnly);
57
private static readonly int wordWrap = BitVector32.
CreateMask
(acceptsTab);
58
private static readonly int creatingHandle = BitVector32.
CreateMask
(wordWrap);
59
private static readonly int codeUpdateText = BitVector32.
CreateMask
(creatingHandle);
60
private static readonly int shortcutsEnabled = BitVector32.
CreateMask
(codeUpdateText);
61
private static readonly int scrollToCaretOnHandleCreated = BitVector32.
CreateMask
(shortcutsEnabled);
62
private static readonly int setSelectionOnHandleCreated = BitVector32.
CreateMask
(scrollToCaretOnHandleCreated);
winforms\Managed\System\WinForms\ToolStripDropDown.cs (5)
73
private static readonly int stateAllowTransparency = BitVector32.
CreateMask
(stateLayered);
74
private static readonly int stateIsRestrictedWindow = BitVector32.
CreateMask
(stateAllowTransparency);
75
private static readonly int stateIsRestrictedWindowChecked = BitVector32.
CreateMask
(stateIsRestrictedWindow);
76
private static readonly int stateNotWorkingAreaConstrained = BitVector32.
CreateMask
(stateIsRestrictedWindowChecked);
77
private static readonly int stateInSetVisibleCore = BitVector32.
CreateMask
(stateNotWorkingAreaConstrained);
winforms\Managed\System\WinForms\ToolStripDropDownMenu.cs (2)
56
private static readonly int stateShowCheckMargin = BitVector32.
CreateMask
(stateShowImageMargin);
57
private static readonly int stateMaxItemSizeValid = BitVector32.
CreateMask
(stateShowCheckMargin);
winforms\Managed\System\WinForms\ToolStripHighContrastRenderer.cs (2)
24
private static readonly int optionsDottedGrip = BitVector32.
CreateMask
(optionsDottedBorder);
25
private static readonly int optionsFillWhenSelected = BitVector32.
CreateMask
(optionsDottedGrip);
winforms\Managed\System\WinForms\ToolStripItem.cs (20)
154
private static readonly int stateVisible = BitVector32.
CreateMask
(stateAllowDrop);
155
private static readonly int stateEnabled = BitVector32.
CreateMask
(stateVisible);
156
private static readonly int stateMouseDownAndNoDrag = BitVector32.
CreateMask
(stateEnabled);
157
private static readonly int stateAutoSize = BitVector32.
CreateMask
(stateMouseDownAndNoDrag);
158
private static readonly int statePressed = BitVector32.
CreateMask
(stateAutoSize);
159
private static readonly int stateSelected = BitVector32.
CreateMask
(statePressed);
160
private static readonly int stateContstructing = BitVector32.
CreateMask
(stateSelected);
161
private static readonly int stateDisposed = BitVector32.
CreateMask
(stateContstructing);
162
private static readonly int stateCurrentlyAnimatingImage = BitVector32.
CreateMask
(stateDisposed);
163
private static readonly int stateDoubleClickEnabled = BitVector32.
CreateMask
(stateCurrentlyAnimatingImage);
164
private static readonly int stateAutoToolTip = BitVector32.
CreateMask
(stateDoubleClickEnabled);
165
private static readonly int stateSupportsRightClick = BitVector32.
CreateMask
(stateAutoToolTip);
166
private static readonly int stateSupportsItemClick = BitVector32.
CreateMask
(stateSupportsRightClick);
167
private static readonly int stateRightToLeftAutoMirrorImage = BitVector32.
CreateMask
(stateSupportsItemClick);
168
private static readonly int stateInvalidMirroredImage = BitVector32.
CreateMask
(stateRightToLeftAutoMirrorImage);
169
private static readonly int stateSupportsSpaceKey = BitVector32.
CreateMask
(stateInvalidMirroredImage);
170
private static readonly int stateMouseDownAndUpMustBeInSameItem = BitVector32.
CreateMask
(stateSupportsSpaceKey);
171
private static readonly int stateSupportsDisabledHotTracking = BitVector32.
CreateMask
(stateMouseDownAndUpMustBeInSameItem);
172
private static readonly int stateUseAmbientMargin = BitVector32.
CreateMask
(stateSupportsDisabledHotTracking);
173
private static readonly int stateDisposing = BitVector32.
CreateMask
(stateUseAmbientMargin);
winforms\Managed\System\WinForms\ToolStripPanel.cs (6)
62
private static readonly int stateBeginInit = BitVector32.
CreateMask
(stateLocked);
63
private static readonly int stateChangingZOrder = BitVector32.
CreateMask
(stateBeginInit);
64
private static readonly int stateInJoin = BitVector32.
CreateMask
(stateChangingZOrder);
65
private static readonly int stateEndInit = BitVector32.
CreateMask
(stateInJoin);
66
private static readonly int stateLayoutSuspended = BitVector32.
CreateMask
(stateEndInit);
67
private static readonly int stateRightToLeftChanged = BitVector32.
CreateMask
(stateLayoutSuspended);
winforms\Managed\System\WinForms\ToolStripPanelRow.cs (5)
34
private static readonly int stateDisposing = BitVector32.
CreateMask
(stateVisible);
35
private static readonly int stateLocked = BitVector32.
CreateMask
(stateDisposing);
36
private static readonly int stateInitialized = BitVector32.
CreateMask
(stateLocked);
37
private static readonly int stateCachedBoundsMode = BitVector32.
CreateMask
(stateInitialized);
38
private static readonly int stateInLayout = BitVector32.
CreateMask
(stateCachedBoundsMode);
winforms\Managed\System\WinForms\ToolStripRendererSwitcher.cs (1)
20
private static readonly int stateAttachedRendererChanged = BitVector32.
CreateMask
(stateUseDefaultRenderer);
winforms\Managed\System\WinForms\WebBrowserHelper.cs (8)
75
internal static readonly int manualUpdate = BitVector32.
CreateMask
(sinkAttached);
76
internal static readonly int setClientSiteFirst = BitVector32.
CreateMask
(manualUpdate);
77
internal static readonly int addedSelectionHandler = BitVector32.
CreateMask
(setClientSiteFirst);
78
internal static readonly int siteProcessedInputKey = BitVector32.
CreateMask
(addedSelectionHandler);
79
internal static readonly int inTransition = BitVector32.
CreateMask
(siteProcessedInputKey);
80
internal static readonly int processingKeyUp = BitVector32.
CreateMask
(inTransition);
81
internal static readonly int isMaskEdit = BitVector32.
CreateMask
(processingKeyUp);
82
internal static readonly int recomputeContainingControl = BitVector32.
CreateMask
(isMaskEdit);