Home | History | Annotate | Download | only in unicode

Lines Matching defs:len

356  * @param len    fills in the length of resulting string
371 int32_t* len,
431 * @param len fills in the length of resulting byte chunk
446 int32_t* len,
453 * @param len fills in the length of resulting byte chunk
468 int32_t* len,
591 * @param len fill in length of the string
600 int32_t* len,
627 * @param len fill in length of the string
636 int32_t* len,
718 * @param len fill in length of the string
727 int32_t* len,
806 int32_t len = 0;
807 const UChar *r = ures_getString(resB, &len, status);
808 return UnicodeString(TRUE, r, len);
826 int32_t len = 0;
827 const UChar* r = ures_getNextString(resB, &len, key, status);
828 return UnicodeString(TRUE, r, len);
845 int32_t len = 0;
846 const UChar* r = ures_getStringByIndex(resB, indexS, &len, status);
847 return UnicodeString(TRUE, r, len);
865 int32_t len = 0;
866 const UChar* r = ures_getStringByKey(resB, key, &len, status);
867 return UnicodeString(TRUE, r, len);