Home | History | Annotate | Download | only in src

Lines Matching refs:Replacements

22 void SetupReplacement(void (url_canon::Replacements<CHAR>::*func)(const CHAR*,
24 url_canon::Replacements<CHAR>* replacements,
30 (replacements->*func)(str, comp);
229 TEST(GURLTest, Replacements) {
256 GURL::Replacements repl;
257 SetupReplacement(&GURL::Replacements::SetScheme, &repl, cur.scheme);
258 SetupReplacement(&GURL::Replacements::SetUsername, &repl, cur.username);
259 SetupReplacement(&GURL::Replacements::SetPassword, &repl, cur.password);
260 SetupReplacement(&GURL::Replacements::SetHost, &repl, cur.host);
261 SetupReplacement(&GURL::Replacements::SetPort, &repl, cur.port);
262 SetupReplacement(&GURL::Replacements::SetPath, &repl, cur.path);
263 SetupReplacement(&GURL::Replacements::SetQuery, &repl, cur.query);
264 SetupReplacement(&GURL::Replacements::SetRef, &repl, cur.ref);