Home | History | Annotate | Download | only in url

Lines Matching refs:Replacements

26     void (Replacements<CHAR>::*func)(const CHAR*, const Component&),
27 Replacements<CHAR>* replacements,
33 (replacements->*func)(str, comp);
379 TEST(GURLTest, Replacements) {
407 GURL::Replacements repl;
408 SetupReplacement(&GURL::Replacements::SetScheme, &repl, cur.scheme);
409 SetupReplacement(&GURL::Replacements::SetUsername, &repl, cur.username);
410 SetupReplacement(&GURL::Replacements::SetPassword, &repl, cur.password);
411 SetupReplacement(&GURL::Replacements::SetHost, &repl, cur.host);
412 SetupReplacement(&GURL::Replacements::SetPort, &repl, cur.port);
413 SetupReplacement(&GURL::Replacements::SetPath, &repl, cur.path);
414 SetupReplacement(&GURL::Replacements::SetQuery, &repl, cur.query);
415 SetupReplacement(&GURL::Replacements::SetRef, &repl, cur.ref);
431 GURL::Replacements repl;