Lines Matching full:param
1373 * @param scheme
1385 * @param scheme
6574 // either have a one-digit port such as http://test.com:5?param=1 or else we
6930 [&key](auto ¶m) { return param.first == key; });
6943 for (auto ¶m : params) {
6944 if (param.first == key) {
6945 out.emplace_back(param.second);
6954 [&key](auto ¶m) { return param.first == key; });
6961 std::find_if(params.begin(), params.end(), [&key, &value](auto ¶m) {
6962 return param.first == key && param.second == value;
6990 const auto find = [&key](auto ¶m) { return param.first == key; };
7006 [&key](auto ¶m) { return param.first == key; }),
7013 [&key, &value](auto ¶m) {
7014 return param.first == key &&
7015 param.second == value;
7121 * @param input the string input to analyze (must be valid ASCII or UTF-8)
7122 * @param base_url the optional URL input to use as a base url.