Home
last modified time | relevance | path

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

/external/pdfium/xfa/fgas/layout/
Dcfx_txtbreak.cpp59 CFX_Char* pLastChar = GetLastChar(0, false, false); in AppendChar_Combination() local
60 if (pLastChar && in AppendChar_Combination()
61 (pLastChar->m_dwCharStyles & FX_TXTCHARSTYLE_ArabicShadda) == 0) { in AppendChar_Combination()
64 wchar_t wLast = pLastChar->char_code(); in AppendChar_Combination()
70 if (pLastChar->char_code() == 0x0651) { in AppendChar_Combination()
76 pLastChar->m_dwCharStyles |= FX_TXTCHARSTYLE_ArabicShadda; in AppendChar_Combination()
77 pLastChar->m_iCharWidth = 0; in AppendChar_Combination()
126 CFX_Char* pLastChar = nullptr; in AppendChar_Arabic() local
130 pLastChar = GetLastChar(1, true, false); in AppendChar_Arabic()
131 if (pLastChar) { in AppendChar_Arabic()
[all …]
Dcfx_rtfbreak.cpp130 CFX_Char* pLastChar = GetLastChar(0, false, true); in AppendChar_Combination() local
131 if (pLastChar && pLastChar->GetCharType() > FX_CHARTYPE_Combination) in AppendChar_Combination()
181 CFX_Char* pLastChar = nullptr; in AppendChar_Arabic() local
187 pLastChar = GetLastChar(1, false, true); in AppendChar_Arabic()
188 if (pLastChar) { in AppendChar_Arabic()
189 m_pCurLine->m_iWidth -= pLastChar->m_iCharWidth; in AppendChar_Arabic()
191 wForm = pdfium::arabic::GetFormChar(pLastChar, pPrevChar, pCurChar); in AppendChar_Arabic()
193 pLastChar->GetCharType() == FX_CHARTYPE_ArabicAlef); in AppendChar_Arabic()
195 !m_pFont->GetCharWidth(pLastChar->char_code(), iCharWidth)) { in AppendChar_Arabic()
201 pLastChar->m_iCharWidth = iCharWidth; in AppendChar_Arabic()
[all …]
/external/python/cpython2/Python/
Dtraceback.c175 char* pLastChar = &linebuf[sizeof(linebuf)-2]; in _Py_DisplaySourceLine() local
177 *pLastChar = '\0'; in _Py_DisplaySourceLine()
185 } while (*pLastChar != '\0' && *pLastChar != '\n'); in _Py_DisplaySourceLine()
Derrors.c805 char *pLastChar = &linebuf[sizeof(linebuf) - 2]; in PyErr_ProgramText() local
807 *pLastChar = '\0'; in PyErr_ProgramText()
815 } while (*pLastChar != '\0' && *pLastChar != '\n'); in PyErr_ProgramText()
/external/python/cpython3/Python/
Derrors.c1132 char *pLastChar = &linebuf[sizeof(linebuf) - 2]; in err_programtext() local
1134 *pLastChar = '\0'; in err_programtext()
1143 } while (*pLastChar != '\0' && *pLastChar != '\n'); in err_programtext()