Home
last modified time | relevance | path

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

/external/pdfium/fpdfsdk/pwl/
Dcpwl_list_impl.cpp231 void CPWL_ListCtrl::OnVK(int32_t nItemIndex, bool bShift, bool bCtrl) { in OnVK() function in CPWL_ListCtrl
257 OnVK(IsMultipleSel() ? GetCaret() - 1 : GetSelect() - 1, bShift, bCtrl); in OnVK_UP()
261 OnVK(IsMultipleSel() ? GetCaret() + 1 : GetSelect() + 1, bShift, bCtrl); in OnVK_DOWN()
265 OnVK(0, bShift, bCtrl); in OnVK_LEFT()
269 OnVK(GetCount() - 1, bShift, bCtrl); in OnVK_RIGHT()
273 OnVK(0, bShift, bCtrl); in OnVK_HOME()
277 OnVK(GetCount() - 1, bShift, bCtrl); in OnVK_END()
285 OnVK(nFindIndex, bShift, bCtrl); in OnChar()
Dcpwl_list_impl.h132 void OnVK(int32_t nItemIndex, bool bShift, bool bCtrl);
/external/pdfium/xfa/fwl/
Dcfwl_listbox.h115 void OnVK(CFWL_ListItem* hItem, bool bShift, bool bCtrl);
Dcfwl_listbox.cpp800 OnVK(pItem, bShift, bCtrl); in OnKeyDown()
808 void CFWL_ListBox::OnVK(CFWL_ListItem* pItem, bool bShift, bool bCtrl) { in OnVK() function in CFWL_ListBox