Searched defs:pLastChar (Results 1 - 4 of 4) sorted by relevance

/external/python/cpython2/Python/
H A Dtraceback.c175 char* pLastChar = &linebuf[sizeof(linebuf)-2]; local
177 *pLastChar = '\0';
181 far as pLastChar, it must have found a newline
182 or hit the end of the file; if pLastChar is \n,
185 } while (*pLastChar != '\0' && *pLastChar != '\n');
H A Derrors.c805 char *pLastChar = &linebuf[sizeof(linebuf) - 2]; local
807 *pLastChar = '\0';
811 far as pLastChar, it must have found a newline
812 or hit the end of the file; if pLastChar is \n,
815 } while (*pLastChar != '\0' && *pLastChar != '\n');
/external/pdfium/xfa/fgas/layout/
H A Dfgas_rtfbreak.cpp273 CFX_RTFChar* pLastChar = GetLastChar(0); local
274 if (pLastChar && pLastChar->GetCharType() > FX_CHARTYPE_Combination)
327 CFX_RTFChar* pLastChar = nullptr; local
333 pLastChar = GetLastChar(1);
334 if (pLastChar) {
335 m_pCurLine->m_iWidth -= pLastChar->m_iCharWidth;
337 wForm = pdfium::arabic::GetFormChar(pLastChar, pPrevChar, pCurChar);
339 pLastChar->GetCharType() == FX_CHARTYPE_ArabicAlef);
341 !m_pFont->GetCharWidth(pLastChar
[all...]
H A Dfgas_textbreak.cpp325 CFX_TxtChar* pLastChar = GetLastChar(1, false); local
326 if (pLastChar && pLastChar->m_dwStatus < 1)
327 pLastChar->m_dwStatus = FX_TXTBREAK_PieceBreak;
348 CFX_TxtChar* pLastChar = GetLastChar(0, false); local
349 if (pLastChar &&
350 (pLastChar->m_dwCharStyles & FX_TXTCHARSTYLE_ArabicShadda) == 0) {
353 FX_WCHAR wLast = pLastChar->m_wCharCode;
359 if (pLastChar->m_wCharCode == 0x0651) {
365 pLastChar
444 CFX_TxtChar* pLastChar = nullptr; local
[all...]

Completed in 111 milliseconds