Home | History | Annotate | Download | only in uresb

Lines Matching full:len

186     int len = u_strlen(string);
187 int alen = len;
228 int32_t len=0;
229 const UChar*thestr = ures_getString(resource, &len, status);
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;
267 int32_t len = 0;
268 const int8_t *data = (const int8_t *)ures_getBinary(resource, &len, status);
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;
280 for(i = 0; i<len; i++) {
296 int32_t len = 0;
297 const int32_t *data = ures_getIntVector(resource, &len, status);
304 for(i = 0; i<len-1; i++) {
307 if(len > 0) {
308 u_fprintf(out, "%d ", data[len-1]);
363 int32_t len = 0;
369 const UChar *result = ures_getStringByIndex(errorcodes, errorNumber, &len, &status);