Home | History | Annotate | Download | only in intltest

Lines Matching full:test1

197     CharacterIterator* test1 = new StringCharacterIterator(testText);
205 CharacterIterator* test5 = test1->clone();
214 if (*test1 == *test2 || *test1 == *test3 || *test1 == *test4)
216 if (*test1 != *test5)
219 if (test1->hashCode() == test2->hashCode() || test1->hashCode() == test3->hashCode()
220 || test1->hashCode() == test4->hashCode())
223 if (test1->hashCode() != test5->hashCode())
226 if(test1->getLength() != testText.length()){
229 test1->getText(result1);
236 test1->setIndex(5);
237 if (*test1 != *test2 || *test1 == *test5)
240 *((StringCharacterIterator*)test1) = *((StringCharacterIterator*)test3);
241 if (*test1 != *test3 || *test1 == *test5)
256 StringCharacterIterator* testChar3=(StringCharacterIterator*)test1->clone();
275 delete test1;
287 UCharCharacterIterator* test1 = new UCharCharacterIterator(testText, u_strlen(testText));
291 UCharCharacterIterator* test5 = (UCharCharacterIterator*)test1->clone();
292 UCharCharacterIterator* test6 = new UCharCharacterIterator(*test1);
311 if (*test1 == *test2 || *test1 == *test3 || *test1 == *test4 )
313 if (*test1 != *test5 )
316 if (*test6 != *test1 )
319 if (test1->hashCode() == test2->hashCode() || test1->hashCode() == test3->hashCode()
320 || test1->hashCode() == test4->hashCode())
323 if (test1->hashCode() != test5->hashCode())
333 test1->getText(result);
348 test1->setIndex(5);
349 if (*test1 != *test2 || *test1 == *test5)
355 *test1 = *test3;
356 if (*test1 != *test3 || *test1 == *test5)
359 delete test1;