Home | History | Annotate | Download | only in web_request

Lines Matching defs:Result

85   virtual bool GetNextNameValue(Result* result) OVERRIDE;
195 virtual bool GetNextNameValue(Result* result) OVERRIDE;
211 // doubly escaped. For example, for literal == "abc\\Edef" the result is
289 // Implementation of FormDataParser and FormDataParser::Result.
291 FormDataParser::Result::Result() {}
292 FormDataParser::Result::~Result() {}
374 bool FormDataParserUrlEncoded::GetNextNameValue(Result* result) {
380 result->set_name(net::UnescapeURLComponent(name_, unescape_rules_));
381 result->set_value(net::UnescapeURLComponent(value_, unescape_rules_));
410 // The result always starts with opening the qoute and then "--".
411 std::string result(OPEN_QUOTE "--");
423 result.append(copy_start, copy_length);
424 result.append(g_escape_closing_quote);
425 result.append(quote);
431 result.append(copy_start, copy_length);
432 result.append(unquote);
433 return result;
490 bool FormDataParserMultipart::GetNextNameValue(Result* result) {
525 result->set_name(unescaped_name);
526 result->set_value(value);