Home
last modified time | relevance | path

Searched refs:read (Results 1 – 25 of 757) sorted by relevance

12345678910>>...31

/aoo42x/main/xmerge/java/pexcel/src/main/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/formula/
H A DTokenDecoder.java95 while ((b = bis.read())!=-1) in getTokenVector()
186 int len = ((int)bis.read())*2; in readStringToken()
187 int options = (int)bis.read(); in readStringToken()
217 buffer[0] = (byte) bis.read(); in readNameToken()
271 buffer[0] = (byte) bis.read(); in read3DCellRefToken()
272 buffer[1] = (byte) bis.read(); in read3DCellRefToken()
274 buffer[0] = (byte) bis.read(); in read3DCellRefToken()
275 buffer[1] = (byte) bis.read(); in read3DCellRefToken()
309 buffer[1] = (byte) bis.read(); in read3DCellAreaRefToken()
312 buffer[1] = (byte) bis.read(); in read3DCellAreaRefToken()
[all …]
/aoo42x/main/odk/examples/DevelopersGuide/UCB/
H A DMyInputStream.java39 private int read = offset; field in MyInputStream
71 return read - offset ; in getPosition()
84 read = ( int ) p0; in seek()
85 if( read < offset || read > bigbuffer.length ) in seek()
112 read = -1; in closeInput()
126 if( read == -1 ) in readBytes()
172 read += p0; in skipBytes()
173 if( read > bigbuffer.length ) in skipBytes()
174 read = bigbuffer.length; in skipBytes()
176 if( read < offset ) in skipBytes()
[all …]
H A DDataStreamRetriever.java157 int read = data.readSomeBytes( buffer, 65536 ); in printStream() local
158 System.out.println( "Read bytes : " + read ); in printStream()
160 while ( read > 0 ) { in printStream()
161 byte[] bytes = new byte[ read ]; in printStream()
162 for( int i = 0; i < read; i++ ) { in printStream()
168 read = data.readSomeBytes( buffer, 65536 ); in printStream()
/aoo42x/main/vos/inc/vos/
H A Dstream.hxx99 inline sal_Bool SAL_CALL read(sal_Int32& value) const;
102 inline sal_Bool SAL_CALL read(sal_Int16& value) const;
105 inline sal_Bool SAL_CALL read(sal_Char& value) const;
177 inline sal_Bool OStream::read(sal_Int32& value) const in read() function in vos::OStream
182 inline sal_Bool OStream::read(sal_Int16& value) const in read() function in vos::OStream
187 inline sal_Bool OStream::read(sal_Char& value) const in read() function in vos::OStream
192 inline sal_Bool OStream::read(sal_uInt8& value) const in read() function in vos::OStream
224 rStream.read(value); in operator >>()
231 rStream.read(value); in operator >>()
238 rStream.read(value); in operator >>()
[all …]
/aoo42x/main/xmerge/java/pexcel/src/main/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/
H A DExtendedFormat.java83 read(is); in ExtendedFormat()
323 int numOfBytesRead = input.read(ixfnt); in read()
324 numOfBytesRead += input.read(ixnf); in read()
326 numOfBytesRead += input.read(fBaseAttr); in read()
328 numOfBytesRead += input.read(icvFore); in read()
329 numOfBytesRead += input.read(icvFill); in read()
330 bRight = (byte) input.read(); in read()
331 bTop = (byte) input.read(); in read()
332 bLeft = (byte) input.read(); in read()
333 bBottom = (byte) input.read(); in read()
[all …]
H A DFontDescription.java187 read(is); in FontDescription()
230 int numOfBytesRead = input.read(dwHeight); in read()
231 numOfBytesRead += input.read(grbit); in read()
233 numOfBytesRead += input.read(bls); in read()
234 numOfBytesRead += input.read(Reserved2); in read()
235 uls = (byte) input.read(); in read()
236 bFamily = (byte) input.read(); in read()
237 bCharSet = (byte) input.read(); in read()
238 Reserved3 = (byte) input.read(); in read()
239 cch = (byte) input.read(); in read()
[all …]
H A DSelection.java67 read(is); in Selection()
95 public int read(InputStream input) throws IOException { in read() method in Selection
97 int numOfBytesRead = input.read(rwTop); in read()
98 colLeft += (byte) input.read(); in read()
99 numOfBytesRead += input.read(rwBottom); in read()
100 colRight += (byte) input.read(); in read()
101 numOfBytesRead += input.read(rwActive); in read()
102 colActive += (byte) input.read(); in read()
H A DDefinedName.java75 read(is); in DefinedName()
95 public int read(InputStream input) throws IOException { in read() method in DefinedName
97 int numOfBytesRead = input.read(grbit); in read()
98 cch = (byte) input.read(); in read()
100 numOfBytesRead += input.read(cce); in read()
101 numOfBytesRead += input.read(ixals); in read()
104 input.read(rgch, 0, cch*2); in read()
107 input.read(rgce, 0, EndianConverter.readShort(cce)); in read()
H A DColInfo.java71 read(is); in ColInfo()
80 public int read(InputStream input) throws IOException { in read() method in ColInfo
82 int numOfBytesRead = input.read(colFirst); in read()
83 numOfBytesRead += input.read(colLast); in read()
84 numOfBytesRead += input.read(colDX); in read()
87 numOfBytesRead += input.read(ixfe); in read()
88 grbit = (byte) input.read(); in read()
H A DPane.java61 read(is); in Pane()
187 public int read(InputStream input) throws IOException { in read() method in Pane
189 int numOfBytesRead = input.read(x); in read()
190 numOfBytesRead += input.read(y); in read()
191 numOfBytesRead += input.read(rwTop); in read()
192 numOfBytesRead += input.read(colLeft); in read()
193 pnnAcct = (byte) input.read(); in read()
H A DCodePage.java61 read(is); in CodePage()
73 public int read(InputStream input) throws IOException { in read() method in CodePage
75 int numOfBytesRead = input.read(codepage); in read()
76 numOfBytesRead += input.read(unknown1); in read()
77 numOfBytesRead += input.read(unknown2); in read()
79 unknown3 = (byte) input.read(); in read()
H A DFormula.java129 read(is); in Formula()
148 public int read(InputStream input) throws IOException { in read() method in Formula
150 int numOfBytesRead = super.read(input); in read()
152 numOfBytesRead += input.read(num); in read()
153 grbit = (byte) input.read(); in read()
155 numOfBytesRead += input.read(cce); in read()
159 input.read(rgce, 0, strLen); in read()
H A DRow.java71 read(is); in Row()
106 public int read(InputStream input) throws IOException { in read() method in Row
108 int numOfBytesRead = input.read(rw); in read()
109 numOfBytesRead += input.read(miyRw); in read()
112 numOfBytesRead += input.read(grbit); in read()
113 numOfBytesRead += input.read(ixfe); in read()
H A DWorkbook.java93 read(is); in Workbook()
136 public void read(InputStream is) throws IOException { in read() method in Workbook
143 b = is.read(); in read()
160 bof.read(is); in read()
165 eof.read(is); in read()
167 while(ws.read(is)) { in read()
181 win1.read(is); in read()
186 cp.read(is); in read()
202 b = is.read(); in read()
/aoo42x/main/stoc/test/security/
H A Dtest_security.policy5 permission com.sun.star.io.FilePermission "file:///home/dbo/-", ",,read , write ";
6 permission com.sun.star.io.FilePermission "-", "read ,write";
13 permission com.sun.star.io.FilePermission "file:///usr/local/dbo/*" , "read ";};
16 permission com.sun.star.io.FilePermission "file:///home/jbu/-" ,"read,write,";
18 …permission com.sun.star.io.FilePermission "*",",read,write";}; grant user "root"{permission com.su…
23 // read out this file
25 "read";
28 permission com.sun.star.io.FilePermission "file:///usr/bin/*", "read";
29 permission com.sun.star.io.FilePermission "file:///usr/bin/*", "read";
30 permission com.sun.star.io.FilePermission "file:///tmp/-", "read, write";
[all …]
/aoo42x/main/filter/source/xsltfilter/com/sun/star/comp/xsltfilter/
H A DBase64.java1034 while( ( length = gzis.read( buffer ) ) >= 0 ) in decode()
1303 int read = -1; in encodeFileToFile() local
1304 while( ( read = in.read(buffer) ) >= 0 ){ in encodeFileToFile()
1305 out.write( buffer,0,read ); in encodeFileToFile()
1340 int read = -1; in decodeFileToFile() local
1341 while( ( read = in.read(buffer) ) >= 0 ){ in decodeFileToFile()
1342 out.write( buffer,0,read ); in decodeFileToFile()
1436 public int read() throws java.io.IOException in read() method in Base64.InputStream
1449 int b = in.read(); in read()
1489 do{ b = in.read(); } in read()
[all …]
/aoo42x/main/oox/inc/oox/xls/
H A Daddressconverter.hxx68 void read( SequenceInputStream& rStrm );
69 … void read( BiffInputStream& rStrm, bool bCol16Bit = true, bool bRow32Bit = false );
87 orPos.read( rStrm ); in operator >>()
93 orPos.read( rStrm ); in operator >>()
133 void read( SequenceInputStream& rStrm );
134 … void read( BiffInputStream& rStrm, bool bCol16Bit = true, bool bRow32Bit = false );
152 orRange.read( rStrm ); in operator >>()
158 orRange.read( rStrm ); in operator >>()
178 void read( SequenceInputStream& rStrm );
189 orRanges.read( rStrm ); in operator >>()
[all …]
/aoo42x/main/offapi/com/sun/star/ucb/
H A DHelpContent.idl116 string ContentType ( read-only,
120 boolean IsReadOnly ( read-only, always "true" )
123 boolean IsDocument ( read-only )
126 boolean IsFolder ( read-only )
129 string Title ( read-only, content title )
132 string MediaType ( read only, either "image/gif", "text/plain",
136 sequence&lt;string&gt; KeywordList ( read-only, only if IsFolder is true,
140 sequence&lt;sequence&lt;string&gt;&gt; KeywordRef ( read-only, only if IsFolder is true,
144 sequence&lt;sequence&lt;string&gt;&gt; KeywordAnchorForRef ( read-only, only if IsFolder is true,
148 sequence&lt;sequence&lt;string&gt;&gt; KeywordTitleForRef ( read-only, , only if IsFolder is true,
[all …]
H A DFileContent.idl169 string ContentType ( read-only, either
174 boolean IsDocument ( read-only, always <true/> for files, always
178 boolean IsFolder ( read-only ), always <false/> for files, always
182 <type scope="com::sun::star::util">DateTime</type> DateModified ( read-only )
185 boolean IsReadOnly ( read-only attribute )
194 boolean IsVolume ( read-only )
197 boolean IsRemoveable ( read-only )
200 boolean IsRemote ( read-only )
203 boolean IsCompactDisc ( read-only )
206 boolean IsFloppy ( read-only )
[all …]
/aoo42x/main/sc/source/ui/vba/testvba/TestDocuments-ooo-build/logs/unix/
H A DCalcZoom.log4 ITEM Assertion OK : test1 read window.zoom activesheet = sheet1
5 ITEM Assertion OK : test2 read window.zoom activesheet = sheet2
6 ITEM Assertion OK : test3 read window.zoom activesheet = sheet3
7 ITEM Assertion OK : test4 read window.zoom activesheet = sheet3
8 ITEM Assertion OK : test4 read window.zoom activesheet = sheet2
9 ITEM Assertion OK : test4 read window.zoom activesheet = sheet1
/aoo42x/main/connectivity/java/sdbc_hsqldb/src/com/sun/star/sdbcx/comp/hsqldb/
H A DNativeInputStreamHelper.java46 public int read() throws java.io.IOException { in read() method in NativeInputStreamHelper
47 return in.read(key,file); in read()
50 public int read(byte[] b, int off, int len) throws java.io.IOException { in read() method in NativeInputStreamHelper
51 return in.read(key,file,b,off,len); in read()
66 public int read(byte[] b) throws java.io.IOException { in read() method in NativeInputStreamHelper
67 return in.read(key,file,b); in read()
/aoo42x/main/tools/inc/tools/
H A Dgeninfo.hxx101 aLockState( read ), nLockKey( 0 ) {}; in GenericLockInformation()
126 enum LockState{ writeonly, read, readonly }; enumerator
131 sal_Bool SetWriteLock(sal_uInt32 nKey = 0) { return ((read==aLockState) && in SetWriteLock()
139 (aLockState=read, nLockKey=0, sal_True)); } // setzt den zustand auf "read" in ReleaseWriteLock()
140 sal_Bool SetReadLock(sal_uInt32 nKey = 0) { return ((read==aLockState) && in SetReadLock()
144 (aLockState=read, nLockKey=0, sal_True)); } // setzt den zustand auf "read" in ReleaseReadLock()
149 sal_Bool IsNotLocked() const { return (read==aLockState); } in IsNotLocked()
/aoo42x/main/udkapi/com/sun/star/io/
H A DXPersistObject.idl51 itself again (by using the read method). Therefor it must be
53 the global service manager. The create and read mechanism
95 // DocMerge from xml: method com::sun::star::io::XPersistObject::read
98 other XPersistObjects are read from the stream, the implementation uses a factory
100 <p> The implementation must read the data in the order documented at
102 @param InStream the stream, the data shall be read from.
104 void read( [in] com::sun::star::io::XObjectInputStream InStream )
H A DXTextInputStream.idl40 /** Interface to read strings from a stream.
42 <p>This interfaces allows to read strings separated by
43 delimiters and to read lines. The character encoding
53 <p>The read characters are converted according to the
70 delimiters is found, the stream will be read to EOF. The
71 read characters are converted according to the encoding
95 no next string can be read. <FALSE/> otherwise
/aoo42x/main/connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/
H A DReaderInputStream.java41 public int read() throws IOException { in read() method in ReaderInputStream
47 int c = reader.read(); in read()
58 public int read(byte[] b, int off, int len) throws IOException { in read() method in ReaderInputStream
64 int next = read(); in read()
73 int charsRead = reader.read(chars); in read()

Completed in 97 milliseconds

12345678910>>...31