Searched refs:dwProps (Results 1 – 5 of 5) sorted by relevance
/external/pdfium/core/fxcrt/ |
D | fx_unicode.cpp | 16 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()
|
D | fx_unicode.h | 44 wchar_t FX_GetMirrorChar(wchar_t wch, uint32_t dwProps);
|
D | fx_bidi.cpp | 545 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/ |
D | cfx_txtbreak.cpp | 205 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 …]
|
D | cfx_rtfbreak.cpp | 70 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()
|