Home
last modified time | relevance | path

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

/external/pdfium/core/fxcrt/xml/
Dcfx_xmlparser.cpp77 current_text_.reserve(kCurrentTextReserve); in CFX_XMLParser()
130 if (!current_text_.empty()) { in DoSyntaxParse()
163 if (!IsXMLNameChar(ch, current_text_.empty())) { in DoSyntaxParse()
164 if (current_text_.empty()) in DoSyntaxParse()
177 current_text_.push_back(ch); in DoSyntaxParse()
182 if (!IsXMLNameChar(ch, current_text_.empty())) { in DoSyntaxParse()
183 if (current_text_.empty()) in DoSyntaxParse()
192 current_text_.push_back(ch); in DoSyntaxParse()
197 if (current_text_.empty() && IsXMLWhiteSpace(ch)) { in DoSyntaxParse()
201 if (!IsXMLNameChar(ch, current_text_.empty())) { in DoSyntaxParse()
[all …]
Dcfx_xmlparser.h59 std::vector<wchar_t, FxAllocAllocator<wchar_t>> current_text_; variable