Home
last modified time | relevance | path

Searched refs:pCurChar (Results 1 – 4 of 4) sorted by relevance

/external/pdfium/xfa/fgas/layout/
Dcfx_rtfbreak.cpp74 CFX_Char* pCurChar = &m_pCurLine->m_LineChars.back(); in AppendChar() local
75 pCurChar->m_iFontSize = m_iFontSize; in AppendChar()
76 pCurChar->m_dwIdentity = m_dwIdentity; in AppendChar()
77 pCurChar->m_pUserData = m_pUserData; in AppendChar()
88 pCurChar = &m_pCurLine->m_LineChars[iCount - 1]; in AppendChar()
94 AppendChar_Tab(pCurChar); in AppendChar()
97 dwRet2 = AppendChar_Control(pCurChar); in AppendChar()
100 AppendChar_Combination(pCurChar); in AppendChar()
108 dwRet2 = AppendChar_Arabic(pCurChar); in AppendChar()
115 dwRet2 = AppendChar_Others(pCurChar); in AppendChar()
[all …]
Dcfx_rtfbreak.h69 void AppendChar_Combination(CFX_Char* pCurChar);
70 void AppendChar_Tab(CFX_Char* pCurChar);
71 CFX_BreakType AppendChar_Control(CFX_Char* pCurChar);
72 CFX_BreakType AppendChar_Arabic(CFX_Char* pCurChar);
73 CFX_BreakType AppendChar_Others(CFX_Char* pCurChar);
Dcfx_txtbreak.h74 void AppendChar_Combination(CFX_Char* pCurChar);
75 void AppendChar_Tab(CFX_Char* pCurChar);
76 CFX_BreakType AppendChar_Control(CFX_Char* pCurChar);
77 CFX_BreakType AppendChar_Arabic(CFX_Char* pCurChar);
78 CFX_BreakType AppendChar_Others(CFX_Char* pCurChar);
Dcfx_txtbreak.cpp50 void CFX_TxtBreak::AppendChar_Combination(CFX_Char* pCurChar) { in AppendChar_Combination() argument
51 wchar_t wch = pCurChar->char_code(); in AppendChar_Combination()
54 pCurChar->m_iCharWidth = -1; in AppendChar_Combination()
78 pCurChar->m_dwCharStyles |= FX_TXTCHARSTYLE_ArabicShadda; in AppendChar_Combination()
87 pCurChar->m_iCharWidth = -iCharWidth; in AppendChar_Combination()
90 void CFX_TxtBreak::AppendChar_Tab(CFX_Char* pCurChar) { in AppendChar_Tab() argument
94 CFX_BreakType CFX_TxtBreak::AppendChar_Control(CFX_Char* pCurChar) { in AppendChar_Control() argument
98 wchar_t wch = pCurChar->char_code(); in AppendChar_Control()
121 CFX_BreakType CFX_TxtBreak::AppendChar_Arabic(CFX_Char* pCurChar) { in AppendChar_Arabic() argument
122 FX_CHARTYPE chartype = pCurChar->GetCharType(); in AppendChar_Arabic()
[all …]