Lines Matching refs:skipSets
1319 initExpectedSkippables(UnicodeSet skipSets[UNORM_MODE_COUNT], UErrorCode &errorCode) { in initExpectedSkippables()
1320 skipSets[UNORM_NFD].applyPattern( in initExpectedSkippables()
1322 skipSets[UNORM_NFC].applyPattern( in initExpectedSkippables()
1324 skipSets[UNORM_NFKD].applyPattern( in initExpectedSkippables()
1326 skipSets[UNORM_NFKC].applyPattern( in initExpectedSkippables()
1346 …LocalPointer<UnicodeSet> unsure(&((UnicodeSet *)(skipSets[UNORM_NFC].clone()))->removeAll(notInter… in initExpectedSkippables()
1368 skipSets[UNORM_NFC].remove(c); in initExpectedSkippables()
1369 skipSets[UNORM_NFKC].remove(c); in initExpectedSkippables()
1381 UnicodeSet diff, skipSets[UNORM_MODE_COUNT], expectSets[UNORM_MODE_COUNT]; in TestSkippable() local
1386 skipSets[UNORM_NFD].applyPattern(UNICODE_STRING_SIMPLE("[:NFD_Inert:]"), errorCode); in TestSkippable()
1387 skipSets[UNORM_NFKD].applyPattern(UNICODE_STRING_SIMPLE("[:NFKD_Inert:]"), errorCode); in TestSkippable()
1388 skipSets[UNORM_NFC].applyPattern(UNICODE_STRING_SIMPLE("[:NFC_Inert:]"), errorCode); in TestSkippable()
1389 skipSets[UNORM_NFKC].applyPattern(UNICODE_STRING_SIMPLE("[:NFKC_Inert:]"), errorCode); in TestSkippable()
1399 if(skipSets[i]!=expectSets[i]) { in TestSkippable()
1408 (diff=skipSets[i]).removeAll(expectSets[i]).toPattern(pattern, TRUE); in TestSkippable()
1413 (diff=expectSets[i]).removeAll(skipSets[i]).toPattern(pattern, TRUE); in TestSkippable()