• Home
  • Raw
  • Download

Lines Matching refs:testPtr

832     const RBBITailoringTest * testPtr;  in TestBreakIteratorTailoring()  local
833 for (testPtr = tailoringTests; testPtr->locale != NULL; ++testPtr) { in TestBreakIteratorTailoring()
835 … UBreakIterator* ubrkiter = ubrk_open(testPtr->type, testPtr->locale, testPtr->test, -1, &status); in TestBreakIteratorTailoring()
842 if (!foundError && offsindx >= testPtr->numOffsets) { in TestBreakIteratorTailoring()
844 testPtr->locale, testPtr->type, offset); in TestBreakIteratorTailoring()
846 } else if (!foundError && offset != testPtr->offsFwd[offsindx]) { in TestBreakIteratorTailoring()
848 testPtr->locale, testPtr->type, testPtr->offsFwd[offsindx], offset); in TestBreakIteratorTailoring()
852 if (!foundError && offsindx < testPtr->numOffsets) { in TestBreakIteratorTailoring()
854 testPtr->locale, testPtr->type, testPtr->offsFwd[offsindx]); in TestBreakIteratorTailoring()
859 if (!foundError && offsindx >= testPtr->numOffsets) { in TestBreakIteratorTailoring()
861 testPtr->locale, testPtr->type, offset); in TestBreakIteratorTailoring()
863 } else if (!foundError && offset != testPtr->offsRev[offsindx]) { in TestBreakIteratorTailoring()
865 testPtr->locale, testPtr->type, testPtr->offsRev[offsindx], offset); in TestBreakIteratorTailoring()
869 if (!foundError && offsindx < testPtr->numOffsets) { in TestBreakIteratorTailoring()
871 testPtr->locale, testPtr->type, testPtr->offsRev[offsindx]); in TestBreakIteratorTailoring()
876 …atus, "FAIL: locale %s, break type %d, ubrk_open status: %s\n", testPtr->locale, testPtr->type, u_… in TestBreakIteratorTailoring()