Home
last modified time | relevance | path

Searched refs:dwProps (Results 1 – 5 of 5) sorted by relevance

/external/pdfium/core/fxcrt/
Dfx_unicode.cpp16 wchar_t GetMirrorChar(wchar_t wch, uint32_t dwProps) { in GetMirrorChar() argument
17 uint32_t dwTemp = (dwProps & kMirrorMask); in GetMirrorChar()
38 wchar_t FX_GetMirrorChar(wchar_t wch, uint32_t dwProps) { in FX_GetMirrorChar() argument
39 return GetMirrorChar(wch, dwProps); in FX_GetMirrorChar()
Dfx_unicode.h44 wchar_t FX_GetMirrorChar(wchar_t wch, uint32_t dwProps);
Dfx_bidi.cpp545 uint32_t dwProps = FX_GetUnicodeProperties(wch); in AppendChar() local
546 int32_t iBidiCls = (dwProps & FX_BIDICLASSBITSMASK) >> FX_BIDICLASSBITS; in AppendChar()
/external/pdfium/xfa/fgas/layout/
Dcfx_txtbreak.cpp205 uint32_t dwProps = FX_GetUnicodeProperties(wch); in AppendChar() local
206 FX_CHARTYPE chartype = GetCharTypeFromProp(dwProps); in AppendChar()
207 m_pCurLine->m_LineChars.emplace_back(wch, dwProps, m_iHorizontalScale, in AppendChar()
699 uint32_t dwProps = FX_GetUnicodeProperties(wch); in GetDisplayPos() local
700 FX_CHARTYPE chartype = GetCharTypeFromProp(dwProps); in GetDisplayPos()
713 dwProps = FX_GetUnicodeProperties(wNext); in GetDisplayPos()
714 if ((dwProps & FX_CHARTYPEBITSMASK) != FX_CHARTYPE_Combination) in GetDisplayPos()
729 dwProps = FX_GetUnicodeProperties(wNext); in GetDisplayPos()
730 } while ((dwProps & FX_CHARTYPEBITSMASK) == FX_CHARTYPE_Combination); in GetDisplayPos()
778 wForm = FX_GetMirrorChar(wch, dwProps); in GetDisplayPos()
[all …]
Dcfx_rtfbreak.cpp70 uint32_t dwProps = FX_GetUnicodeProperties(wch); in AppendChar() local
71 FX_CHARTYPE chartype = GetCharTypeFromProp(dwProps); in AppendChar()
72 m_pCurLine->m_LineChars.emplace_back(wch, dwProps, m_iHorizontalScale, in AppendChar()
697 uint32_t dwProps = FX_GetUnicodeProperties(wch); in GetDisplayPos() local
698 uint32_t dwCharType = (dwProps & FX_CHARTYPEBITSMASK); in GetDisplayPos()
724 wForm = FX_GetMirrorChar(wch, dwProps); in GetDisplayPos()
726 dwProps = FX_GetUnicodeProperties(wForm); in GetDisplayPos()