Lines Matching full:copy
32 // test copy constructor
33 Normalizer copy(norm);
34 if(copy.next()!=0xac00) {
39 Normalizer *clone=copy.clone();
40 if(*clone!=copy) {
41 errln("error in Normalizer(Normalizer(CharacterIterator)).clone()!=copy");
44 if(clone->hashCode()!=copy.hashCode()) {
45 errln("error in Normalizer(Normalizer(CharacterIterator)).clone()->hashCode()!=copy.hashCode()");
51 if(clone->hashCode()==copy.hashCode()) {
52 errln("error in Normalizer(Normalizer(CharacterIterator)).clone()->next().hashCode()==copy.hashCode()");
83 copy.setText(iter, errorCode);
87 copy.getText(out);
90 copy.startIndex()!=iter.startIndex() ||
91 copy.endIndex()!=iter.endIndex()
99 copy.setText(s.getBuffer()+1, s.length()-1, errorCode);
100 copy.setMode(UNORM_NFD);
101 if(copy.getUMode()!=UNORM_NFD) {
104 if(copy.next()!=0x308 || copy.next()!=0x1100) {
115 copy.setText(s.getBuffer()+1, -1, errorCode);
116 if(copy.endIndex()!=s.length()-1) {
121 copy.setOption(0xaa0000, TRUE);
122 copy.setOption(0x20000, FALSE);
123 if(!copy.getOption(0x880000) || copy.getOption(0x20000)) {
129 copy.setText(UnicodeString(1000, (UChar32)0x308, 1000), errorCode);
130 if(copy.last()!=0x308) {