Home | History | Annotate | Download | only in common

Lines Matching full:fullname

274     /*if fullName is on the heap, we free it*/
275 if (fullName != fullNameBuffer)
277 uprv_free(fullName);
278 fullName = NULL;
287 : UObject(), fullName(fullNameBuffer), baseName(NULL)
298 : UObject(), fullName(fullNameBuffer), baseName(NULL)
308 : UObject(), fullName(fullNameBuffer), baseName(NULL)
443 : UObject(other), fullName(fullNameBuffer), baseName(NULL)
460 if(fullName != fullNameBuffer) {
461 uprv_free(fullName);
462 fullName = fullNameBuffer;
466 if(other.fullName != other.fullNameBuffer) {
467 fullName = (char *)uprv_malloc(sizeof(char)*(uprv_strlen(other.fullName)+1));
468 if (fullName == NULL) {
473 uprv_strcpy(fullName, other.fullName);
508 return (uprv_strcmp(other.fullName, fullName) == 0);
516 if(fullName != fullNameBuffer) {
517 uprv_free(fullName);
518 fullName = fullNameBuffer;
549 uloc_canonicalize(localeID, fullName, sizeof(fullNameBuffer), &err) :
550 uloc_getName(localeID, fullName, sizeof(fullNameBuffer), &err);
553 /*Go to heap for the fullName if necessary*/
554 fullName = (char *)uprv_malloc(sizeof(char)*(length + 1));
555 if(fullName == 0) {
556 fullName = fullNameBuffer;
561 uloc_canonicalize(localeID, fullName, length+1, &err) :
562 uloc_getName(localeID, fullName, length+1, &err);
572 separator = field[0] = fullName;
588 fieldLen[fieldIdx-1] = length - (int32_t)(field[fieldIdx-1] - fullName);
601 uprv_memcpy(language, fullName, fieldLen[0]);
622 variantBegin = (int32_t)(field[variantField] - fullName);
639 hashKey.pointer = fullName;
646 if(fullName != fullNameBuffer) {
647 uprv_free(fullName);
648 fullName = fullNameBuffer;
719 return uloc_getISO3Language(fullName);
726 return uloc_getISO3Country(fullName);
739 return uloc_getLCID(fullName);
1045 const char* variantStart = uprv_strchr(fullName, '@');
1046 const char* assignment = uprv_strchr(fullName, '=');
1063 return uloc_getKeywordValue(fullName, keywordName, buffer, bufLen, &status);
1069 uloc_setKeywordValue(keywordName, keywordValue, fullName, ULOC_FULLNAME_CAPACITY, &status);
1080 int32_t baseNameSize = uloc_getBaseName(fullName, baseName, ULOC_FULLNAME_CAPACITY, &status);
1086 uloc_getBaseName(fullName, baseName, baseNameSize+1, &status);
1091 // of fullName if there is no variant. It should instead be
1093 if (variantBegin == (int32_t)uprv_strlen(fullName)) {