Lines Matching full:testptr
783 const RBBITailoringTest * testPtr;
784 for (testPtr = tailoringTests; testPtr->locale != NULL; ++testPtr) {
786 UBreakIterator* ubrkiter = ubrk_open(testPtr->type, testPtr->locale, testPtr->test, -1, &status);
793 if (!foundError && offsindx >= testPtr->numOffsets) {
795 testPtr->locale, testPtr->type, offset);
797 } else if (!foundError && offset != testPtr->offsFwd[offsindx]) {
799 testPtr->locale, testPtr->type, testPtr->offsFwd[offsindx], offset);
803 if (!foundError && offsindx < testPtr->numOffsets) {
805 testPtr->locale, testPtr->type, testPtr->offsFwd[offsindx]);
810 if (!foundError && offsindx >= testPtr->numOffsets) {
812 testPtr->locale, testPtr->type, offset);
814 } else if (!foundError && offset != testPtr->offsRev[offsindx]) {
816 testPtr->locale, testPtr->type, testPtr->offsRev[offsindx], offset);
820 if (!foundError && offsindx < testPtr->numOffsets) {
822 testPtr->locale, testPtr->type, testPtr->offsRev[offsindx]);
827 log_err_status(status, "FAIL: locale %s, break type %d, ubrk_open status: %s\n", testPtr->locale, testPtr->type, u_errorName(status));