Home | History | Annotate | Download | only in intltest

Lines Matching defs:out

640                 // Unfortunately, there are no good, direct set methods for finding out whether there are strings
649 UnicodeString out;
654 diffSet.toPattern(out, TRUE);
655 if(out.length()>100) {
656 out.replace(100, 0x7fffffff, ellipsis, UPRV_LENGTHOF(ellipsis));
660 errln(out);
666 diffSet.toPattern(out, TRUE);
667 if(out.length()>100) {
668 out.replace(100, 0x7fffffff, ellipsis, UPRV_LENGTHOF(ellipsis));
672 errln(out);
776 printBytes(const uint8_t *bytes, int32_t length, char *out) {
782 *out++=hexDigit((uint8_t)(b>>4));
783 *out++=hexDigit((uint8_t)(b&0xf));
789 *out++=' ';
790 *out++=hexDigit((uint8_t)(b>>4));
791 *out++=hexDigit((uint8_t)(b&0xf));
793 *out++=0;
794 return out;
798 printUnicode(const UChar *unicode, int32_t length, char *out) {
804 *out++=' ';
809 *out++='1';
812 *out++=hexDigit((uint8_t)((c>>16)&0xf));
814 *out++=hexDigit((uint8_t)((c>>12)&0xf));
815 *out++=hexDigit((uint8_t)((c>>8)&0xf));
816 *out++=hexDigit((uint8_t)((c>>4)&0xf));
817 *out++=hexDigit((uint8_t)(c&0xf));
819 *out++=0;
820 return out;
824 printOffsets(const int32_t *offsets, int32_t length, char *out) {
833 *out++=' ';
839 *out++='-';
840 *out++='x';
842 *out++='-';
843 *out++=(char)('0'-o);
845 *out++=(d=o/10)==0 ? ' ' : (char)('0'+d);
846 *out++=(char)('0'+o%10);
848 *out++='x';
849 *out++='x';
852 *out++=0;
853 return out;
874 // call ucnv_toUnicode() with in/out buffers no larger than (step) at a time
875 // move only one buffer (in vs. out) at a time to be extra mean
951 // end the loop by getting an index out of bounds error
1037 // we are done (flush==TRUE) but we continue, to get the index out of bounds error above
1134 // not a real loop, just a convenience for breaking out of the block
1277 // call ucnv_convertEx() with in/out buffers no larger than (step) at a time
1278 // move only one buffer (in vs. out) at a time to be extra mean
1380 // call ucnv_fromUnicode() with in/out buffers no larger than (step) at a time
1381 // move only one buffer (in vs. out) at a time to be extra mean
1585 // not a real loop, just a convenience for breaking out of the block