Home | History | Annotate | Download | only in src

Lines Matching defs:repl

255     GURL::Replacements repl;
256 SetupReplacement(&GURL::Replacements::SetScheme, &repl, cur.scheme);
257 SetupReplacement(&GURL::Replacements::SetUsername, &repl, cur.username);
258 SetupReplacement(&GURL::Replacements::SetPassword, &repl, cur.password);
259 SetupReplacement(&GURL::Replacements::SetHost, &repl, cur.host);
260 SetupReplacement(&GURL::Replacements::SetPort, &repl, cur.port);
261 SetupReplacement(&GURL::Replacements::SetPath, &repl, cur.path);
262 SetupReplacement(&GURL::Replacements::SetQuery, &repl, cur.query);
263 SetupReplacement(&GURL::Replacements::SetRef, &repl, cur.ref);
264 GURL output = url.ReplaceComponents(repl);