Home | History | Annotate | Download | only in intltest

Lines Matching defs:out

638                 // Unfortunately, there are no good, direct set methods for finding out whether there are strings
647 UnicodeString out;
652 diffSet.toPattern(out, TRUE);
653 if(out.length()>100) {
654 out.replace(100, 0x7fffffff, ellipsis, UPRV_LENGTHOF(ellipsis));
658 errln(out);
664 diffSet.toPattern(out, TRUE);
665 if(out.length()>100) {
666 out.replace(100, 0x7fffffff, ellipsis, UPRV_LENGTHOF(ellipsis));
670 errln(out);
774 printBytes(const uint8_t *bytes, int32_t length, char *out) {
780 *out++=hexDigit((uint8_t)(b>>4));
781 *out++=hexDigit((uint8_t)(b&0xf));
787 *out++=' ';
788 *out++=hexDigit((uint8_t)(b>>4));
789 *out++=hexDigit((uint8_t)(b&0xf));
791 *out++=0;
792 return out;
796 printUnicode(const UChar *unicode, int32_t length, char *out) {
802 *out++=' ';
807 *out++='1';
810 *out++=hexDigit((uint8_t)((c>>16)&0xf));
812 *out++=hexDigit((uint8_t)((c>>12)&0xf));
813 *out++=hexDigit((uint8_t)((c>>8)&0xf));
814 *out++=hexDigit((uint8_t)((c>>4)&0xf));
815 *out++=hexDigit((uint8_t)(c&0xf));
817 *out++=0;
818 return out;
822 printOffsets(const int32_t *offsets, int32_t length, char *out) {
831 *out++=' ';
837 *out++='-';
838 *out++='x';
840 *out++='-';
841 *out++=(char)('0'-o);
843 *out++=(d=o/10)==0 ? ' ' : (char)('0'+d);
844 *out++=(char)('0'+o%10);
846 *out++='x';
847 *out++='x';
850 *out++=0;
851 return out;
872 // call ucnv_toUnicode() with in/out buffers no larger than (step) at a time
873 // move only one buffer (in vs. out) at a time to be extra mean
949 // end the loop by getting an index out of bounds error
1035 // we are done (flush==TRUE) but we continue, to get the index out of bounds error above
1132 // not a real loop, just a convenience for breaking out of the block
1275 // call ucnv_convertEx() with in/out buffers no larger than (step) at a time
1276 // move only one buffer (in vs. out) at a time to be extra mean
1378 // call ucnv_fromUnicode() with in/out buffers no larger than (step) at a time
1379 // move only one buffer (in vs. out) at a time to be extra mean
1583 // not a real loop, just a convenience for breaking out of the block