Lines Matching refs:sal_Int64
67 …virtual void SAL_CALL seek( sal_Int64 location ) throw (IllegalArgumentException, IOException, Run…
68 virtual sal_Int64 SAL_CALL getPosition() throw (IOException, RuntimeException);
69 virtual sal_Int64 SAL_CALL getLength() throw (IOException, RuntimeException);
154 void SAL_CALL UNOMemoryStream::seek( sal_Int64 location ) throw (IllegalArgumentException, IOExcept… in seek()
160 if ( location > static_cast< sal_Int64 >( maData.size() ) ) in seek()
163 if ( location > static_cast< sal_Int64 >( maData.size() ) ) in seek()
169 sal_Int64 SAL_CALL UNOMemoryStream::getPosition() throw (IOException, RuntimeException) in getPosition()
171 return static_cast< sal_Int64 >( mnCursor ); in getPosition()
174 sal_Int64 SAL_CALL UNOMemoryStream::getLength() throw (IOException, RuntimeException) in getLength()
176 return static_cast< sal_Int64 >( maData.size() ); in getLength()
185 sal_Int64 nNewSize = static_cast< sal_Int64 >( mnCursor + nBytesToWrite ); in writeBytes()