Lines Matching refs:iterateCodePoints
1169 class iterateCodePoints: public CppUnit::TestFixture { class
1173 CPPUNIT_TEST_SUITE(iterateCodePoints);
1178 void iterateCodePoints::testNotWellFormed() { in testNotWellFormed()
1183 CPPUNIT_ASSERT_EQUAL(sal_uInt32(0x10000), s.iterateCodePoints(&i)); in testNotWellFormed()
1185 CPPUNIT_ASSERT_EQUAL(sal_uInt32(0x0041), s.iterateCodePoints(&i)); in testNotWellFormed()
1187 CPPUNIT_ASSERT_EQUAL(sal_uInt32(0x10FFFF), s.iterateCodePoints(&i)); in testNotWellFormed()
1189 CPPUNIT_ASSERT_EQUAL(sal_uInt32(0xDDEF), s.iterateCodePoints(&i)); in testNotWellFormed()
1191 CPPUNIT_ASSERT_EQUAL(sal_uInt32(0xD9AB), s.iterateCodePoints(&i)); in testNotWellFormed()
1193 CPPUNIT_ASSERT_EQUAL(sal_uInt32(0xD9AB), s.iterateCodePoints(&i, -1)); in testNotWellFormed()
1195 CPPUNIT_ASSERT_EQUAL(sal_uInt32(0xDDEF), s.iterateCodePoints(&i, -1)); in testNotWellFormed()
1197 CPPUNIT_ASSERT_EQUAL(sal_uInt32(0x10FFFF), s.iterateCodePoints(&i, -1)); in testNotWellFormed()
1199 CPPUNIT_ASSERT_EQUAL(sal_uInt32(0x0041), s.iterateCodePoints(&i, -1)); in testNotWellFormed()
1201 CPPUNIT_ASSERT_EQUAL(sal_uInt32(0x10000), s.iterateCodePoints(&i, -1)); in testNotWellFormed()
1204 CPPUNIT_ASSERT_EQUAL(sal_uInt32(0xDC00), s.iterateCodePoints(&i, 2)); in testNotWellFormed()
1207 CPPUNIT_ASSERT_EQUAL(sal_uInt32(0x10000), s.iterateCodePoints(&i, -3)); in testNotWellFormed()
1265 rtl_OUString::iterateCodePoints, "rtl_OUString");