Lines Matching refs:skipSets
1316 initExpectedSkippables(UnicodeSet skipSets[UNORM_MODE_COUNT], UErrorCode &errorCode) { in initExpectedSkippables()
1317 skipSets[UNORM_NFD].applyPattern( in initExpectedSkippables()
1319 skipSets[UNORM_NFC].applyPattern( in initExpectedSkippables()
1321 skipSets[UNORM_NFKD].applyPattern( in initExpectedSkippables()
1323 skipSets[UNORM_NFKC].applyPattern( in initExpectedSkippables()
1343 …LocalPointer<UnicodeSet> unsure(&((UnicodeSet *)(skipSets[UNORM_NFC].clone()))->removeAll(notInter… in initExpectedSkippables()
1365 skipSets[UNORM_NFC].remove(c); in initExpectedSkippables()
1366 skipSets[UNORM_NFKC].remove(c); in initExpectedSkippables()
1378 UnicodeSet diff, skipSets[UNORM_MODE_COUNT], expectSets[UNORM_MODE_COUNT]; in TestSkippable() local
1383 skipSets[UNORM_NFD].applyPattern(UNICODE_STRING_SIMPLE("[:NFD_Inert:]"), errorCode); in TestSkippable()
1384 skipSets[UNORM_NFKD].applyPattern(UNICODE_STRING_SIMPLE("[:NFKD_Inert:]"), errorCode); in TestSkippable()
1385 skipSets[UNORM_NFC].applyPattern(UNICODE_STRING_SIMPLE("[:NFC_Inert:]"), errorCode); in TestSkippable()
1386 skipSets[UNORM_NFKC].applyPattern(UNICODE_STRING_SIMPLE("[:NFKC_Inert:]"), errorCode); in TestSkippable()
1396 if(skipSets[i]!=expectSets[i]) { in TestSkippable()
1405 (diff=skipSets[i]).removeAll(expectSets[i]).toPattern(pattern, TRUE); in TestSkippable()
1410 (diff=expectSets[i]).removeAll(skipSets[i]).toPattern(pattern, TRUE); in TestSkippable()