Home | History | Annotate | Download | only in src

Lines Matching refs:Parsed

307                              url_parse::Parsed* parsed) {
308 // Get the source and parsed structures of the things we are replacing.
310 const url_parse::Parsed& repl_parsed = repl.components();
313 &source->scheme, &parsed->scheme);
315 &source->username, &parsed->username);
317 &source->password, &parsed->password);
321 &source->host, &parsed->host);
322 if (parsed->host.len == -1)
323 parsed->host.len = 0;
326 &source->port, &parsed->port);
328 &source->path, &parsed->path);
330 &source->query, &parsed->query);
332 &source->ref, &parsed->ref);
339 url_parse::Parsed* parsed) {
342 // Get the source and parsed structures of the things we are replacing.
344 const url_parse::Parsed& repl_parsed = repl.components();
348 utf8_buffer, &parsed->scheme);
351 utf8_buffer, &parsed->username);
354 utf8_buffer, &parsed->password);
357 utf8_buffer, &parsed->host);
360 utf8_buffer, &parsed->port);
363 utf8_buffer, &parsed->path);
366 utf8_buffer, &parsed->query);
369 utf8_buffer, &parsed->ref);