Home
last modified time | relevance | path

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

/external/pdfium/xfa/src/fgas/src/xml/
Dfx_sax_imp.cpp243 CFX_ByteString csEntity(m_pszData + m_iEntityStart + 1, in ParseChar() local
245 int32_t iLen = csEntity.GetLength(); in ParseChar()
247 if (csEntity[0] == '#') { in ParseChar()
251 if (iLen > 1 && csEntity[1] == 'x') { in ParseChar()
253 w = csEntity[i]; in ParseChar()
266 w = csEntity[i]; in ParseChar()
278 if (csEntity.Compare("amp") == 0) { in ParseChar()
282 } else if (csEntity.Compare("lt") == 0) { in ParseChar()
286 } else if (csEntity.Compare("gt") == 0) { in ParseChar()
290 } else if (csEntity.Compare("apos") == 0) { in ParseChar()
[all …]
/external/pdfium/xfa/src/fdp/src/xml/
Dfde_xml.cpp2498 CFX_WideString csEntity; in ParseTextChar() local
2499 m_BlockBuffer.GetTextData(csEntity, m_iEntityStart + 1, in ParseTextChar()
2501 int32_t iLen = csEntity.GetLength(); in ParseTextChar()
2503 if (csEntity[0] == L'#') { in ParseTextChar()
2506 if (iLen > 1 && csEntity[1] == L'x') { in ParseTextChar()
2508 w = csEntity[i]; in ParseTextChar()
2521 w = csEntity[i]; in ParseTextChar()
2533 if (csEntity.Compare(L"amp") == 0) { in ParseTextChar()
2536 } else if (csEntity.Compare(L"lt") == 0) { in ParseTextChar()
2539 } else if (csEntity.Compare(L"gt") == 0) { in ParseTextChar()
[all …]