Home | History | Annotate | Download | only in intltest

Lines Matching full:test1

200     CharacterIterator* test1 = new StringCharacterIterator(testText);
208 CharacterIterator* test5 = test1->clone();
217 if (*test1 == *test2 || *test1 == *test3 || *test1 == *test4)
219 if (*test1 != *test5)
222 if (test1->hashCode() == test2->hashCode() || test1->hashCode() == test3->hashCode()
223 || test1->hashCode() == test4->hashCode())
226 if (test1->hashCode() != test5->hashCode())
229 if(test1->getLength() != testText.length()){
232 test1->getText(result1);
239 test1->setIndex(5);
240 if (*test1 != *test2 || *test1 == *test5)
243 *((StringCharacterIterator*)test1) = *((StringCharacterIterator*)test3);
244 if (*test1 != *test3 || *test1 == *test5)
259 StringCharacterIterator* testChar3=(StringCharacterIterator*)test1->clone();
278 delete test1;
290 UCharCharacterIterator* test1 = new UCharCharacterIterator(testText, u_strlen(testText));
294 UCharCharacterIterator* test5 = (UCharCharacterIterator*)test1->clone();
295 UCharCharacterIterator* test6 = new UCharCharacterIterator(*test1);
314 if (*test1 == *test2 || *test1 == *test3 || *test1 == *test4 )
316 if (*test1 != *test5 )
319 if (*test6 != *test1 )
322 if (test1->hashCode() == test2->hashCode() || test1->hashCode() == test3->hashCode()
323 || test1->hashCode() == test4->hashCode())
326 if (test1->hashCode() != test5->hashCode())
336 test1->getText(result);
351 test1->setIndex(5);
352 if (*test1 != *test2 || *test1 == *test5)
358 *test1 = *test3;
359 if (*test1 != *test3 || *test1 == *test5)
362 delete test1;