Lines Matching refs:copy
33 // test copy constructor
34 Normalizer copy(norm);
35 if(copy.next()!=0xac00) {
40 Normalizer *clone=copy.clone();
41 if(*clone!=copy) {
42 errln("error in Normalizer(Normalizer(CharacterIterator)).clone()!=copy");
45 if(clone->hashCode()!=copy.hashCode()) {
46 errln("error in Normalizer(Normalizer(CharacterIterator)).clone()->hashCode()!=copy.hashCode()");
52 if(clone->hashCode()==copy.hashCode()) {
53 errln("error in Normalizer(Normalizer(CharacterIterator)).clone()->next().hashCode()==copy.hashCode()");
84 copy.setText(iter, errorCode);
88 copy.getText(out);
91 copy.startIndex()!=iter.startIndex() ||
92 copy.endIndex()!=iter.endIndex()
100 copy.setText(s.getBuffer()+1, s.length()-1, errorCode);
101 copy.setMode(UNORM_NFD);
102 if(copy.getUMode()!=UNORM_NFD) {
105 if(copy.next()!=0x308 || copy.next()!=0x1100) {
116 copy.setText(s.getBuffer()+1, -1, errorCode);
117 if(copy.endIndex()!=s.length()-1) {
122 copy.setOption(0xaa0000, TRUE);
123 copy.setOption(0x20000, FALSE);
124 if(!copy.getOption(0x880000) || copy.getOption(0x20000)) {
130 copy.setText(UnicodeString(1000, (UChar32)0x308, 1000), errorCode);
131 if(copy.last()!=0x308) {