Home | History | Annotate | Download | only in numfmt

Lines Matching refs:target

31 // Append a hex string to the target
34 UnicodeString& target) {
38 target += (UChar)(digit < 10 ? 0x30 + digit : 0x41 - 10 + digit);
40 return target;
46 UnicodeString target;
47 target += (UChar)U_DQUOTE;
51 (target += (UChar)U_BACKSLASH) += (UChar)U_SMALL_U;
52 appendHex(ch, 4, target);
54 target += ch;
57 target += (UChar)U_DQUOTE;
58 return target;