Home | History | Annotate | Download | only in xmllite

Lines Matching defs:unsafe

154     size_t unsafe = text.find_first_of("<>&\"", safe);
155 if (unsafe == std::string::npos)
156 unsafe = text.length();
157 *pout_ << text.substr(safe, unsafe - safe);
158 if (unsafe == text.length())
160 switch (text[unsafe]) {
166 safe = unsafe + 1;
176 size_t unsafe = text.find_first_of("<>&", safe);
177 if (unsafe == std::string::npos)
178 unsafe = text.length();
179 *pout_ << text.substr(safe, unsafe - safe);
180 if (unsafe == text.length())
182 switch (text[unsafe]) {
187 safe = unsafe + 1;