Lines Matching refs:ownedSettings

457     CollationSettings *ownedSettings = SharedObject::copyOnWrite(settings);  in setAttribute()  local
458 if(ownedSettings == NULL) { in setAttribute()
465 ownedSettings->setFlag(CollationSettings::BACKWARD_SECONDARY, value, in setAttribute()
469 ownedSettings->setAlternateHandling(value, defaultSettings.options, errorCode); in setAttribute()
472 ownedSettings->setCaseFirst(value, defaultSettings.options, errorCode); in setAttribute()
475 ownedSettings->setFlag(CollationSettings::CASE_LEVEL, value, in setAttribute()
479 ownedSettings->setFlag(CollationSettings::CHECK_FCD, value, in setAttribute()
483 ownedSettings->setStrength(value, defaultSettings.options, errorCode); in setAttribute()
492ownedSettings->setFlag(CollationSettings::NUMERIC, value, defaultSettings.options, errorCode); in setAttribute()
499 setFastLatinOptions(*ownedSettings); in setAttribute()
532 CollationSettings *ownedSettings = SharedObject::copyOnWrite(settings); in setMaxVariable() local
533 if(ownedSettings == NULL) { in setMaxVariable()
543 ownedSettings->setMaxVariable(value, defaultSettings.options, errorCode); in setMaxVariable()
545 ownedSettings->variableTop = varTop; in setMaxVariable()
546 setFastLatinOptions(*ownedSettings); in setMaxVariable()
616 CollationSettings *ownedSettings = SharedObject::copyOnWrite(settings); in setVariableTop() local
617 if(ownedSettings == NULL) { in setVariableTop()
621 ownedSettings->setMaxVariable(group - UCOL_REORDER_CODE_FIRST, in setVariableTop()
624 ownedSettings->variableTop = varTop; in setVariableTop()
625 setFastLatinOptions(*ownedSettings); in setVariableTop()
671 CollationSettings *ownedSettings = SharedObject::copyOnWrite(settings); in setReorderCodes() local
672 if(ownedSettings == NULL) { in setReorderCodes()
676 ownedSettings->copyReorderingFrom(defaultSettings, errorCode); in setReorderCodes()
677 setFastLatinOptions(*ownedSettings); in setReorderCodes()
681 CollationSettings *ownedSettings = SharedObject::copyOnWrite(settings); in setReorderCodes() local
682 if(ownedSettings == NULL) { in setReorderCodes()
686 ownedSettings->setReordering(*data, reorderCodes, length, errorCode); in setReorderCodes()
687 setFastLatinOptions(*ownedSettings); in setReorderCodes()
691 RuleBasedCollator::setFastLatinOptions(CollationSettings &ownedSettings) const { in setFastLatinOptions()
692 ownedSettings.fastLatinOptions = CollationFastLatin::getOptions( in setFastLatinOptions()
693 data, ownedSettings, in setFastLatinOptions()
694 ownedSettings.fastLatinPrimaries, UPRV_LENGTHOF(ownedSettings.fastLatinPrimaries)); in setFastLatinOptions()