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