Lines Matching refs:testText
4041 UnicodeString testText; in RunMonkey() local
4091 testText.truncate(0); in RunMonkey()
4103 …if (U16_IS_TRAIL(c) && testText.length() > 0 && U16_IS_LEAD(testText.charAt(testText.length()-1)))… in RunMonkey()
4107 testText.append(c); in RunMonkey()
4111 mk.setText(testText); in RunMonkey()
4122 if (breakPos > testText.length()) { in RunMonkey()
4126 U_ASSERT(expectedCount<testText.length()); in RunMonkey()
4133 UText *testUText = utext_openReplaceable(NULL, &testText, &status); in RunMonkey()
4141 bi->setText(testText); in RunMonkey()
4145 if (i < 0 || i > testText.length()) { in RunMonkey()
4155 if (i < 0 || i > testText.length()) { in RunMonkey()
4164 U_ASSERT((int32_t)sizeof(isBoundaryBreaks) > testText.length()); in RunMonkey()
4165 for (i=0; i<=testText.length(); i++) { in RunMonkey()
4175 for (i=0; i<testText.length(); i++) { in RunMonkey()
4179 breakPos > testText.length() || in RunMonkey()
4193 lastBreakPos = testText.length(); in RunMonkey()
4194 precedingBreaks[testText.length()] = 1; in RunMonkey()
4195 for (i=testText.length(); i>0; i--) { in RunMonkey()
4199 (breakPos < 0 && testText.getChar32Start(i)>0) || in RunMonkey()
4200 (breakPos < lastBreakPos && lastBreakPos < testText.getChar32Start(i)) ) { in RunMonkey()
4217 for (i=0; i<=testText.length(); i++) { in RunMonkey()
4260 if (endContext >= testText.length()) {break;} in RunMonkey()
4282 for (ci=startContext; (ci = testText.moveIndex32(ci, 1));) { in RunMonkey()
4284 c = testText.char32At(ci); in RunMonkey()