Home | History | Annotate | Download | only in intltest

Lines Matching full:teststring

749     UnicodeString testString("boo.");
756 wb->setText(testString);
1212 UnicodeString testString(FALSE, testFile, len);
1242 UChar c = testString.charAt(charIdx);
1244 if (c == CH_CR && charIdx<len && testString.charAt(charIdx) == CH_LF) {
1272 if (testString.compare(charIdx-1, 6, "<word>") == 0) {
1279 if (testString.compare(charIdx-1, 6, "<char>") == 0) {
1286 if (testString.compare(charIdx-1, 6, "<line>") == 0) {
1293 if (testString.compare(charIdx-1, 6, "<sent>") == 0) {
1300 if (testString.compare(charIdx-1, 7, "<title>") == 0) {
1308 localeMatcher.reset(testString);
1318 if (testString.compare(charIdx-1, 6, "<data>") == 0) {
1347 if (testString.compare(charIdx-1, 7, "</data>") == 0) {
1373 if (testString.compare(charIdx-1, 3, UNICODE_STRING_SIMPLE("\\N{")) == 0) {
1378 int32_t nameEndIdx = testString.indexOf((UChar)0x7d/*'}'*/, charIdx);
1384 testString.extract(charIdx+2, nameLength, charNameBuf, sizeof(charNameBuf));
1413 if (testString.compare(charIdx-1, 2, "<>") == 0) {
1440 UChar32 cp = testString.char32At(charIdx);
1441 if (cp == CH_CR && charIdx<len && testString.charAt(charIdx+1) == CH_LF) {
1454 cp = testString.unescapeAt(charIdx);
1470 c = testString.charAt(charIdx);
1471 charIdx = testString.moveIndex32(charIdx, 1);
1807 UnicodeString testString;
1816 // Scan through each test case, building up the string to be broken in testString,
1831 if (testString.length()>0) {
1832 breakPositions.addElement(testString.length(), status);
1848 testString.append(c);
1861 if (testString.length() > 0 && !testCaseIsKnownIssue(testString, fileName)) {
1862 checkUnicodeTestCase(fileName, lineNumber, testString, &breakPositions, bi);
1868 testString.remove();
1880 testString.remove();
1903 const UnicodeString &testString, // Text data to be broken
1910 bi->setText(testString);