Home
last modified time | relevance | path

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

/external/pdfium/core/src/fxcrt/
Dfx_unicode.cpp26 FX_DWORD dwProps = (gs_FX_TextLayout_CodeProperties[(FX_WORD)wch] & FX_CHARTYPEBITSMASK); in FX_IsCombinationChar() local
27 return dwProps == FX_CHARTYPE_Combination; in FX_IsCombinationChar()
31 FX_DWORD dwProps = gs_FX_TextLayout_CodeProperties[(FX_WORD)wch]; in FX_IsBidiChar() local
32 FX_INT32 iBidiCls = (dwProps & FX_BIDICLASSBITSMASK) >> FX_BIDICLASSBITS; in FX_IsBidiChar()
37 FX_DWORD dwProps = gs_FX_TextLayout_CodeProperties[(FX_WORD)wch]; in FX_GetMirrorChar() local
38 FX_DWORD dwTemp = (dwProps & 0xFF800000); in FX_GetMirrorChar()
41 dwProps = gs_FX_TextLayout_CodeProperties[(FX_WORD)wch]; in FX_GetMirrorChar()
44 dwTemp = (dwProps & 0x007E0000); in FX_GetMirrorChar()
51 FX_WCHAR FX_GetMirrorChar(FX_WCHAR wch, FX_DWORD dwProps, FX_BOOL bRTL, FX_BOOL bVertical) in FX_GetMirrorChar() argument
53 FX_DWORD dwTemp = (dwProps & 0xFF800000); in FX_GetMirrorChar()
[all …]
Dfx_arabic.cpp26 FX_DWORD dwProps = gs_FX_TextLayout_CodeProperties[(FX_WORD)wch]; in AppendChar() local
27 FX_INT32 iBidiCls = (dwProps & FX_BIDICLASSBITSMASK) >> FX_BIDICLASSBITS; in AppendChar()
/external/pdfium/core/include/fxcrt/
Dfx_ucd.h100 FX_WCHAR FX_GetMirrorChar(FX_WCHAR wch, FX_DWORD dwProps, FX_BOOL bRTL, FX_BOOL bVertical);