Home
last modified time | relevance | path

Searched refs:bufferLength (Results 1 – 2 of 2) sorted by relevance

/trunk/main/filter/source/xsltfilter/com/sun/star/comp/xsltfilter/
H A DBase64.java1373 private int bufferLength; // Length of buffer (3 or 4) field in Base64.InputStream
1420 this.bufferLength = encode ? 4 : 3; in InputStream()
1421 this.buffer = new byte[ bufferLength ]; in InputStream()
1535 if( position >= bufferLength ) in read()
1609 private int bufferLength; field in Base64.OutputStream
1655 this.bufferLength = encode ? 3 : 4; in OutputStream()
1656 this.buffer = new byte[ bufferLength ]; in OutputStream()
1692 if( position >= bufferLength ) // Enough to encode. in write()
1694 out.write( encode3to4( b4, buffer, bufferLength, options ) ); in write()
1714 if( position >= bufferLength ) // Enough to output. in write()
/trunk/main/connectivity/java/sdbc_postgresql/src/com/sun/star/sdbcx/comp/postgresql/
H A DPostgresqlDatabaseMetadata.java104 int bufferLength = row.getInt(8); // FIXME: is it int? in getColumns() local
130 rowOut[7] = new ORowSetValue(bufferLength); in getColumns()

Completed in 33 milliseconds