• Home
  • Raw
  • Download

Lines Matching refs:test1

199     CharacterIterator* test1 = new StringCharacterIterator(testText);  in TestConstructionAndEquality()  local
207 CharacterIterator* test5 = test1->clone(); in TestConstructionAndEquality()
216 if (*test1 == *test2 || *test1 == *test3 || *test1 == *test4) in TestConstructionAndEquality()
218 if (*test1 != *test5) in TestConstructionAndEquality()
221 if (test1->hashCode() == test2->hashCode() || test1->hashCode() == test3->hashCode() in TestConstructionAndEquality()
222 || test1->hashCode() == test4->hashCode()) in TestConstructionAndEquality()
225 if (test1->hashCode() != test5->hashCode()) in TestConstructionAndEquality()
228 if(test1->getLength() != testText.length()){ in TestConstructionAndEquality()
231 test1->getText(result1); in TestConstructionAndEquality()
238 test1->setIndex(5); in TestConstructionAndEquality()
239 if (*test1 != *test2 || *test1 == *test5) in TestConstructionAndEquality()
242 *((StringCharacterIterator*)test1) = *((StringCharacterIterator*)test3); in TestConstructionAndEquality()
243 if (*test1 != *test3 || *test1 == *test5) in TestConstructionAndEquality()
258 StringCharacterIterator* testChar3=(StringCharacterIterator*)test1->clone(); in TestConstructionAndEquality()
277 delete test1; in TestConstructionAndEquality()
289 UCharCharacterIterator* test1 = new UCharCharacterIterator(testText, u_strlen(testText)); in TestConstructionAndEqualityUChariter() local
293 UCharCharacterIterator* test5 = (UCharCharacterIterator*)test1->clone(); in TestConstructionAndEqualityUChariter()
294 UCharCharacterIterator* test6 = new UCharCharacterIterator(*test1); in TestConstructionAndEqualityUChariter()
313 if (*test1 == *test2 || *test1 == *test3 || *test1 == *test4 ) in TestConstructionAndEqualityUChariter()
315 if (*test1 != *test5 ) in TestConstructionAndEqualityUChariter()
318 if (*test6 != *test1 ) in TestConstructionAndEqualityUChariter()
321 if (test1->hashCode() == test2->hashCode() || test1->hashCode() == test3->hashCode() in TestConstructionAndEqualityUChariter()
322 || test1->hashCode() == test4->hashCode()) in TestConstructionAndEqualityUChariter()
325 if (test1->hashCode() != test5->hashCode()) in TestConstructionAndEqualityUChariter()
335 test1->getText(result); in TestConstructionAndEqualityUChariter()
350 test1->setIndex(5); in TestConstructionAndEqualityUChariter()
351 if (*test1 != *test2 || *test1 == *test5) in TestConstructionAndEqualityUChariter()
357 *test1 = *test3; in TestConstructionAndEqualityUChariter()
358 if (*test1 != *test3 || *test1 == *test5) in TestConstructionAndEqualityUChariter()
361 delete test1; in TestConstructionAndEqualityUChariter()