Home
last modified time | relevance | path

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

/external/pdfium/fpdfsdk/pwl/
Dcpwl_list_impl.cpp229 void CPWL_ListCtrl::OnVK(int32_t nItemIndex, bool bShift, bool bCtrl) { in OnVK() function in CPWL_ListCtrl
255 OnVK(IsMultipleSel() ? GetCaret() - 1 : GetSelect() - 1, bShift, bCtrl); in OnVK_UP()
259 OnVK(IsMultipleSel() ? GetCaret() + 1 : GetSelect() + 1, bShift, bCtrl); in OnVK_DOWN()
263 OnVK(0, bShift, bCtrl); in OnVK_LEFT()
267 OnVK(GetCount() - 1, bShift, bCtrl); in OnVK_RIGHT()
271 OnVK(0, bShift, bCtrl); in OnVK_HOME()
275 OnVK(GetCount() - 1, bShift, bCtrl); in OnVK_END()
283 OnVK(nFindIndex, bShift, bCtrl); in OnChar()
Dcpwl_list_impl.h133 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.cpp794 OnVK(pItem, bShift, bCtrl); in OnKeyDown()
802 void CFWL_ListBox::OnVK(CFWL_ListItem* pItem, bool bShift, bool bCtrl) { in OnVK() function in CFWL_ListBox