Lines Matching defs:out

82   auto out = ada::parse<ada::url>("ws://x");
83 DCHECK(out);
84 if (!out->set_hostname(input)) {
87 std::string host = out->get_hostname();
106 auto out = ada::parse<ada::url>("ws://x");
107 DCHECK(out);
108 if (!out->set_hostname(input)) {
112 std::string result = ada::unicode::to_unicode(out->get_hostname());
142 auto out =
145 args.GetReturnValue().Set(out.has_value());
164 auto out = ada::parse<ada::url>(href.ToStringView());
165 CHECK(out);
168 out->hash = std::nullopt;
171 if (unicode && out->has_hostname()) {
172 out->host = ada::idna::to_unicode(out->get_hostname());
176 out->query = std::nullopt;
180 out->username = "";
181 out->password = "";
184 std::string result = out->get_href();
213 auto out =
216 if (!out) {
220 binding_data->UpdateComponents(out->get_components(), out->type);
223 ToV8Value(env->context(), out->get_href(), env->isolate())
242 auto out = ada::parse<ada::url_aggregator>(input.ToStringView());
243 CHECK(out);
249 result = out->set_pathname(new_value_view);
253 out->set_hash(new_value_view);
257 result = out->set_host(new_value_view);
261 result = out->set_hostname(new_value_view);
265 result = out->set_href(new_value_view);
269 result = out->set_password(new_value_view);
273 result = out->set_port(new_value_view);
277 result = out->set_protocol(new_value_view);
281 out->set_search(new_value_view);
285 result = out->set_username(new_value_view);
296 binding_data->UpdateComponents(out->get_components(), out->type);
298 ToV8Value(env->context(), out->get_href(), env->isolate())
308 auto out = ada::idna::to_ascii(input.ToStringView());
310 String::NewFromUtf8(env->isolate(), out.c_str()).ToLocalChecked());
319 auto out = ada::idna::to_unicode(input.ToStringView());
321 String::NewFromUtf8(env->isolate(), out.c_str()).ToLocalChecked());