4 writes to flags
System.Windows.Forms (4)
winforms\Managed\System\WinForms\ListView.cs (4)
3173
lvFindInfo.
flags
= NativeMethods.LVFI_STRING;
3174
lvFindInfo.
flags
|= (isPrefixSearch ? NativeMethods.LVFI_PARTIAL : 0);
3177
lvFindInfo.
flags
= NativeMethods.LVFI_NEARESTXY;
3281
info.
flags
= NativeMethods.LVFI_PARAM;
6 references to flags
System.Windows.Forms (6)
winforms\Managed\System\WinForms\ListView.cs (6)
6171
if ((nmlvif.lvfi.
flags
& NativeMethods.LVFI_PARAM) != 0) {
6176
bool isTextSearch = ((nmlvif.lvfi.
flags
& NativeMethods.LVFI_STRING) != 0) ||
6177
((nmlvif.lvfi.
flags
& NativeMethods.LVFI_PARTIAL) != 0);
6179
bool isPrefixSearch = (nmlvif.lvfi.
flags
& NativeMethods.LVFI_PARTIAL) != 0;
6187
if ((nmlvif.lvfi.
flags
& NativeMethods.LVFI_NEARESTXY) != 0) {
6192
if ((nmlvif.lvfi.
flags
& NativeMethods.LVFI_NEARESTXY) != 0) {