Home
last modified time | relevance | path

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

/external/pdfium/core/fxcrt/xml/
Dcfx_xmlparser.cpp265 if (entity_start_ > -1) in DoSyntaxParse()
473 if (entity_start_ > -1 && character == L';') { in ProcessTextChar()
477 WideString csEntity(current_text_.data() + entity_start_ + 1, in ProcessTextChar()
478 current_text_.size() - entity_start_ - 2); in ProcessTextChar()
479 current_text_.erase(current_text_.begin() + entity_start_, in ProcessTextChar()
520 entity_start_ = -1; in ProcessTextChar()
521 } else if (entity_start_ < 0 && character == L'&') { in ProcessTextChar()
522 entity_start_ = current_text_.size() - 1; in ProcessTextChar()
538 entity_start_ = -1; in GetTextData()
Dcfx_xmlparser.h61 int32_t entity_start_ = -1; variable