Lines Matching refs:position
433 char const * XmlReader::handleReference(char const * position, char const * end) in handleReference() argument
435 OSL_ASSERT(position != 0 && *position == '&' && position < end); in handleReference()
436 ++position; in handleReference()
437 if (*position == '#') { in handleReference()
438 ++position; in handleReference()
441 if (*position == 'x') { in handleReference()
442 ++position; in handleReference()
443 p = position; in handleReference()
444 for (;; ++position) { in handleReference()
445 char c = *position; in handleReference()
465 p = position; in handleReference()
466 for (;; ++position) { in handleReference()
467 char c = *position; in handleReference()
483 if (position == p || *position++ != ';') { in handleReference()
523 return position; in handleReference()
544 position, end - position, refs[i].inBegin, refs[i].inLength, in handleReference()
548 position += refs[i].inLength; in handleReference()
550 return position; in handleReference()