Home | History | Annotate | Download | only in intltest

Lines Matching refs:testMat

4212         RegexMatcher *testMat = testPat->matcher(matchString, status);
4213 UBool found = testMat->find();
4227 delete testMat;
4254 resultString.append(testMat->group(status));
4266 matchPosition = testMat->end(groupNum, status);
4268 matchPosition = testMat->start(groupNum, status);
4282 resultString.append(testMat->group(groupNum, status));
4290 for (i=0; i<=testMat->groupCount(); i++) {
4294 ICU_Utility::appendNumber(resultString, testMat->start(i, status));
4301 for (i=0; i<=testMat->groupCount(); i++) {
4305 ICU_Utility::appendNumber(resultString, testMat->end(i, status));
4352 delete testMat;
4607 RegexMatcher *testMat = &testPat->matcher(status)->reset(&inputText);
4608 UBool found = testMat->find();
4622 delete testMat;
4642 resultString.append(testMat->group(status));
4654 matchPosition = testMat->end(groupNum, status);
4656 matchPosition = testMat->start(groupNum, status);
4670 resultString.append(testMat->group(groupNum, status));
4678 for (i=0; i<=testMat->groupCount(); i++) {
4682 ICU_Utility::appendNumber(resultString, testMat->start(i, status));
4689 for (i=0; i<=testMat->groupCount(); i++) {
4693 ICU_Utility::appendNumber(resultString, testMat->end(i, status));
4740 delete testMat;