Searched refs:username_end (Results 1 – 5 of 5) sorted by relevance
/third_party/node/lib/internal/ |
D | url.js | 187 username_end = 0; field in URLContext 720 1: username_end, 731 ctx.username_end = username_end; 825 if (ctx.protocol_end + 2 < ctx.username_end) { 826 return StringPrototypeSlice(ctx.href, ctx.protocol_end + 2, ctx.username_end); 844 if (ctx.host_start - ctx.username_end > 0) { 845 return StringPrototypeSlice(ctx.href, ctx.username_end + 1, ctx.host_start);
|
/third_party/node/deps/ada/ |
D | ada.h | 1298 uint32_t username_end{0}; 5547 out.username_end = uint32_t(out.host_start + username.size()); 5557 out.username_end = out.host_start; 5787 components.username_end = components.protocol_end; 5793 components.username_end += 2; 5808 components.username_end = components.protocol_end + diff; 5814 components.username_end = 6097 components.username_end, input); 6099 components.username_end += diff; 6140 buffer.insert(components.username_end, input); [all …]
|
D | ada.cpp | 13078 if (username_end == url_components::omitted) { in check_offset_consistency() 13081 if (username_end < index) { in check_offset_consistency() 13084 index = username_end; in check_offset_consistency() 13140 helpers::encode_json(std::to_string(username_end), back); in to_string() 13293 components.username_end += new_difference; in copy_scheme() 13327 components.username_end += new_difference; in set_scheme_from_view_with_colon() 13359 components.username_end += new_difference; in set_scheme() 13817 components.username_end); in get_username() 13825 return helpers::substring(buffer, components.username_end + 1, in get_password() 13984 answer.append(convert_offset_to_string(components.username_end)); in to_string() [all …]
|
D | ada_c.h | 30 uint32_t username_end; member
|
/third_party/node/src/ |
D | node_url.cc | 327 url_components_buffer_[1] = components.username_end; in UpdateComponents()
|