Home | History | Annotate | Download | only in xmllite

Lines Matching refs:unsafe

149     size_t unsafe = text.find_first_of("<>&\"", safe);
150 if (unsafe == std::string::npos)
151 unsafe = text.length();
152 *pout_ << text.substr(safe, unsafe - safe);
153 if (unsafe == text.length())
155 switch (text[unsafe]) {
161 safe = unsafe + 1;
170 size_t unsafe = text.find_first_of("<>&", safe);
171 if (unsafe == std::string::npos)
172 unsafe = text.length();
173 *pout_ << text.substr(safe, unsafe - safe);
174 if (unsafe == text.length())
176 switch (text[unsafe]) {
181 safe = unsafe + 1;