Home | History | Annotate | Download | only in common

Lines Matching full:fullname

213     /*if fullName is on the heap, we free it*/
214 if (fullName != fullNameBuffer)
216 uprv_free(fullName);
217 fullName = NULL;
226 : UObject(), fullName(fullNameBuffer), baseName(NULL)
237 : UObject(), fullName(fullNameBuffer), baseName(NULL)
247 : UObject(), fullName(fullNameBuffer), baseName(NULL)
382 : UObject(other), fullName(fullNameBuffer), baseName(NULL)
399 if(fullName != fullNameBuffer) {
400 uprv_free(fullName);
401 fullName = fullNameBuffer;
405 if(other.fullName != other.fullNameBuffer) {
406 fullName = (char *)uprv_malloc(sizeof(char)*(uprv_strlen(other.fullName)+1));
407 if (fullName == NULL) {
412 uprv_strcpy(fullName, other.fullName);
447 return (uprv_strcmp(other.fullName, fullName) == 0);
457 if(fullName != fullNameBuffer) {
458 uprv_free(fullName);
459 fullName = fullNameBuffer;
490 uloc_canonicalize(localeID, fullName, sizeof(fullNameBuffer), &err) :
491 uloc_getName(localeID, fullName, sizeof(fullNameBuffer), &err);
494 /*Go to heap for the fullName if necessary*/
495 fullName = (char *)uprv_malloc(sizeof(char)*(length + 1));
496 if(fullName == 0) {
497 fullName = fullNameBuffer;
502 uloc_canonicalize(localeID, fullName, length+1, &err) :
503 uloc_getName(localeID, fullName, length+1, &err);
513 separator = field[0] = fullName;
529 fieldLen[fieldIdx-1] = length - (int32_t)(field[fieldIdx-1] - fullName);
540 uprv_memcpy(language, fullName, fieldLen[0]);
563 variantBegin = (int32_t)(field[variantField] - fullName);
579 return ustr_hashCharsN(fullName, uprv_strlen(fullName));
585 if(fullName != fullNameBuffer) {
586 uprv_free(fullName);
587 fullName = fullNameBuffer;
653 return uloc_getISO3Language(fullName);
660 return uloc_getISO3Country(fullName);
673 return uloc_getLCID(fullName);
981 const char* variantStart = uprv_strchr(fullName, '@');
982 const char* assignment = uprv_strchr(fullName, '=');
999 return uloc_getKeywordValue(fullName, keywordName, buffer, bufLen, &status);
1005 uloc_setKeywordValue(keywordName, keywordValue, fullName, ULOC_FULLNAME_CAPACITY, &status);
1016 int32_t baseNameSize = uloc_getBaseName(fullName, baseName, ULOC_FULLNAME_CAPACITY, &status);
1022 uloc_getBaseName(fullName, baseName, baseNameSize+1, &status);
1027 // of fullName if there is no variant. It should instead be
1029 if (variantBegin == (int32_t)uprv_strlen(fullName)) {