Searched refs:truncsize (Results 1 - 2 of 2) sorted by relevance

/external/icu4c/samples/uresb/
H A Duresb.c51 static int32_t truncsize = URESB_DEFAULTTRUNC; variable
133 truncsize = atoi(options[5].value); /* user defined printable size */
135 truncsize = URESB_DEFAULTTRUNC; /* we'll use default omitting size */
234 if(trunc && len > truncsize) {
236 u_fprintf(out, "// WARNING: this string, size %d is truncated to %d\n", len, truncsize/2);
237 len = truncsize/2;
269 if(trunc && len > truncsize) {
271 u_fprintf(out, "// WARNING: this resource, size %li is truncated to %li\n", len, truncsize/2);
272 len = truncsize/2;
/external/icu4c/tools/genrb/
H A Dderb.c56 static int32_t truncsize = DERB_DEFAULT_TRUNC; variable
157 truncsize = atoi(options[4].value); /* user defined printable size */
159 truncsize = DERB_DEFAULT_TRUNC; /* we'll use default omitting size */
476 if(trunc && len > truncsize) {
480 (long)len, (long)truncsize/2);
482 len = truncsize;
520 if(trunc && len > truncsize) {
524 (long)len, (long)(truncsize/2));
526 len = truncsize/2;
579 if(trunc && len > truncsize) {
[all...]

Completed in 66 milliseconds