Lines Matching refs:i

197     for (NamespaceList::const_reverse_iterator i(namespaces_.rbegin());  in getNamespaceId()  local
198 i != namespaces_.rend(); ++i) in getNamespaceId()
200 if (prefix.equals(i->prefix)) { in getNamespaceId()
201 return i->nsId; in getNamespaceId()
215 sal_Int32 i = rtl_str_indexOfChar_WithLength(p, n, '\x0D'); in normalizeLineEnds() local
216 if (i < 0) { in normalizeLineEnds()
219 pad_.add(p, i); in normalizeLineEnds()
220 p += i + 1; in normalizeLineEnds()
221 n -= i + 1; in normalizeLineEnds()
244 sal_Int32 i = rtl_str_indexOfStr_WithLength( in skipComment() local
246 if (i < 0) { in skipComment()
254 pos_ += i + RTL_CONSTASCII_LENGTH("--"); in skipComment()
267 sal_Int32 i = rtl_str_indexOfStr_WithLength( in skipProcessingInstruction() local
269 if (i < 0) { in skipProcessingInstruction()
275 pos_ += i + RTL_CONSTASCII_LENGTH("?>"); in skipProcessingInstruction()
294 sal_Int32 i = rtl_str_indexOfChar_WithLength( in skipDocumentTypeDeclaration() local
296 if (i < 0) { in skipDocumentTypeDeclaration()
304 pos_ += i + 1; in skipDocumentTypeDeclaration()
323 sal_Int32 i = rtl_str_indexOfChar_WithLength( in skipDocumentTypeDeclaration() local
325 if (i < 0) { in skipDocumentTypeDeclaration()
333 pos_ += i + 1; in skipDocumentTypeDeclaration()
386 sal_Int32 i = rtl_str_indexOfStr_WithLength( in scanCdataSection() local
388 if (i < 0) { in scanCdataSection()
396 pos_ += i + RTL_CONSTASCII_LENGTH("]]>"); in scanCdataSection()
397 return Span(begin, i); in scanCdataSection()
425 for (NamespaceIris::size_type i = 0; i < namespaceIris_.size(); ++i) { in scanNamespaceIri() local
426 if (namespaceIris_[i].equals(iri)) { in scanNamespaceIri()
427 return toNamespaceId(i); in scanNamespaceIri()
542 for (std::size_t i = 0; i < sizeof refs / sizeof refs[0]; ++i) { in handleReference() local
544 position, end - position, refs[i].inBegin, refs[i].inLength, in handleReference()
545 refs[i].inLength) == in handleReference()
548 position += refs[i].inLength; in handleReference()
549 pad_.add(refs[i].outBegin, refs[i].outLength); in handleReference()
716 sal_Int32 i = rtl_str_indexOfChar_WithLength(pos_, end_ - pos_, del); in handleStartTag() local
717 if (i < 0) { in handleStartTag()
725 char const * valueEnd = pos_ + i; in handleStartTag()
726 pos_ += i + 1; in handleStartTag()
818 sal_Int32 i = rtl_str_indexOfChar_WithLength(pos_, end_ - pos_, '<'); in handleSkippedText() local
819 if (i < 0) { in handleSkippedText()
826 pos_ += i + 1; in handleSkippedText()