Home
last modified time | relevance | path

Searched refs:read (Results 51 – 75 of 757) sorted by relevance

12345678910>>...31

/aoo42x/main/xmerge/java/pexcel/src/main/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/
H A DWindow1.java57 read(is); in Window1()
92 public int read(InputStream input) throws IOException { in read() method in Window1
94 int numOfBytesRead = input.read(grbit); in read()
95 numOfBytesRead += input.read(itabCur); in read()
H A DBeginningOfFile.java58 read(is); in BeginningOfFile()
91 public int read(InputStream input) throws IOException { in read() method in BeginningOfFile
92 int numBytesRead = input.read(version); in read()
93 numBytesRead += input.read(subStream); in read()
H A DFloatNumber.java48 read(is); in FloatNumber()
82 public int read(InputStream input) throws IOException { in read() method in FloatNumber
84 int numOfBytesRead = super.read(input); in read()
86 numOfBytesRead += input.read(num); in read()
/aoo42x/main/graphite/
H A Dgraphite-2.3.1-CVE-2016-1521.patch5 if (read(pTable->index_to_loc_format) == Sfnt::FontHeader::ShortIndexLocFormat)
11 return (read(pTable[nGlyphId]) << 1);
14 if (read(pTable->index_to_loc_format) == Sfnt::FontHeader::LongIndexLocFormat)
20 return read(pTable[nGlyphId]);
/aoo42x/main/basic/source/runtime/
H A Ddllmgr.cxx379 template< typename T > T read(void const ** pointer) { in read() function
390 variable->PutInteger(read< sal_Int16 >(&data)); in unmarshal()
393 variable->PutLong(read< sal_Int32 >(&data)); in unmarshal()
396 variable->PutSingle(read< float >(&data)); in unmarshal()
399 variable->PutDouble(read< double >(&data)); in unmarshal()
402 read< char * >(&data); // handled by unmarshalString in unmarshal()
418 variable->PutBool(read< sal_Bool >(&data)); in unmarshal()
421 variable->PutByte(read< sal_uInt8 >(&data)); in unmarshal()
/aoo42x/main/desktop/win32/source/guistdio/
H A Dguistdio.inc53 //Indicates that we read an odd number of bytes. That is, we only read half of the last
66 //If the previous ReadFile call read an odd number of bytes, then the last one was
67 //put at the front of the buffer. We increase the number of read bytes by one to reflect
91 { //We have read an even number of bytes. Therefore, we do not put the last incomplete
167 //We need to read in the complete input until we encounter a new line before
200 //there could be more input coming. But if we read from the console
332 // Create an input pipe where the read end is inheritable
/aoo42x/main/offapi/com/sun/star/ucb/
H A DWebDAVFolderContent.idl128 string ContentType ( read-only, always "application/vnd.sun.star.webdav-collection" )
131 boolean IsDocument ( read-only, always false )
134 boolean IsFolder ( read-only, always true )
137 <type scope="com::sun::star::util">DateTime</type> DateCreated ( read-only )
140 <type scope="com::sun::star::util">DateTime</type> DateModified ( read-only )
146 string Size ( read-only, always zero )
H A DFTPContent.idl162 string ContentType ( read-only, either
167 boolean IsDocument ( read-only, always <true/> for files, always
171 boolean IsFolder ( read-only ), always <false/> for files, always
175 boolean IsReadOnly ( read-only attribute )
187 <type scope="com::sun::star::util">DateTime</type>DateCreated ( read-only )
H A DTransientDocumentsFolderContent.idl135 string ContentType ( read-only, always "application/vnd.sun.star.tdoc-folder" )
138 boolean IsDocument ( read-only, always false )
141 boolean IsFolder ( read-only, always true )
147 <type scope="com::sun::star::embed">XStorage</type> Storage ( read-only,
148 always a reference to a storage opened in read-only mode. No write
/aoo42x/main/vos/source/
H A Dstream.cxx48 sal_Int32 OStream::read(void* pbuffer, sal_uInt32 n) const in read() function in OStream
50 return (m_rStream.read(pbuffer, n)); in read()
53 sal_Int32 OStream::read(IPositionableStream::Offset offset, in read() function in OStream
56 return (seekTo(offset) ? read(pbuffer, n) : -1); in read()
/aoo42x/main/offapi/com/sun/star/ui/
H A DXUIConfigurationPersistence.idl68 storage is in read-only mode.
85 /** provides the current read-only state of the user configuration
86 manager. Storing a user interface configuration to a read-only storage
87 is not possible. A read-only configuration manager instance will also
91 <TRUE/> if the configuration manager storage is read-only otherwise
/aoo42x/main/offapi/com/sun/star/sdbc/
H A DXRow.idl71 /** reports whether the last column read had a value of SQL NULL.
72 Note that you must first call getXXX on a column to try to read
73 its value and then call wasNull() to see if the value read was
77 <TRUE/> if last column read was SQL NULL and <FALSE/> otherwise
221 uninterpreted bytes. The value can then be read in chunks from the
228 read prior to getting the value of any other column. The next
247 uninterpreted bytes. The value can then be read in chunks from the
254 read prior to getting the value of any other column. The next
H A DXConnection.idl84 forward-only type, and read-only concurrency, by default.
129 forward-only type and read-only concurrency, by default.
169 forward-only type and read-only concurrency, by default.
306 /** puts this connection in read-only mode as a hint to enable
322 <TRUE/> enables read-only mode; <FALSE/> disables read-only mode.
329 /** tests to see if the connection is in read-only mode.
331 <TRUE/> if connection is read-only and <FALSE/> otherwise.
H A DXSQLData.idl71 /** populates this object with data read from the database.
77 It must read each of the attributes or elements of the SQL
79 by calling a method of the input stream to read each
89 for a Distinct Type, read its single data element;
90 for a Structured Type, read a value for each attribute of the SQL type.
H A DTransactionIsolation.idl39 This level allows a row changed by one transaction to be read
41 committed (a "dirty read"). If any of the changes are rolled back,
58 (a "non-repeatable read").
70 "phantom" row in the second read.
/aoo42x/main/oox/source/xls/
H A Daddressconverter.cxx121 void BinAddress::read( SequenceInputStream& rStrm ) in read() function in oox::xls::BinAddress
126 void BinAddress::read( BiffInputStream& rStrm, bool bCol16Bit, bool bRow32Bit ) in read() function in oox::xls::BinAddress
152 void BinRange::read( SequenceInputStream& rStrm ) in read() function in oox::xls::BinRange
157 void BinRange::read( BiffInputStream& rStrm, bool bCol16Bit, bool bRow32Bit ) in read() function in oox::xls::BinRange
197 void BinRangeList::read( SequenceInputStream& rStrm ) in read() function in oox::xls::BinRangeList
202 aIt->read( rStrm ); in read()
205 void BinRangeList::read( BiffInputStream& rStrm, bool bCol16Bit, bool bRow32Bit ) in read() function in oox::xls::BinRangeList
210 aIt->read( rStrm, bCol16Bit, bRow32Bit ); in read()
/aoo42x/main/forms/source/component/
H A DFormattedFieldWrapper.cxx265 void SAL_CALL OFormattedFieldWrapper::read(const Reference<XObjectInputStream>& _rxInStream) throw(… in read() function in frm::OFormattedFieldWrapper
283 m_pEditPart->read(_rxInStream); in read()
299 xAggregatePersistence->read(_rxInStream); in read()
309 pBasicReader->read(_rxInStream); in read()
321 pFormattedReader->read(_rxInStream); in read()
/aoo42x/main/offapi/com/sun/star/sdb/
H A DXColumn.idl70 /** reports whether the last column read had a value of SQL NULL.
71 Note that you must first call getXXX on a column to try to read
74 to see if the value read was SQL NULL.
196 uninterpreted bytes. The value can then be read in chunks from the
203 read prior to getting the value of any other column. The next
219 uninterpreted bytes. The value can then be read in chunks from the
225 read prior to getting the value of any other column. The next
/aoo42x/main/qadevOOo/tests/java/ifc/io/
H A D_XInputStream.java131 int read = oObj.readBytes(data, 1) ; in _readBytes() local
133 result = read == 1 && in _readBytes()
166 int read = oObj.readSomeBytes(data, 1) ; in _readSomeBytes() local
168 result = read == 1 && in _readSomeBytes()
/aoo42x/main/oox/inc/oox/xls/
H A Drichstring.hxx112 void read( SequenceInputStream& rStrm );
113 void read( BiffInputStream& rStrm, BiffFontPortionMode eMode );
208 void read( SequenceInputStream& rStrm );
209 void read( BiffInputStream& rStrm );
/aoo42x/main/xmerge/java/pocketword/src/main/java/org/openoffice/xmerge/converter/xml/sxw/pocketword/
H A DPocketWordDocument.java108 public void read(InputStream docData) throws IOException { in read() method in PocketWordDocument
115 int readValue = docData.read(preamble); in read()
125 docData.read(font); in read()
143 while ((value = docData.read()) != -1) { in read()
/aoo42x/test/testcommon/source/org/openoffice/test/common/
H A DFileUtil.java290 while ((count = reader.read(buf)) != -1) { in readStreamAsString()
568 while ((bytesRead = from.read(buffer)) != -1) in copyFile()
606 while ((bytesRead = from.read(buffer)) != -1) in writeToFile()
638 while ((bytesRead = from.read(buffer)) != -1) in pump()
810 while ((len = zin.read(b)) != -1) { in unzip()
849 while ((count = bis.read(data)) != -1) { in zip()
966 while ((count = in.read(buffer)) > 0) { in download()
/aoo42x/main/xmlreader/source/
H A Dxmlreader.cxx255 if (read() != '>') { in skipComment()
282 char c = read(); in skipDocumentTypeDeclaration()
311 c = read(); in skipDocumentTypeDeclaration()
337 switch (read()) { in skipDocumentTypeDeclaration()
357 if (read() != '>') { in skipDocumentTypeDeclaration()
700 if (read() != '=') { in handleStartTag()
707 char del = read(); in handleStartTag()
/aoo42x/main/udkapi/com/sun/star/io/
H A DFilePermission.idl46 The possible keywords are <code>"read"</code>, <code>"write"</code>,
50 <li><code>read</code> -- read permission</li>
60 granting read and especially write access to various files and directories.
H A DXInputStream.idl46 /** This is the basic interface to read data from a stream.
89 the total number of bytes to read
110 @param aData contains the data read from the stream.
111 @param nMaxBytesToRead The maximum number of bytes to be read from this
139 /** states how many bytes can be read or skipped without blocking.

Completed in 773 milliseconds

12345678910>>...31