Home | History | Annotate | Download | only in url

Lines Matching defs:repl

337     GURL::Replacements repl;
338 SetupReplacement(&GURL::Replacements::SetScheme, &repl, cur.scheme);
339 SetupReplacement(&GURL::Replacements::SetUsername, &repl, cur.username);
340 SetupReplacement(&GURL::Replacements::SetPassword, &repl, cur.password);
341 SetupReplacement(&GURL::Replacements::SetHost, &repl, cur.host);
342 SetupReplacement(&GURL::Replacements::SetPort, &repl, cur.port);
343 SetupReplacement(&GURL::Replacements::SetPath, &repl, cur.path);
344 SetupReplacement(&GURL::Replacements::SetQuery, &repl, cur.query);
345 SetupReplacement(&GURL::Replacements::SetRef, &repl, cur.ref);
346 GURL output = url.ReplaceComponents(repl);
361 GURL::Replacements repl;
362 repl.ClearRef();
363 GURL url_no_ref = url.ReplaceComponents(repl);