Home | History | Annotate | Download | only in i18n

Lines Matching refs:nameLength

41 zrule_getName(ZRule* rule, UChar* name, int32_t nameLength) {
42 UnicodeString s(nameLength==-1, name, nameLength);
44 nameLength = s.length();
45 memcpy(name, s.getBuffer(), nameLength);
69 izrule_open(const UChar* name, int32_t nameLength, int32_t rawOffset, int32_t dstSavings) {
70 UnicodeString s(nameLength==-1, name, nameLength);
90 izrule_getName(IZRule* rule, UChar* & name, int32_t & nameLength) {
91 // UnicodeString s(nameLength==-1, name, nameLength);
94 nameLength = s.length();
95 name = (UChar*)uprv_malloc(nameLength);
96 memcpy(name, s.getBuffer(), nameLength);