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