Lines Matching refs:UCharCharacterIterator
291 UCharCharacterIterator* test1 = new UCharCharacterIterator(testText, u_strlen(testText)); in TestConstructionAndEqualityUChariter()
292 UCharCharacterIterator* test2 = new UCharCharacterIterator(testText, u_strlen(testText), 5); in TestConstructionAndEqualityUChariter()
293 …UCharCharacterIterator* test3 = new UCharCharacterIterator(testText, u_strlen(testText), 2, 20, 5); in TestConstructionAndEqualityUChariter()
294 UCharCharacterIterator* test4 = new UCharCharacterIterator(testText2, u_strlen(testText2)); in TestConstructionAndEqualityUChariter()
295 UCharCharacterIterator* test5 = (UCharCharacterIterator*)test1->clone(); in TestConstructionAndEqualityUChariter()
296 UCharCharacterIterator* test6 = new UCharCharacterIterator(*test1); in TestConstructionAndEqualityUChariter()
299 UCharCharacterIterator* test7a = new UCharCharacterIterator(testText, -1); in TestConstructionAndEqualityUChariter()
300 UCharCharacterIterator* test7b = new UCharCharacterIterator(testText, -1); in TestConstructionAndEqualityUChariter()
301 UCharCharacterIterator* test7c = new UCharCharacterIterator(testText, -1, 2, 20, 5); in TestConstructionAndEqualityUChariter()
304 UCharCharacterIterator* test8a = new UCharCharacterIterator(testText, -1, -1, 20, 5); in TestConstructionAndEqualityUChariter()
305 UCharCharacterIterator* test8b = new UCharCharacterIterator(testText, -1, 2, 100, 5); in TestConstructionAndEqualityUChariter()
306 UCharCharacterIterator* test8c = new UCharCharacterIterator(testText, -1, 2, 20, 100); in TestConstructionAndEqualityUChariter()
1148 class SubUCharCharIter : public UCharCharacterIterator {