Home | History | Annotate | Download | only in xmllite

Lines Matching defs:safe

147   size_t safe = 0;
149 size_t unsafe = text.find_first_of("<>&\"", safe);
152 *pout_ << text.substr(safe, unsafe - safe);
161 safe = unsafe + 1;
162 if (safe == text.length())
168 size_t safe = 0;
170 size_t unsafe = text.find_first_of("<>&", safe);
173 *pout_ << text.substr(safe, unsafe - safe);
181 safe = unsafe + 1;
182 if (safe == text.length())