Lines Matching defs:end
206 for (auto first = std::begin(target); first != std::end(target); ++first) {
235 auto cnt = std::count(std::begin(target), std::end(target), '"');
530 std::transform(std::begin(base64str), std::end(base64str),
541 base64str.erase(std::find(std::begin(base64str), std::end(base64str), '='),
542 std::end(base64str));
551 p = std::transform(std::begin(token68str), std::end(token68str), p,
595 std::rotate(std::begin(dp), std::begin(dp) + 2, std::end(dp));
644 std::sort(std::begin(cands), std::end(cands));
875 for (auto p = in, end = in + inlen; p + key.size() <= end; p += *p + 1) {
876 if (std::equal(std::begin(key), std::end(key), p)) {
920 auto last = std::end(s);
950 auto last = std::end(s);
981 res.emplace_back(std::begin(s), std::end(s));
1374 auto end = src + len;
1378 std::min(static_cast<size_t>(16), static_cast<size_t>(end - i));
1392 if (i == end) {
1397 hexdump8(out, i, end);
1398 hexdump8(out, i + 8, std::max(i + 8, end));
1400 auto stop = std::min(i + 16, end);
1465 auto type_end = std::find_if(std::begin(line), std::end(line), delim_pred);
1472 auto ext_start = std::find_if_not(ext_end, std::end(line), delim_pred);
1473 if (ext_start == std::end(line)) {
1476 ext_end = std::find_if(ext_start, std::end(line), delim_pred);
1493 for (auto first = std::begin(src); first != std::end(src); ++first) {
1499 if (first + 1 != std::end(src) && first + 2 != std::end(src) &&
1608 auto p = std::find(std::begin(hostport), std::end(hostport), ']');
1609 if (p == std::end(hostport)) {
1612 if (p + 1 < std::end(hostport) && *(p + 1) != ':') {
1618 auto p = std::find(std::begin(hostport), std::end(hostport), ':');
1631 auto p = std::find(std::begin(hostport), std::end(hostport), ']');
1632 if (p == std::end(hostport)) {
1635 if (p + 1 == std::end(hostport)) {
1638 if (*(p + 1) != ':' || p + 2 == std::end(hostport)) {
1642 StringRef{p + 2, std::end(hostport)}};
1645 auto p = std::find(std::begin(hostport), std::end(hostport), ':');
1649 if (p == std::end(hostport)) {
1652 if (p + 1 == std::end(hostport)) {
1657 StringRef{p + 1, std::end(hostport)}};