Lines Matching defs:testString
699 UnicodeString testString("boo.");
706 wb->setText(testString);
1162 UnicodeString testString(FALSE, testFile, len);
1192 UChar c = testString.charAt(charIdx);
1194 if (c == CH_CR && charIdx<len && testString.charAt(charIdx) == CH_LF) {
1222 if (testString.compare(charIdx-1, 6, "<word>") == 0) {
1229 if (testString.compare(charIdx-1, 6, "<char>") == 0) {
1236 if (testString.compare(charIdx-1, 6, "<line>") == 0) {
1243 if (testString.compare(charIdx-1, 6, "<sent>") == 0) {
1250 if (testString.compare(charIdx-1, 7, "<title>") == 0) {
1258 localeMatcher.reset(testString);
1268 if (testString.compare(charIdx-1, 6, "<data>") == 0) {
1297 if (testString.compare(charIdx-1, 7, "</data>") == 0) {
1323 if (testString.compare(charIdx-1, 3, UNICODE_STRING_SIMPLE("\\N{")) == 0) {
1328 int32_t nameEndIdx = testString.indexOf((UChar)0x7d/*'}'*/, charIdx);
1334 testString.extract(charIdx+2, nameLength, charNameBuf, sizeof(charNameBuf));
1363 if (testString.compare(charIdx-1, 2, "<>") == 0) {
1390 UChar32 cp = testString.char32At(charIdx);
1391 if (cp == CH_CR && charIdx<len && testString.charAt(charIdx+1) == CH_LF) {
1404 cp = testString.unescapeAt(charIdx);
1420 c = testString.charAt(charIdx);
1421 charIdx = testString.moveIndex32(charIdx, 1);
1757 UnicodeString testString;
1766 // Scan through each test case, building up the string to be broken in testString,
1781 if (testString.length()>0) {
1782 breakPositions.addElement(testString.length(), status);
1798 testString.append(c);
1811 if (testString.length() > 0 && !testCaseIsKnownIssue(testString, fileName)) {
1812 checkUnicodeTestCase(fileName, lineNumber, testString, &breakPositions, bi);
1818 testString.remove();
1830 testString.remove();
1853 const UnicodeString &testString, // Text data to be broken
1860 bi->setText(testString);