Home
last modified time | relevance | path

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

/external/pdfium/core/fxcrt/
Dfx_unicode.cpp24 uint32_t dwProps = FX_GetUnicodeProperties(wch); in FX_GetMirrorChar() local
25 uint32_t dwTemp = (dwProps & 0xFF800000); in FX_GetMirrorChar()
30 dwProps = FX_GetUnicodeProperties(wch); in FX_GetMirrorChar()
34 dwTemp = (dwProps & 0x007E0000); in FX_GetMirrorChar()
46 uint32_t dwProps, in FX_GetMirrorChar() argument
49 uint32_t dwTemp = (dwProps & 0xFF800000); in FX_GetMirrorChar()
54 dwProps = FX_GetUnicodeProperties(wch); in FX_GetMirrorChar()
58 dwTemp = (dwProps & 0x007E0000); in FX_GetMirrorChar()
Dfx_bidi.cpp16 uint32_t dwProps = FX_GetUnicodeProperties(wch); in AppendChar() local
17 int32_t iBidiCls = (dwProps & FX_BIDICLASSBITSMASK) >> FX_BIDICLASSBITS; in AppendChar()
Dfx_ucd.h117 uint32_t dwProps,
/external/pdfium/xfa/fgas/layout/
Dfgas_textbreak.cpp306 uint32_t dwProps) { in AppendChar_PageLoad() argument
312 int32_t iBidiCls = (dwProps & FX_BIDICLASSBITSMASK) >> FX_BIDICLASSBITS; in AppendChar_PageLoad()
504 uint32_t dwProps = pCurChar->m_dwCharProps; in AppendChar_Others() local
522 wForm = FX_GetMirrorChar(wch, dwProps, m_bCurRTL, m_bVertical); in AppendChar_Others()
549 uint32_t dwProps = kTextLayoutCodeProperties[static_cast<uint16_t>(wch)]; in AppendChar() local
550 FX_CHARTYPE chartype = GetCharTypeFromProp(dwProps); in AppendChar()
556 pCurChar->m_dwCharProps = dwProps; in AppendChar()
567 AppendChar_PageLoad(pCurChar, dwProps); in AppendChar()
581 if (m_bVertical && (dwProps & 0x8000) != 0) in AppendChar()
1213 uint32_t dwProps = FX_GetUnicodeProperties(wch); in GetDisplayPos() local
[all …]
Dfgas_rtfbreak.cpp231 uint32_t dwProps = kTextLayoutCodeProperties[static_cast<uint16_t>(wch)]; in AppendChar() local
232 FX_CHARTYPE chartype = GetCharTypeFromProp(dwProps); in AppendChar()
238 pCurChar->m_dwCharProps = dwProps; in AppendChar()
895 uint32_t dwProps; in GetDisplayPos() local
906 dwProps = FX_GetUnicodeProperties(wch); in GetDisplayPos()
907 dwCharType = (dwProps & FX_CHARTYPEBITSMASK); in GetDisplayPos()
933 wForm = FX_GetMirrorChar(wch, dwProps, bRTLPiece, false); in GetDisplayPos()
935 dwProps = FX_GetUnicodeProperties(wForm); in GetDisplayPos()
Dfgas_textbreak.h239 void AppendChar_PageLoad(CFX_TxtChar* pCurChar, uint32_t dwProps);