Home | History | Annotate | Download | only in cintltst

Lines Matching full:testptr

777     const RBBITailoringTest * testPtr;
778 for (testPtr = tailoringTests; testPtr->locale != NULL; ++testPtr) {
780 UBreakIterator* ubrkiter = ubrk_open(testPtr->type, testPtr->locale, testPtr->test, -1, &status);
787 if (!foundError && offsindx >= testPtr->numOffsets) {
789 testPtr->locale, testPtr->type, offset);
791 } else if (!foundError && offset != testPtr->offsFwd[offsindx]) {
793 testPtr->locale, testPtr->type, testPtr->offsFwd[offsindx], offset);
797 if (!foundError && offsindx < testPtr->numOffsets) {
799 testPtr->locale, testPtr->type, testPtr->offsFwd[offsindx]);
804 if (!foundError && offsindx >= testPtr->numOffsets) {
806 testPtr->locale, testPtr->type, offset);
808 } else if (!foundError && offset != testPtr->offsRev[offsindx]) {
810 testPtr->locale, testPtr->type, testPtr->offsRev[offsindx], offset);
814 if (!foundError && offsindx < testPtr->numOffsets) {
816 testPtr->locale, testPtr->type, testPtr->offsRev[offsindx]);
821 log_err_status(status, "FAIL: locale %s, break type %d, ubrk_open status: %s\n", testPtr->locale, testPtr->type, u_errorName(status));