Home
last modified time | relevance | path

Searched refs:pos_ (Results 1 – 5 of 5) sorted by relevance

/AOO41X/main/xmlreader/source/
H A Dxmlreader.cxx104 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()
[all …]
/AOO41X/main/shell/source/win32/shlxthandler/thumbviewer/
H A Dthumbviewer.cxx144 size_t pos_; member in StreamOnZipBuffer
150 pos_(0) in StreamOnZipBuffer()
193 if (pos_ > size) in Read()
199 for ( ;(pos_ < size) && (cb > 0); pos_++, cb--, read++) in Read()
200 *p++ = ref_zip_buffer_[pos_]; in Read()
218 p = (__int64) pos_; in Seek()
231 pos_ = (size_t) p; in Seek()
/AOO41X/main/xmlreader/inc/xmlreader/
H A Dxmlreader.hxx136 SAL_DLLPRIVATE inline char read() { return pos_ == end_ ? '\0' : *pos_++; } in read()
138 SAL_DLLPRIVATE inline char peek() { return pos_ == end_ ? '\0' : *pos_; } in peek()
184 char const * pos_; member in xmlreader::XmlReader
/AOO41X/main/sw/qa/core/
H A Dbigpointerarray-new.hxx40 sal_uLong pos_; member in BigPtrEntry
43 BigPtrEntry() : pBigPtrArray_(0), pos_(0) in BigPtrEntry()
51 return pos_; in GetPos()
H A Dbigpointerarray-new.cxx75 rElem->pos_ = pos; in Insert()
97 rElem->pos_ = pos; in Replace()
105 (*iter)->pos_ = i; in FixElementIndizes()