Lines Matching refs:pos_
103 pos_ = static_cast< char * >(fileAddress_); in XmlReader()
104 end_ = pos_ + fileSize_; in XmlReader()
231 ++pos_; in skipSpace()
237 pos_, end_ - pos_, RTL_CONSTASCII_STRINGPARAM("--"), in skipComment()
243 pos_ += RTL_CONSTASCII_LENGTH("--"); in skipComment()
245 pos_, end_ - pos_, RTL_CONSTASCII_STRINGPARAM("--")); in skipComment()
254 pos_ += i + RTL_CONSTASCII_LENGTH("--"); in skipComment()
268 pos_, end_ - pos_, RTL_CONSTASCII_STRINGPARAM("?>")); in skipProcessingInstruction()
275 pos_ += i + RTL_CONSTASCII_LENGTH("?>"); in skipProcessingInstruction()
295 pos_, end_ - pos_, c); in skipDocumentTypeDeclaration()
304 pos_ += i + 1; in skipDocumentTypeDeclaration()
324 pos_, end_ - pos_, c); in skipDocumentTypeDeclaration()
333 pos_ += i + 1; in skipDocumentTypeDeclaration()
378 pos_, end_ - pos_, RTL_CONSTASCII_STRINGPARAM("[CDATA["), in scanCdataSection()
384 pos_ += RTL_CONSTASCII_LENGTH("[CDATA["); in scanCdataSection()
385 char const * begin = pos_; in scanCdataSection()
387 pos_, end_ - pos_, RTL_CONSTASCII_STRINGPARAM("]]>")); in scanCdataSection()
396 pos_ += i + RTL_CONSTASCII_LENGTH("]]>"); in scanCdataSection()
402 for (char const * begin = pos_;; ++pos_) { in scanName()
412 return pos_ != begin; in scanName()
414 *nameColon = pos_; in scanName()
662 char const * nameBegin = pos_; in handleStartTag()
670 char const * nameEnd = pos_; in handleStartTag()
676 char const * p = pos_; in handleStartTag()
681 if (pos_ == p) { in handleStartTag()
689 char const * attrNameBegin = pos_; in handleStartTag()
698 char const * attrNameEnd = pos_; in handleStartTag()
715 char const * valueBegin = pos_; in handleStartTag()
716 sal_Int32 i = rtl_str_indexOfChar_WithLength(pos_, end_ - pos_, del); in handleStartTag()
725 char const * valueEnd = pos_ + i; in handleStartTag()
726 pos_ += i + 1; in handleStartTag()
754 ++pos_; in handleStartTag()
764 ++pos_; in handleStartTag()
787 char const * nameBegin = pos_; in handleEndTag()
790 !elements_.top().name.equals(nameBegin, pos_ - nameBegin)) in handleEndTag()
805 ++pos_; in handleEndTag()
818 sal_Int32 i = rtl_str_indexOfChar_WithLength(pos_, end_ - pos_, '<'); in handleSkippedText()
826 pos_ += i + 1; in handleSkippedText()
829 ++pos_; in handleSkippedText()
835 ++pos_; in handleSkippedText()
838 ++pos_; in handleSkippedText()
849 for (char const * begin = pos_;;) { in handleRawText()
858 pad_.add(begin, pos_ - begin); in handleRawText()
859 ++pos_; in handleRawText()
863 begin = pos_; in handleRawText()
866 pad_.add(begin, pos_ - begin); in handleRawText()
867 pos_ = handleReference(pos_, end_); in handleRawText()
868 begin = pos_; in handleRawText()
871 pad_.add(begin, pos_ - begin); in handleRawText()
872 ++pos_; in handleRawText()
875 ++pos_; in handleRawText()
884 begin = pos_; in handleRawText()
888 ++pos_; in handleRawText()
892 ++pos_; in handleRawText()
894 begin = pos_; in handleRawText()
903 ++pos_; in handleRawText()
911 char const * flowBegin = pos_; in handleNormalizedText()
912 char const * flowEnd = pos_; in handleNormalizedText()
937 ++pos_; in handleNormalizedText()
951 ++pos_; in handleNormalizedText()
959 pad_.add(flowBegin, pos_ - flowBegin); in handleNormalizedText()
966 pos_ = handleReference(pos_, end_); in handleNormalizedText()
967 flowBegin = pos_; in handleNormalizedText()
968 flowEnd = pos_; in handleNormalizedText()
972 ++pos_; in handleNormalizedText()
975 ++pos_; in handleNormalizedText()
989 pad_.add(flowBegin, pos_ - flowBegin); in handleNormalizedText()
997 flowBegin = pos_; in handleNormalizedText()
998 flowEnd = pos_; in handleNormalizedText()
1006 ++pos_; in handleNormalizedText()
1012 ++pos_; in handleNormalizedText()
1026 flowBegin = pos_; in handleNormalizedText()
1034 flowBegin = pos_; in handleNormalizedText()
1037 flowEnd = ++pos_; in handleNormalizedText()