Home
last modified time | relevance | path

Searched refs:breakLines (Results 1 – 5 of 5) sorted by relevance

/external/smack/src/org/jivesoftware/smack/util/
DBase64.java651 boolean breakLines = dontBreakLines == 0; in encodeBytes()
656 … + (breakLines ? ( len43 / MAX_LINE_LENGTH ) : 0) ]; // New lines in encodeBytes()
666 if( breakLines && lineLength == MAX_LINE_LENGTH ) in encodeBytes()
1233 private boolean breakLines; // Break lines at less than 80 characters field in Base64.InputStream
1275 this.breakLines = (options & DONT_BREAK_LINES) != DONT_BREAK_LINES; in InputStream()
1379 if( encode && breakLines && lineLength >= MAX_LINE_LENGTH ) in read()
1468 private boolean breakLines; field in Base64.OutputStream
1510 this.breakLines = (options & DONT_BREAK_LINES) != DONT_BREAK_LINES; in OutputStream()
1554 if( breakLines && lineLength >= MAX_LINE_LENGTH ) in write()
/external/icu4c/samples/layout/
Dparagraph.h43 void breakLines(le_int32 width, le_int32 height);
Dgnomelayout.cpp108 context->paragraph->breakLines(context->width, context->height); in openOK()
210 context->paragraph->breakLines(context->width, context->height); in eventConfigure()
Dparagraph.cpp181 void Paragraph::breakLines(le_int32 width, le_int32 height) in breakLines() function in Paragraph
Dlayout.cpp58 context->paragraph->breakLines(context->width, context->height); in InitParagraph()