Lines Matching defs:out
637 // Unfortunately, there are no good, direct set methods for finding out whether there are strings
646 UnicodeString out;
651 diffSet.toPattern(out, TRUE);
652 if(out.length()>100) {
653 out.replace(100, 0x7fffffff, ellipsis, LENGTHOF(ellipsis));
657 errln(out);
663 diffSet.toPattern(out, TRUE);
664 if(out.length()>100) {
665 out.replace(100, 0x7fffffff, ellipsis, LENGTHOF(ellipsis));
669 errln(out);
702 printBytes(const uint8_t *bytes, int32_t length, char *out) {
708 *out++=hexDigit((uint8_t)(b>>4));
709 *out++=hexDigit((uint8_t)(b&0xf));
715 *out++=' ';
716 *out++=hexDigit((uint8_t)(b>>4));
717 *out++=hexDigit((uint8_t)(b&0xf));
719 *out++=0;
720 return out;
724 printUnicode(const UChar *unicode, int32_t length, char *out) {
730 *out++=' ';
735 *out++='1';
738 *out++=hexDigit((uint8_t)((c>>16)&0xf));
740 *out++=hexDigit((uint8_t)((c>>12)&0xf));
741 *out++=hexDigit((uint8_t)((c>>8)&0xf));
742 *out++=hexDigit((uint8_t)((c>>4)&0xf));
743 *out++=hexDigit((uint8_t)(c&0xf));
745 *out++=0;
746 return out;
750 printOffsets(const int32_t *offsets, int32_t length, char *out) {
759 *out++=' ';
765 *out++='-';
766 *out++='x';
768 *out++='-';
769 *out++=(char)('0'-o);
771 *out++=(d=o/10)==0 ? ' ' : (char)('0'+d);
772 *out++=(char)('0'+o%10);
774 *out++='x';
775 *out++='x';
778 *out++=0;
779 return out;
800 // call ucnv_toUnicode() with in/out buffers no larger than (step) at a time
801 // move only one buffer (in vs. out) at a time to be extra mean
877 // end the loop by getting an index out of bounds error
963 // we are done (flush==TRUE) but we continue, to get the index out of bounds error above
1060 // not a real loop, just a convenience for breaking out of the block
1203 // call ucnv_convertEx() with in/out buffers no larger than (step) at a time
1204 // move only one buffer (in vs. out) at a time to be extra mean
1306 // call ucnv_fromUnicode() with in/out buffers no larger than (step) at a time
1307 // move only one buffer (in vs. out) at a time to be extra mean
1511 // not a real loop, just a convenience for breaking out of the block