Home
last modified time | relevance | path

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

/external/pdfium/core/fxcrt/
Dcfx_seekablestreamproxy.cpp40 uint32_t dwCode = 0; in UTF8Decode() local
55 dwCode = dwCode << 6; in UTF8Decode()
56 dwCode |= (byte & 0x3f); in UTF8Decode()
60 *pDst++ = dwCode; in UTF8Decode()
64 dwCode = (byte & 0x1f); in UTF8Decode()
67 dwCode = (byte & 0x0f); in UTF8Decode()
70 dwCode = (byte & 0x07); in UTF8Decode()
73 dwCode = (byte & 0x03); in UTF8Decode()
76 dwCode = (byte & 0x01); in UTF8Decode()
/external/pdfium/xfa/fwl/
Dcfwl_scrollbar.cpp76 bool CFWL_ScrollBar::DoScroll(CFWL_EventScroll::Code dwCode, float fPos) { in DoScroll() argument
77 if (dwCode == CFWL_EventScroll::Code::None) in DoScroll()
79 return OnScroll(dwCode, fPos); in DoScroll()
287 CFWL_EventScroll::Code dwCode = m_iMouseWheel < 0 in SendEvent() local
290 DoScroll(dwCode, m_fTrackPos); in SendEvent()
295 bool CFWL_ScrollBar::OnScroll(CFWL_EventScroll::Code dwCode, float fPos) { in OnScroll() argument
297 ev.m_iScrollCode = dwCode; in OnScroll()
Dcfwl_scrollbar.h86 bool OnScroll(CFWL_EventScroll::Code dwCode, float fPos);
92 bool DoScroll(CFWL_EventScroll::Code dwCode, float fPos);
Dcfwl_listbox.h117 CFWL_EventScroll::Code dwCode,
Dcfwl_edit.h149 CFWL_EventScroll::Code dwCode,
Dcfwl_listbox.cpp830 CFWL_EventScroll::Code dwCode, in OnScroll() argument
836 switch (dwCode) { in OnScroll()
Dcfwl_edit.cpp1279 CFWL_EventScroll::Code dwCode, in OnScroll() argument
1285 switch (dwCode) { in OnScroll()
/external/python/cpython3/Tools/msi/bundle/bootstrap/
DPythonBootstrapperApplication.cpp1023 __in DWORD dwCode, in OnError() argument
1034 HRESULT hr = _engine->SendEmbeddedError(dwCode, wzError, dwUIHint, &nResult); in OnError()
1044 BalRetryErrorOccurred(wzPackageId, dwCode); in OnError()
1049 HRESULT hr = StrAllocFromError(&sczError, dwCode, nullptr); in OnError()
1051 StrAllocFormatted(&sczError, L"0x%x", dwCode); in OnError()
1059 SetProgressState(HRESULT_FROM_WIN32(dwCode)); in OnError()
1062 BalRetryErrorOccurred(wzPackageId, dwCode); in OnError()