Lines Matching refs:mPropName
4419 UnicodeString mPropName = propName; in createSetForProperty() local
4420 if (mPropName.startsWith(u"In", 2) && mPropName.length() >= 3) { in createSetForProperty()
4426 UnicodeString blockName(mPropName, 2); // Property with the leading "In" removed. in createSetForProperty()
4436 mPropName.remove(0, 2); // Strip the "Is" in createSetForProperty()
4437 if (mPropName.indexOf(u'=') >= 0) { in createSetForProperty()
4444 if (mPropName.caseCompare(u"assigned", -1, 0) == 0) { in createSetForProperty()
4445 mPropName.setTo(u"unassigned", -1); in createSetForProperty()
4447 } else if (mPropName.caseCompare(u"TitleCase", -1, 0) == 0) { in createSetForProperty()
4448 mPropName.setTo(u"Titlecase_Letter", -1); in createSetForProperty()
4451 mPropName.insert(0, u"[\\p{", -1); in createSetForProperty()
4452 mPropName.append(u"}]", -1); in createSetForProperty()
4453 set.adoptInsteadAndCheckErrorCode(new UnicodeSet(mPropName, *fStatus), status); in createSetForProperty()