Home | History | Annotate | Download | only in url

Lines Matching refs:Replacements

23 void SetupReplacement(void (url_canon::Replacements<CHAR>::*func)(const CHAR*,
25 url_canon::Replacements<CHAR>* replacements,
31 (replacements->*func)(str, comp);
267 TEST(GURLTest, Replacements) {
295 GURL::Replacements repl;
296 SetupReplacement(&GURL::Replacements::SetScheme, &repl, cur.scheme);
297 SetupReplacement(&GURL::Replacements::SetUsername, &repl, cur.username);
298 SetupReplacement(&GURL::Replacements::SetPassword, &repl, cur.password);
299 SetupReplacement(&GURL::Replacements::SetHost, &repl, cur.host);
300 SetupReplacement(&GURL::Replacements::SetPort, &repl, cur.port);
301 SetupReplacement(&GURL::Replacements::SetPath, &repl, cur.path);
302 SetupReplacement(&GURL::Replacements::SetQuery, &repl, cur.query);
303 SetupReplacement(&GURL::Replacements::SetRef, &repl, cur.ref);
319 GURL::Replacements repl;