Lines Matching refs:pos_

104     pos_ = static_cast< char * >(fileAddress_);  in XmlReader()
105 end_ = pos_ + fileSize_; in XmlReader()
232 ++pos_; in skipSpace()
238 pos_, end_ - pos_, RTL_CONSTASCII_STRINGPARAM("--"), in skipComment()
244 pos_ += RTL_CONSTASCII_LENGTH("--"); in skipComment()
246 pos_, end_ - pos_, RTL_CONSTASCII_STRINGPARAM("--")); in skipComment()
255 pos_ += i + RTL_CONSTASCII_LENGTH("--"); in skipComment()
269 pos_, end_ - pos_, RTL_CONSTASCII_STRINGPARAM("?>")); in skipProcessingInstruction()
276 pos_ += i + RTL_CONSTASCII_LENGTH("?>"); in skipProcessingInstruction()
296 pos_, end_ - pos_, c); in skipDocumentTypeDeclaration()
305 pos_ += i + 1; in skipDocumentTypeDeclaration()
325 pos_, end_ - pos_, c); in skipDocumentTypeDeclaration()
334 pos_ += i + 1; in skipDocumentTypeDeclaration()
379 pos_, end_ - pos_, RTL_CONSTASCII_STRINGPARAM("[CDATA["), in scanCdataSection()
385 pos_ += RTL_CONSTASCII_LENGTH("[CDATA["); in scanCdataSection()
386 char const * begin = pos_; in scanCdataSection()
388 pos_, end_ - pos_, RTL_CONSTASCII_STRINGPARAM("]]>")); in scanCdataSection()
397 pos_ += i + RTL_CONSTASCII_LENGTH("]]>"); in scanCdataSection()
403 for (char const * begin = pos_;; ++pos_) { in scanName()
413 return pos_ != begin; in scanName()
415 *nameColon = pos_; in scanName()
663 char const * nameBegin = pos_; in handleStartTag()
671 char const * nameEnd = pos_; in handleStartTag()
677 char const * p = pos_; in handleStartTag()
682 if (pos_ == p) { in handleStartTag()
690 char const * attrNameBegin = pos_; in handleStartTag()
699 char const * attrNameEnd = pos_; in handleStartTag()
716 char const * valueBegin = pos_; in handleStartTag()
717 sal_Int32 i = rtl_str_indexOfChar_WithLength(pos_, end_ - pos_, del); in handleStartTag()
726 char const * valueEnd = pos_ + i; in handleStartTag()
727 pos_ += i + 1; in handleStartTag()
755 ++pos_; in handleStartTag()
765 ++pos_; in handleStartTag()
788 char const * nameBegin = pos_; in handleEndTag()
791 !elements_.top().name.equals(nameBegin, pos_ - nameBegin)) in handleEndTag()
806 ++pos_; in handleEndTag()
819 sal_Int32 i = rtl_str_indexOfChar_WithLength(pos_, end_ - pos_, '<'); in handleSkippedText()
827 pos_ += i + 1; in handleSkippedText()
830 ++pos_; in handleSkippedText()
836 ++pos_; in handleSkippedText()
839 ++pos_; in handleSkippedText()
850 for (char const * begin = pos_;;) { in handleRawText()
859 pad_.add(begin, pos_ - begin); in handleRawText()
860 ++pos_; in handleRawText()
864 begin = pos_; in handleRawText()
867 pad_.add(begin, pos_ - begin); in handleRawText()
868 pos_ = handleReference(pos_, end_); in handleRawText()
869 begin = pos_; in handleRawText()
872 pad_.add(begin, pos_ - begin); in handleRawText()
873 ++pos_; in handleRawText()
876 ++pos_; in handleRawText()
885 begin = pos_; in handleRawText()
889 ++pos_; in handleRawText()
893 ++pos_; in handleRawText()
895 begin = pos_; in handleRawText()
904 ++pos_; in handleRawText()
912 char const * flowBegin = pos_; in handleNormalizedText()
913 char const * flowEnd = pos_; in handleNormalizedText()
938 ++pos_; in handleNormalizedText()
952 ++pos_; in handleNormalizedText()
960 pad_.add(flowBegin, pos_ - flowBegin); in handleNormalizedText()
967 pos_ = handleReference(pos_, end_); in handleNormalizedText()
968 flowBegin = pos_; in handleNormalizedText()
969 flowEnd = pos_; in handleNormalizedText()
973 ++pos_; in handleNormalizedText()
976 ++pos_; in handleNormalizedText()
990 pad_.add(flowBegin, pos_ - flowBegin); in handleNormalizedText()
998 flowBegin = pos_; in handleNormalizedText()
999 flowEnd = pos_; in handleNormalizedText()
1007 ++pos_; in handleNormalizedText()
1013 ++pos_; in handleNormalizedText()
1027 flowBegin = pos_; in handleNormalizedText()
1035 flowBegin = pos_; in handleNormalizedText()
1038 flowEnd = ++pos_; in handleNormalizedText()