Lines Matching refs:baseName

259     if (baseName != fullName) {  in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
260 uprv_free(baseName); in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
262 baseName = NULL; in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
272 : UObject(), fullName(fullNameBuffer), baseName(NULL) in Locale()
283 : UObject(), fullName(fullNameBuffer), baseName(NULL) in Locale()
293 : UObject(), fullName(fullNameBuffer), baseName(NULL) in Locale()
427 : UObject(other), fullName(fullNameBuffer), baseName(NULL) in Locale()
433 : UObject(other), fullName(fullNameBuffer), baseName(fullName) { in Locale()
453 if (other.baseName == other.fullName) { in operator =()
454 baseName = fullName; in operator =()
455 } else if (other.baseName != nullptr) { in operator =()
456 baseName = uprv_strdup(other.baseName); in operator =()
457 if (baseName == nullptr) return *this; in operator =()
471 if (baseName != fullName) uprv_free(baseName); in operator =()
481 if (other.baseName == other.fullName) { in operator =()
482 baseName = fullName; in operator =()
484 baseName = other.baseName; in operator =()
494 other.baseName = other.fullName = other.fullNameBuffer; in operator =()
517 if (baseName != fullName) { in init()
518 uprv_free(baseName); in init()
520 baseName = NULL; in init()
652 U_ASSERT(baseName==NULL || baseName==fullName); in initBaseName()
658 baseName = (char *)uprv_malloc(baseNameLength + 1); in initBaseName()
659 if (baseName == NULL) { in initBaseName()
663 uprv_strncpy(baseName, fullName, baseNameLength); in initBaseName()
664 baseName[baseNameLength] = 0; in initBaseName()
673 baseName = fullName; in initBaseName()
687 if(baseName != fullName) { in setToBogus()
688 uprv_free(baseName); in setToBogus()
690 baseName = NULL; in setToBogus()
1504 if (U_SUCCESS(status) && baseName == fullName) { in setKeywordValue()
1552 return baseName; in getBaseName()