Lines Matching refs:host_end

1288    *       |     |    |          `----------------------- host_end
1300 uint32_t host_end{0};
4788 * | | | `----------------------- host_end
5320 * | | | `----------------------- host_end
5555 out.host_end = uint32_t(out.host_start + host.value().size());
5560 out.host_end = uint32_t(out.host_start + host.value().size()) - 1;
5563 running_index = out.host_end + 1;
5568 out.host_end = out.host_start;
5825 components.host_end += diff;
5890 replace_and_resize(components.host_start, components.host_end, input);
5896 components.host_end += new_difference;
6112 components.host_end += diff;
6145 components.host_start != components.host_end) {
6150 components.host_end += difference;
6177 components.host_end -= diff;
6230 components.host_end += difference;
6276 components.host_end += difference;
6306 difference -= components.pathname_start - components.host_end;
6307 buffer.erase(components.host_end,
6308 components.pathname_start - components.host_end);
6311 buffer.insert(components.host_end, value);
6329 uint32_t length = components.pathname_start - components.host_end;
6330 buffer.erase(components.host_end, length);
6401 if (components.pathname_start == components.host_end + 2 &&
6402 buffer[components.host_end] == '/' &&
6403 buffer[components.host_end + 1] == '.') {
6405 buffer.erase(components.host_end, 2);
6432 uint32_t hostname_length = components.host_end - components.host_start;
6441 components.host_end = start;
6479 components.host_start == components.host_end;
6511 components.host_end += 2;
6547 if (components.host_start == components.host_end) {
6550 if (components.host_end > components.host_start + 1) {
6564 return has_hostname() && components.pathname_start != components.host_end;
6573 // If pathname_start and host_end are exactly two characters apart, then we
6576 if (components.pathname_start == components.host_end + 2) {
6577 ADA_ASSERT_TRUE((buffer[components.host_end] == '/' &&
6578 buffer[components.host_end + 1] == '.') ||
6579 (buffer[components.host_end] == ':' &&
6580 checkers::is_digit(buffer[components.host_end + 1])));
6582 if (components.pathname_start == components.host_end + 2 &&
6583 buffer[components.host_end] == '/' &&
6584 buffer[components.host_end + 1] == '.') {
6591 // components.host_end + 2 to be true. So we put this check first in the
6594 return components.pathname_start == components.host_end + 2 &&
6595 !has_opaque_path && buffer[components.host_end] == '/' &&
6596 buffer[components.host_end + 1] == '.';
6658 components.host_end += new_difference;