Searched refs:protocol_end (Results 1 – 5 of 5) sorted by relevance
/third_party/node/lib/internal/ |
D | url.js | 186 protocol_end = 0; field in URLContext 719 0: protocol_end, 730 ctx.protocol_end = protocol_end; 776 const protocol = StringPrototypeSlice(ctx.href, 0, ctx.protocol_end); 809 return StringPrototypeSlice(this[context].href, 0, this[context].protocol_end); 825 if (ctx.protocol_end + 2 < ctx.username_end) { 826 return StringPrototypeSlice(ctx.href, ctx.protocol_end + 2, ctx.username_end);
|
/third_party/node/deps/ada/ |
D | ada.cpp | 13070 if (protocol_end == url_components::omitted) { in check_offset_consistency() 13073 if (protocol_end < index) { in check_offset_consistency() 13076 index = protocol_end; in check_offset_consistency() 13136 helpers::encode_json(std::to_string(protocol_end), back); in to_string() 13281 uint32_t new_difference = u.components.protocol_end - components.protocol_end; in copy_scheme() 13283 buffer.erase(0, components.protocol_end); in copy_scheme() 13285 components.protocol_end = u.components.protocol_end; in copy_scheme() 13316 uint32_t(new_scheme_with_colon.size()) - components.protocol_end; in set_scheme_from_view_with_colon() 13321 buffer.erase(0, components.protocol_end); in set_scheme_from_view_with_colon() 13324 components.protocol_end += new_difference; in set_scheme_from_view_with_colon() [all …]
|
D | ada.h | 1293 uint32_t protocol_end{0}; 5537 out.protocol_end = uint32_t(get_protocol().size()); 5540 size_t running_index = out.protocol_end; 5544 out.host_start = out.protocol_end + 2; 5567 out.host_start = out.protocol_end; 5574 running_index = out.protocol_end + 2; 5576 running_index = out.protocol_end; 5779 base.protocol_end, base.host_start - base.protocol_end); 5783 uint32_t diff = components.host_start - components.protocol_end; 5785 buffer.erase(components.protocol_end, [all …]
|
D | ada_c.h | 29 uint32_t protocol_end; member
|
/third_party/node/src/ |
D | node_url.cc | 326 url_components_buffer_[0] = components.protocol_end; in UpdateComponents()
|