Home
last modified time | relevance | path

Searched refs:nb_items (Results 1 – 4 of 4) sorted by relevance

/reactos/win32ss/user/user32/controls/
H A Dlistbox.c722 nb_items -= (nb_items % LB_ARRAY_GRANULARITY); in LISTBOX_InitStorage()
852 max = descr->nb_items; in LISTBOX_FindStringPos()
896 max = descr->nb_items; in LISTBOX_FindFileStrPos()
1410 if (last == -1 || last >= descr->nb_items) last = descr->nb_items - 1; in LISTBOX_SelectItemRange()
1567 descr->nb_items++; in LISTBOX_InsertItem()
1594 if (descr->nb_items == 1) in LISTBOX_InsertItem()
1660 if (!descr->nb_items) in LISTBOX_DeleteItem()
1700 descr->nb_items--; in LISTBOX_RemoveItem()
2273 if (index >= descr->nb_items) index = descr->nb_items - 1; in LISTBOX_HandleTimer()
2397 if (caret >= descr->nb_items) caret = descr->nb_items - 1; in LISTBOX_HandleKeyDown()
[all …]
/reactos/dll/win32/comctl32/
H A Dlistbox.c625 if (index >= descr->nb_items) in LISTBOX_PaintItem()
801 UINT new_size = descr->nb_items + nb_items; in LISTBOX_InitStorage()
953 max = descr->nb_items; in LISTBOX_FindFileStrPos()
1514 if (last == -1 || last >= descr->nb_items) last = descr->nb_items - 1; in LISTBOX_SelectItemRange()
1642 descr->nb_items++; in LISTBOX_InsertItem()
1673 if (descr->nb_items == 1) in LISTBOX_InsertItem()
1771 descr->nb_items--; in LISTBOX_RemoveItem()
1839 descr->nb_items = count; in LISTBOX_SetCount()
2340 if (index >= descr->nb_items) index = descr->nb_items - 1; in LISTBOX_HandleTimer()
2463 if (caret >= descr->nb_items) caret = descr->nb_items - 1; in LISTBOX_HandleKeyDown()
[all …]
H A Dcomboex.c277 index = infoPtr->nb_items - 1; in COMBOEX_GetIndex()
457 i = infoPtr->nb_items - 1; in COMBOEX_FindItem()
522 return infoPtr->nb_items; in COMBOEX_DeleteItem()
600 if (index == -1) index = infoPtr->nb_items; in COMBOEX_InsertItemW()
601 if (index > infoPtr->nb_items) return -1; in COMBOEX_InsertItemW()
607 if (index == infoPtr->nb_items) { in COMBOEX_InsertItemW()
613 INT i = infoPtr->nb_items-1; in COMBOEX_InsertItemW()
657 infoPtr->nb_items++; in COMBOEX_InsertItemW()
1223 i = infoPtr->nb_items - 1; in COMBOEX_WM_DeleteItem()
1244 infoPtr->nb_items--; in COMBOEX_WM_DeleteItem()
[all …]
/reactos/win32ss/user/ntuser/
H A Dwindow.c3561 INT nb_items; /* Number of items */ member