Home | History | Annotate | Download | only in url

Lines Matching full:replacements

23 void SetupReplacement(void (url_canon::Replacements<CHAR>::*func)(const CHAR*,
25 url_canon::Replacements<CHAR>* replacements,
31 (replacements->*func)(str, comp);
309 TEST(GURLTest, Replacements) {
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);
361 GURL::Replacements repl;