Home | History | Annotate | Download | only in intltest

Lines Matching refs:thawed

2188         errln("FAIL: copy-constructing a frozen set results in a thawed one");
2196 errln("FAIL: copying a frozen set results in a thawed one");
2209 UnicodeSet *thawed=(UnicodeSet *)frozen.cloneAsThawed();
2210 if(thawed->isFrozen() || *thawed!=frozen || thawed->containsSome(0xd802, 0xd805)) {
2213 thawed->add(0xd802, 0xd805);
2214 if(!thawed->contains(0xd802, 0xd805)) {
2215 errln("FAIL: unable to modify thawed clone");
2217 delete thawed;