Lines Matching refs:thawed
2241 errln("FAIL: copy-constructing a frozen set results in a thawed one");
2249 errln("FAIL: copying a frozen set results in a thawed one");
2262 UnicodeSet *thawed=(UnicodeSet *)frozen.cloneAsThawed();
2263 if(thawed->isFrozen() || *thawed!=frozen || thawed->containsSome(0xd802, 0xd805)) {
2266 thawed->add(0xd802, 0xd805);
2267 if(!thawed->contains(0xd802, 0xd805)) {
2268 errln("FAIL: unable to modify thawed clone");
2270 delete thawed;