Searched refs:dwCode (Results 1 – 7 of 7) sorted by relevance
/external/pdfium/xfa/fgas/crt/ |
D | fgas_codepage.cpp | 403 uint32_t dwCode = 0; in FX_UTF8Decode() local 427 dwCode |= (byte & 0x3f) << (iPending * 6); in FX_UTF8Decode() 432 *pDst++ = dwCode; in FX_UTF8Decode() 441 dwCode = (byte & 0x1f) << 6; in FX_UTF8Decode() 445 dwCode = (byte & 0x0f) << 12; in FX_UTF8Decode() 449 dwCode = (byte & 0x07) << 18; in FX_UTF8Decode() 453 dwCode = (byte & 0x03) << 24; in FX_UTF8Decode() 457 dwCode = (byte & 0x01) << 30; in FX_UTF8Decode()
|
/external/pdfium/xfa/fwl/ |
D | cfwl_scrollbar.cpp | 100 bool CFWL_ScrollBar::DoScroll(CFWL_EventScroll::Code dwCode, FX_FLOAT fPos) { in DoScroll() argument 101 if (dwCode == CFWL_EventScroll::Code::None) in DoScroll() 103 return OnScroll(dwCode, fPos); in DoScroll() 312 CFWL_EventScroll::Code dwCode = m_iMouseWheel < 0 in SendEvent() local 315 DoScroll(dwCode, m_fTrackPos); in SendEvent() 320 bool CFWL_ScrollBar::OnScroll(CFWL_EventScroll::Code dwCode, FX_FLOAT fPos) { in OnScroll() argument 322 ev.m_iScrollCode = dwCode; in OnScroll()
|
D | cfwl_scrollbar.h | 90 bool OnScroll(CFWL_EventScroll::Code dwCode, FX_FLOAT fPos); 96 bool DoScroll(CFWL_EventScroll::Code dwCode, FX_FLOAT fPos);
|
D | cfwl_listbox.h | 117 CFWL_EventScroll::Code dwCode,
|
D | cfwl_edit.h | 156 CFWL_EventScroll::Code dwCode,
|
D | cfwl_listbox.cpp | 840 CFWL_EventScroll::Code dwCode, in OnScroll() argument 846 switch (dwCode) { in OnScroll()
|
D | cfwl_edit.cpp | 1486 CFWL_EventScroll::Code dwCode, in OnScroll() argument 1492 switch (dwCode) { in OnScroll()
|