• Home
  • Raw
  • Download

Lines Matching refs:testPtr

925     const RBBITailoringTest * testPtr;  in TestBreakIteratorTailoring()  local
926 for (testPtr = tailoringTests; testPtr->locale != NULL; ++testPtr) { in TestBreakIteratorTailoring()
928 … UBreakIterator* ubrkiter = ubrk_open(testPtr->type, testPtr->locale, testPtr->test, -1, &status); in TestBreakIteratorTailoring()
935 if (!foundError && offsindx >= testPtr->numOffsets) { in TestBreakIteratorTailoring()
937 testPtr->locale, testPtr->type, offset); in TestBreakIteratorTailoring()
939 } else if (!foundError && offset != testPtr->offsFwd[offsindx]) { in TestBreakIteratorTailoring()
941 testPtr->locale, testPtr->type, testPtr->offsFwd[offsindx], offset); in TestBreakIteratorTailoring()
945 if (!foundError && offsindx < testPtr->numOffsets) { in TestBreakIteratorTailoring()
947 testPtr->locale, testPtr->type, testPtr->offsFwd[offsindx]); in TestBreakIteratorTailoring()
952 if (!foundError && offsindx >= testPtr->numOffsets) { in TestBreakIteratorTailoring()
954 testPtr->locale, testPtr->type, offset); in TestBreakIteratorTailoring()
956 } else if (!foundError && offset != testPtr->offsRev[offsindx]) { in TestBreakIteratorTailoring()
958 testPtr->locale, testPtr->type, testPtr->offsRev[offsindx], offset); in TestBreakIteratorTailoring()
962 if (!foundError && offsindx < testPtr->numOffsets) { in TestBreakIteratorTailoring()
964 testPtr->locale, testPtr->type, testPtr->offsRev[offsindx]); in TestBreakIteratorTailoring()
969 …atus, "FAIL: locale %s, break type %d, ubrk_open status: %s\n", testPtr->locale, testPtr->type, u_… in TestBreakIteratorTailoring()