Lines Matching full:split
1601 // Split()
1609 n = pat1->split("Now is the time", fields, 10, status);
1618 n = pat1->split("Now is the time", fields, 2, status);
1627 n = pat1->split("Now is the time", fields, 1, status);
1634 n = pat1->split(" Now is the time ", fields, 10, status);
1644 n = pat1->split(" ", fields, 10, status);
1651 n = pat1->split("", fields, 10, status);
1658 // split, with a pattern with (capture)
1663 n = pat1->split("<a>Now is <b>the time<c>", fields, 10, status);
1675 n = pat1->split(" <a>Now is <b>the time<c>", fields, 10, status);
1688 n = pat1->split(" <a>Now is <b>the time<c>", fields, 6, status);
1701 n = pat1->split(" <a>Now is <b>the time<c>", fields, 5, status);
1713 n = pat1->split(" <a>Now is <b>the time", fields, 5, status);
1724 n = pat1->split(" <a>Now is <b>the time<c>", fields, 4, status);
1736 n = pat1->split("1-10,20", fields, 10, status);
1746 // Test split of string with empty trailing fields
1749 n = pat1->split("a,b,c,", fields, 10, status);
1757 n = pat1->split("a,,,", fields, 10, status);
1766 // Split Separator with zero length match.
1769 n = pat1->split("abc", fields, 10, status);
2900 // Split()
2910 n = pat1->split("Now is the time", fields, 10, status);
2919 n = pat1->split("Now is the time", fields, 2, status);
2928 n = pat1->split("Now is the time", fields, 1, status);
2935 n = pat1->split(" Now is the time ", fields, 10, status);
2947 n = pat1->split(" ", fields, 10, status);
2955 n = pat1->split("", fields, 10, status);
2962 // split, with a pattern with (capture)
2969 n = pat1->split("<a>Now is <b>the time<c>", fields, 10, status);
2983 n = pat1->split(" <a>Now is <b>the time<c>", fields, 10, status);
2997 n = pat1->split(" <a>Now is <b>the time<c> ", fields, 6, status);
3010 n = pat1->split(" <a>Now is <b>the time<c>", fields, 5, status);
3022 n = pat1->split(" <a>Now is <b>the time", fields, 5, status);
3033 n = pat1->split(" <a>Now is <b>the time<c>", fields, 4, status);
3046 n = pat1->split("1-10,20", fields, 10, status);
3975 // Regex to split a test file line into fields.
4026 fieldPat->split(line, fields, 7, status);
4037 // split off the flags, remove the extra quotes.
4344 // Regex to split a test file line into fields.
4395 fieldPat->split(line, fields, 7, status);
4406 // split off the flags, remove the extra quotes.
5185 int32_t numFields = pMatcher->split(text, splits, 10, status);