Home
last modified time | relevance | path

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

/external/pdfium/core/fxcrt/xml/
Dcfx_xmlsyntaxparser.cpp627 WideString csEntity = m_BlockBuffer.GetTextData( in ParseTextChar() local
630 int32_t iLen = csEntity.GetLength(); in ParseTextChar()
632 if (csEntity[0] == L'#') { in ParseTextChar()
635 if (iLen > 1 && csEntity[1] == L'x') { in ParseTextChar()
637 w = csEntity[i]; in ParseTextChar()
649 w = csEntity[i]; in ParseTextChar()
664 if (csEntity.Compare(L"amp") == 0) { in ParseTextChar()
667 } else if (csEntity.Compare(L"lt") == 0) { in ParseTextChar()
670 } else if (csEntity.Compare(L"gt") == 0) { in ParseTextChar()
673 } else if (csEntity.Compare(L"apos") == 0) { in ParseTextChar()
[all …]
Dcfx_saxreader.cpp296 ByteString csEntity(m_Data.data() + iSaveStart + 1, in ParseChar() local
298 int32_t iLen = csEntity.GetLength(); in ParseChar()
302 if (csEntity[0] == '#') { in ParseChar()
306 if (iLen > 1 && csEntity[1] == 'x') { in ParseChar()
308 w = csEntity[i]; in ParseChar()
320 w = csEntity[i]; in ParseChar()
331 if (csEntity == "amp") { in ParseChar()
336 if (csEntity == "lt") { in ParseChar()
341 if (csEntity == "gt") { in ParseChar()
346 if (csEntity == "apos") { in ParseChar()
[all …]