Lines Matching refs:pathname_start

1286    *       |     |    |          | |   `----------------- pathname_start
1302 uint32_t pathname_start{0};
4786 * | | | | | `----------------- pathname_start
5318 * | | | | | `----------------- pathname_start
5585 out.pathname_start = uint32_t(running_index);
5826 components.pathname_start += diff;
5897 components.pathname_start += new_difference;
5916 return ending_index - components.pathname_start;
5921 return buffer.size() == components.pathname_start;
6034 buffer.insert(components.pathname_start, "/.");
6035 components.pathname_start += 2;
6039 components.pathname_start,
6040 components.pathname_start + get_pathname_length(), input);
6113 components.pathname_start += diff;
6151 components.pathname_start += difference;
6178 components.pathname_start -= diff;
6231 components.pathname_start += difference;
6277 components.pathname_start += difference;
6306 difference -= components.pathname_start - components.host_end;
6308 components.pathname_start - components.host_end);
6312 components.pathname_start += difference;
6329 uint32_t length = components.pathname_start - components.host_end;
6331 components.pathname_start -= length;
6398 uint32_t pathname_length = ending_index - components.pathname_start;
6399 buffer.erase(components.pathname_start, pathname_length);
6401 if (components.pathname_start == components.host_end + 2 &&
6404 components.pathname_start -= 2;
6442 components.pathname_start -= hostname_length;
6512 components.pathname_start += 2;
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) {
6582 if (components.pathname_start == components.host_end + 2 &&
6585 ADA_ASSERT_TRUE(components.pathname_start + 1 < buffer.size());
6586 ADA_ASSERT_TRUE(buffer[components.pathname_start] == '/');
6587 ADA_ASSERT_TRUE(buffer[components.pathname_start + 1] == '/');
6590 // Performance: it should be uncommon for components.pathname_start ==
6594 return components.pathname_start == components.host_end + 2 &&
6659 components.pathname_start += new_difference;