Home | History | Annotate | Download | only in search_engines

Lines Matching defs:Param

32 const char kParamElement[] = "Param";
115 PARAM,
126 // Key/value of a Param node.
127 typedef std::pair<std::string, std::string> Param;
172 // The list of parameters parsed in the Param nodes of a Url node.
173 std::vector<Param> extra_params_;
229 case TemplateURLParsingContext::PARAM:
322 (*kElementNameToElementTypeMap)[kParamElement] = PARAM;
408 extra_params_.push_back(Param(key, value));
443 for (std::vector<Param>::const_iterator iter(extra_params_.begin());
463 // We only expect PARAM nodes under the URL node.
465 elements_[1] == URL && elements_[2] == PARAM) ? PARAM : UNKNOWN;