Home
last modified time | relevance | path

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

/external/pdfium/core/fxcrt/xml/
Dcfx_xmlparser.cpp477 WideString csEntity(current_text_.data() + entity_start_ + 1, in ProcessTextChar() local
482 int32_t iLen = csEntity.GetLength(); in ProcessTextChar()
484 if (csEntity[0] == L'#') { in ProcessTextChar()
486 if (iLen > 1 && csEntity[1] == L'x') { in ProcessTextChar()
488 if (!FXSYS_IsHexDigit(csEntity[i])) in ProcessTextChar()
490 ch = (ch << 4) + FXSYS_HexCharToInt(csEntity[i]); in ProcessTextChar()
494 if (!FXSYS_IsDecimalDigit(csEntity[i])) in ProcessTextChar()
496 ch = ch * 10 + FXSYS_DecimalCharToInt(csEntity[i]); in ProcessTextChar()
506 if (csEntity.Compare(L"amp") == 0) { in ProcessTextChar()
508 } else if (csEntity.Compare(L"lt") == 0) { in ProcessTextChar()
[all …]