HomeSort by relevance Sort by last modified time
    Searched defs:CookieParser (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
CookieParser.js 41 WebInspector.CookieParser = function()
51 WebInspector.CookieParser.KeyValue = function(key, value, position)
58 WebInspector.CookieParser.prototype = {
130 * @return {?WebInspector.CookieParser.KeyValue}
147 var result = new WebInspector.CookieParser.KeyValue(keyValueMatch[1], keyValueMatch[2] && keyValueMatch[2].trim(), this._originalInputLength - this._input.length);
165 * @param {!WebInspector.CookieParser.KeyValue} keyValue
185 WebInspector.CookieParser.parseCookie = function(header)
187 return (new WebInspector.CookieParser()).parseCookie(header);
194 WebInspector.CookieParser.parseSetCookie = function(header)
196 return (new WebInspector.CookieParser()).parseSetCookie(header)
    [all...]
  /libcore/luni/src/main/java/java/net/
HttpCookie.java 206 return new CookieParser(header).parse();
209 static class CookieParser {
228 CookieParser(String input) {

Completed in 35 milliseconds