Lines Matching full:pend
509 static inline void skipComment(const char*& ptr, const char* pEnd)
512 if (p == pEnd)
518 while (p + 2 < pEnd) {
526 if (p + 3 < pEnd && p[1] == '-' && p[2] == '!' && p[3] == '>') {
556 const char* pEnd = ptr + m_buffer.size();
566 while (xmlDeclarationEnd != pEnd && *xmlDeclarationEnd != '>')
568 if (xmlDeclarationEnd == pEnd)
613 while (ptr + 3 < pEnd) { // +3 guarantees that "<!--" fits in the buffer - and certainly we aren't going to lose any "charset" that way.
621 skipComment(ptr, pEnd);
642 if (ptr == pEnd)
678 while (ptr != pEnd && *ptr != '>') {
682 while (ptr != pEnd && *ptr != quoteMark)
684 if (ptr == pEnd)
689 if (ptr == pEnd)