Searched defs:bytesPerLine (Results 1 - 17 of 17) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/misc/
H A DBASE64Decoder.java69 protected int bytesPerLine() { method in class:BASE64Decoder
H A DBASE64Encoder.java59 protected int bytesPerLine() { method in class:BASE64Encoder
H A DUUDecoder.java110 protected int bytesPerLine() { method in class:UUDecoder
227 if (c > bytesPerLine()) {
H A DHexDumpEncoder.java74 protected int bytesPerLine() { method in class:HexDumpEncoder
H A DUCDecoder.java93 protected int bytesPerLine() { method in class:UCDecoder
H A DUCEncoder.java84 protected int bytesPerLine() { method in class:UCEncoder
H A DUUEncoder.java126 protected int bytesPerLine() { method in class:UUEncoder
H A DCharacterDecoder.java67 * <DD>bytesPerLine which tells the encoder the maximum number of
94 abstract protected int bytesPerLine(); method in class:CharacterDecoder
109 return (bytesPerLine());
H A DCharacterEncoder.java63 * <DD>bytesPerLine which tells the encoder the maximum number of
85 abstract protected int bytesPerLine(); method in class:CharacterEncoder
139 * line that is shorter than bytesPerLine().
145 byte tmpbuffer[] = new byte[bytesPerLine()];
163 if (numBytes < bytesPerLine()) {
274 * line at the end of a final line that is shorter than bytesPerLine().
280 byte tmpbuffer[] = new byte[bytesPerLine()];
298 if (numBytes < bytesPerLine()) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/util/
H A DBASE64EncoderStream.java50 private int bytesPerLine; // number of bytes per line field in class:BASE64EncoderStream
55 * @param bytesPerLine number of bytes per line. The encoder inserts
58 public BASE64EncoderStream(OutputStream out, int bytesPerLine) { argument
61 this.bytesPerLine = bytesPerLine;
147 if (count + 4 > bytesPerLine) {
H A DQPEncoderStream.java47 private int bytesPerLine; // number of bytes per line field in class:QPEncoderStream
54 * @param bytesPerLine the number of bytes per line. The encoder
58 public QPEncoderStream(OutputStream out, int bytesPerLine) { argument
62 this.bytesPerLine = bytesPerLine - 1;
168 if ((count += 3) > bytesPerLine) {
178 if (++count > bytesPerLine) {
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/http/
H A DBasicAuthentication.java205 /* It is never expected that the header value will exceed the bytesPerLine */
208 protected int bytesPerLine() { method in class:BasicAuthentication.BasicBASE64Encoder
H A DNegotiateAuthentication.java205 protected int bytesPerLine () { method in class:NegotiateAuthentication.B64Encoder
/openjdk7/jdk/src/windows/classes/sun/net/www/protocol/http/ntlm/
H A DNTLMAuthSequence.java99 protected int bytesPerLine () { method in class:B64Encoder
/openjdk7/jdk/src/solaris/classes/sun/net/www/protocol/http/ntlm/
H A DNTLMAuthentication.java253 protected int bytesPerLine () { method in class:B64Encoder
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DAnnotatedMemoryPanel.java52 private int bytesPerLine; field in class:AnnotatedMemoryPanel
344 bytesPerLine = 8;
354 bytesPerLine = 4;
/openjdk7/jdk/src/solaris/native/sun/java2d/x11/
H A DX11SurfaceData.h78 jint bytesPerLine; /* needed for ShMem lock */ member in struct:__anon1034

Completed in 92 milliseconds