Lines Matching refs:skipSets
1345 initExpectedSkippables(UnicodeSet skipSets[UNORM_MODE_COUNT], UErrorCode &errorCode) { in initExpectedSkippables()
1346 skipSets[UNORM_NFD].applyPattern( in initExpectedSkippables()
1348 skipSets[UNORM_NFC].applyPattern( in initExpectedSkippables()
1350 skipSets[UNORM_NFKD].applyPattern( in initExpectedSkippables()
1352 skipSets[UNORM_NFKC].applyPattern( in initExpectedSkippables()
1372 …LocalPointer<UnicodeSet> unsure(&((UnicodeSet *)(skipSets[UNORM_NFC].clone()))->removeAll(notInter… in initExpectedSkippables()
1394 skipSets[UNORM_NFC].remove(c); in initExpectedSkippables()
1395 skipSets[UNORM_NFKC].remove(c); in initExpectedSkippables()
1411 UnicodeSet diff, skipSets[UNORM_MODE_COUNT], expectSets[UNORM_MODE_COUNT]; in TestSkippable() local
1416 skipSets[UNORM_NFD].applyPattern(UNICODE_STRING_SIMPLE("[:NFD_Inert:]"), errorCode); in TestSkippable()
1417 skipSets[UNORM_NFKD].applyPattern(UNICODE_STRING_SIMPLE("[:NFKD_Inert:]"), errorCode); in TestSkippable()
1418 skipSets[UNORM_NFC].applyPattern(UNICODE_STRING_SIMPLE("[:NFC_Inert:]"), errorCode); in TestSkippable()
1419 skipSets[UNORM_NFKC].applyPattern(UNICODE_STRING_SIMPLE("[:NFKC_Inert:]"), errorCode); in TestSkippable()
1429 if(skipSets[i]!=expectSets[i]) { in TestSkippable()
1439 (diff=skipSets[i]).removeAll(expectSets[i]).toPattern(pattern, TRUE); in TestSkippable()
1444 (diff=expectSets[i]).removeAll(skipSets[i]).toPattern(pattern, TRUE); in TestSkippable()