Home | History | Annotate | Download | only in search_engines

Lines Matching refs:PARAM

31 static const char kParamElement[] = "Param";
82 PARAM,
95 // Key/value of a Param node.
96 typedef std::pair<std::string, std::string> Param;
131 // We only expect PARAM nodes under the Url node
133 elements_[1] == URL && elements_[2] == PARAM)
134 return PARAM;
177 extra_params_.push_back(Param(key, value));
180 const std::vector<Param>& extra_params() const { return extra_params_; }
213 (*kElementNameToElementTypeMap)[kParamElement] = PARAM;
240 // The list of parameters parsed in the Param nodes of a Url node.
241 std::vector<Param> extra_params_;
429 const std::vector<ParsingContext::Param>& params = context->extra_params();
432 std::vector<ParsingContext::Param>::const_iterator iter;
466 case ParsingContext::PARAM: