Home
last modified time | relevance | path

Searched refs:dwCode (Results 1 – 7 of 7) sorted by relevance

/external/pdfium/xfa/fgas/crt/
Dfgas_codepage.cpp403 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/
Dcfwl_scrollbar.cpp100 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()
Dcfwl_scrollbar.h90 bool OnScroll(CFWL_EventScroll::Code dwCode, FX_FLOAT fPos);
96 bool DoScroll(CFWL_EventScroll::Code dwCode, FX_FLOAT fPos);
Dcfwl_listbox.h117 CFWL_EventScroll::Code dwCode,
Dcfwl_edit.h156 CFWL_EventScroll::Code dwCode,
Dcfwl_listbox.cpp840 CFWL_EventScroll::Code dwCode, in OnScroll() argument
846 switch (dwCode) { in OnScroll()
Dcfwl_edit.cpp1486 CFWL_EventScroll::Code dwCode, in OnScroll() argument
1492 switch (dwCode) { in OnScroll()