Home
last modified time | relevance | path

Searched refs:mbEof (Results 1 – 8 of 8) sorted by relevance

/trunk/main/oox/source/helper/
H A Dbinaryinputstream.cxx58 for( sal_uInt8 nChar = readuInt8(); !mbEof && (nChar > 0); readValue( nChar ) ) in readNulCharArray()
71 for( sal_uInt16 nChar = readuInt16(); !mbEof && (nChar > 0); readValue( nChar ) ) in readNulUnicodeArray()
156 mbEof = !mxInStrm.is(); in BinaryXInputStream()
183 if( !mbEof && (nBytes > 0) ) try in readData()
186 mbEof = nRet != nBytes; in readData()
190 mbEof = true; in readData()
198 if( !mbEof && (nBytes > 0) ) in readMemory()
202 while( !mbEof && (nBytes > 0) ) in readMemory()
218 if( !mbEof ) try in skip()
224 mbEof = true; in skip()
[all …]
H A Dbinarystreambase.cxx106 mbEof = false; in seek()
111 mbEof = true; in seek()
118 mbEof = true; in close()
145 mbEof = mnPos != nPos; in seek()
152 mbEof = true; in close()
H A Dbinaryoutputstream.cxx53 mbEof = !mxOutStrm.is(); in BinaryXOutputStream()
/trunk/main/oox/source/xls/
H A Dbiffinputstream.cxx178 mbEof = true; // EOF will be true if stream is not inside a record in BiffInputStream()
266 return mbEof ? -1 : (mnCurrRecSize - maRecBuffer.getRecLeft()); in tell()
273 if( mbEof || (nRecPos < tell()) ) in seek()
275 if( !mbEof && (nRecPos > tell()) ) in seek()
299 if( !mbEof ) in readData()
311 if( !mbEof && opMem && (nBytes > 0) ) in readMemory()
316 while( !mbEof && (nBytesLeft > 0) ) in readMemory()
329 OSL_ENSURE( !mbEof, "BiffInputStream::readMemory - record overread" ); in readMemory()
338 while( !mbEof && (nBytesLeft > 0) ) in skip()
349 OSL_ENSURE( !mbEof, "BiffInputStream::skip - record overread" ); in skip()
[all …]
/trunk/main/oox/source/ole/
H A Dvbainputstream.cxx54 mbEof = mbEof || rInStrm.isEof() || (nSig != VBASTREAM_SIGNATURE); in VbaInputStream()
74 mbEof = true; in close()
80 if( !mbEof ) in readData()
125 if( mbEof || (mnChunkPos < maChunk.size()) ) return !mbEof; in updateChunk()
129 mbEof = mpInStrm->isEof(); in updateChunk()
130 if( mbEof ) return false; in updateChunk()
134 mbEof = (nHeader & VBACHUNK_SIGMASK) != VBACHUNK_SIG; in updateChunk()
135 if( mbEof ) return false; in updateChunk()
146 while( !mbEof && !mpInStrm->isEof() && (nChunkPos < nChunkLen) ) in updateChunk()
150 …for( int nBit = 0; !mbEof && !mpInStrm->isEof() && (nBit < 8) && (nChunkPos < nChunkLen); ++nBit, … in updateChunk()
[all …]
H A Daxbinaryreader.cxx52 mbEof = mbEof || rInStrm.isEof(); in AxAlignedInputStream()
67 mbEof = mbEof || (nPos < mnStrmPos); in seek()
68 if( !mbEof ) in seek()
75 mbEof = true; in close()
81 if( !mbEof ) in readData()
85 mbEof = mpInStrm->isEof(); in readData()
93 if( !mbEof ) in readMemory()
97 mbEof = mpInStrm->isEof(); in readMemory()
104 if( !mbEof ) in skip()
108 mbEof = mpInStrm->isEof(); in skip()
/trunk/main/oox/inc/oox/helper/
H A Dbinarystreambase.hxx87 inline bool isEof() const { return mbEof; } in isEof()
114 …inline explicit BinaryStreamBase( bool bSeekable ) : mbEof( false ), mbSeekable( bSeekable ) {} in BinaryStreamBase()
121 bool mbEof; /// End of stream flag. member in oox::BinaryStreamBase
H A Dbinaryinputstream.hxx254 if( !mbEof ) in readArray()