Home | History | Annotate | Download | only in intltest

Lines Matching refs:split

1635     // Split()
1643 n = pat1->split("Now is the time", fields, 10, status);
1652 n = pat1->split("Now is the time", fields, 2, status);
1661 n = pat1->split("Now is the time", fields, 1, status);
1668 n = pat1->split(" Now is the time ", fields, 10, status);
1678 n = pat1->split(" ", fields, 10, status);
1685 n = pat1->split("", fields, 10, status);
1692 // split, with a pattern with (capture)
1697 n = pat1->split("<a>Now is <b>the time<c>", fields, 10, status);
1709 n = pat1->split(" <a>Now is <b>the time<c>", fields, 10, status);
1722 n = pat1->split(" <a>Now is <b>the time<c>", fields, 6, status);
1735 n = pat1->split(" <a>Now is <b>the time<c>", fields, 5, status);
1747 n = pat1->split(" <a>Now is <b>the time", fields, 5, status);
1758 n = pat1->split(" <a>Now is <b>the time<c>", fields, 4, status);
1770 n = pat1->split("1-10,20", fields, 10, status);
1780 // Test split of string with empty trailing fields
1783 n = pat1->split("a,b,c,", fields, 10, status);
1791 n = pat1->split("a,,,", fields, 10, status);
1800 // Split Separator with zero length match.
1803 n = pat1->split("abc", fields, 10, status);
2961 // Split()
2971 n = pat1->split("Now is the time", fields, 10, status);
2980 n = pat1->split("Now is the time", fields, 2, status);
2989 n = pat1->split("Now is the time", fields, 1, status);
2996 n = pat1->split(" Now is the time ", fields, 10, status);
3008 n = pat1->split(" ", fields, 10, status);
3016 n = pat1->split("", fields, 10, status);
3023 // split, with a pattern with (capture)
3030 n = pat1->split("<a>Now is <b>the time<c>", fields, 10, status);
3044 n = pat1->split(" <a>Now is <b>the time<c>", fields, 10, status);
3058 n = pat1->split(" <a>Now is <b>the time<c> ", fields, 6, status);
3071 n = pat1->split(" <a>Now is <b>the time<c>", fields, 5, status);
3083 n = pat1->split(" <a>Now is <b>the time", fields, 5, status);
3094 n = pat1->split(" <a>Now is <b>the time<c>", fields, 4, status);
3107 n = pat1->split("1-10,20", fields, 10, status);
3119 // split of a UText based string, with library allocating output UTexts.
3129 int32_t numFields = matcher.split(textToSplit, splits, UPRV_LENGTHOF(splits), status);
4077 // Regex to split a test file line into fields.
4128 fieldPat->split(line, fields, 7, status);
4139 // split off the flags, remove the extra quotes.
4446 // Regex to split a test file line into fields.
4497 fieldPat->split(line, fields, 7, status);
4508 // split off the flags, remove the extra quotes.
5581 int32_t numFields = pMatcher->split(text, splits, 10, status);