Home
last modified time | relevance | path

Searched refs:Cookie (Results 1 – 25 of 111) sorted by relevance

12345

/third_party/typescript/tests/baselines/reference/
DobjectCreationOfElementAccessExpression.types83 class Cookie extends MonsterFood {
84 >Cookie : Cookie
91 super("Cookie", flavor);
92 >super("Cookie", flavor) : void
94 >"Cookie" : "Cookie"
148 …s = new PetFood[new IceCream('Mint chocolate chip') , Cookie('Chocolate chip', false) , new Cookie
150 >new PetFood[new IceCream('Mint chocolate chip') , Cookie('Chocolate chip', false) , new Cookie('Pe…
151 >PetFood[new IceCream('Mint chocolate chip') , Cookie('Chocolate chip', false) , new Cookie('Peanut…
153 …new IceCream('Mint chocolate chip') , Cookie('Chocolate chip', false) , new Cookie('Peanut butter'…
154 >new IceCream('Mint chocolate chip') , Cookie('Chocolate chip', false) : any
[all …]
DobjectCreationOfElementAccessExpression.errors.txt1 tests/cases/compiler/objectCreationOfElementAccessExpression.ts(53,25): error TS2538: Type 'Cookie'…
2 …OfElementAccessExpression.ts(53,63): error TS2348: Value of type 'typeof Cookie' is not callable. …
3 tests/cases/compiler/objectCreationOfElementAccessExpression.ts(54,41): error TS2538: Type 'Cookie'…
4 …OfElementAccessExpression.ts(54,79): error TS2348: Value of type 'typeof Cookie' is not callable. …
35 class Cookie extends MonsterFood {
37 super("Cookie", flavor);
60 …s = new PetFood[new IceCream('Mint chocolate chip') , Cookie('Chocolate chip', false) , new Cookie
62 !!! error TS2538: Type 'Cookie' cannot be used as an index type.
64 !!! error TS2348: Value of type 'typeof Cookie' is not callable. Did you mean to include 'new'?
65 …] = new PetFood[new IceCream('Mint chocolate chip') , Cookie('Chocolate chip', false) , new Cookie
[all …]
DobjectCreationOfElementAccessExpression.js29 class Cookie extends MonsterFood { class
54 …s = new PetFood[new IceCream('Mint chocolate chip') , Cookie('Chocolate chip', false) , new Cookie
55 …] = new PetFood[new IceCream('Mint chocolate chip') , Cookie('Chocolate chip', false) , new Cookie
109 var Cookie = /** @class */ (function (_super) {
110 __extends(Cookie, _super);
111 function Cookie(flavor, isGlutenFree) { class in Cookie
117 return Cookie;
153 …ods = new PetFood[new IceCream('Mint chocolate chip'), Cookie('Chocolate chip', false), new Cookie
154 …ds2 = new PetFood[new IceCream('Mint chocolate chip'), Cookie('Chocolate chip', false), new Cookie
DobjectCreationOfElementAccessExpression.symbols71 class Cookie extends MonsterFood {
72 >Cookie : Symbol(Cookie, Decl(objectCreationOfElementAccessExpression.ts, 26, 1))
76 >flavor : Symbol(Cookie.flavor, Decl(objectCreationOfElementAccessExpression.ts, 28, 16))
77 >isGlutenFree : Symbol(Cookie.isGlutenFree, Decl(objectCreationOfElementAccessExpression.ts, 28, 38…
79 super("Cookie", flavor);
129 …s = new PetFood[new IceCream('Mint chocolate chip') , Cookie('Chocolate chip', false) , new Cookie
133 >Cookie : Symbol(Cookie, Decl(objectCreationOfElementAccessExpression.ts, 26, 1))
134 >Cookie : Symbol(Cookie, Decl(objectCreationOfElementAccessExpression.ts, 26, 1))
136 …] = new PetFood[new IceCream('Mint chocolate chip') , Cookie('Chocolate chip', false) , new Cookie
141 >Cookie : Symbol(Cookie, Decl(objectCreationOfElementAccessExpression.ts, 26, 1))
[all …]
DmatchReturnTypeInAllBranches.types106 cookieMonster = new IceCreamMonster("Chocolate Chip", false, "COOOOOKIE", "Cookie Monster");
107 >cookieMonster = new IceCreamMonster("Chocolate Chip", false, "COOOOOKIE", "Cookie Monster") : IceC…
109 >new IceCreamMonster("Chocolate Chip", false, "COOOOOKIE", "Cookie Monster") : IceCreamMonster
114 >"Cookie Monster" : "Cookie Monster"
DmatchReturnTypeInAllBranches.errors.txt41 cookieMonster = new IceCreamMonster("Chocolate Chip", false, "COOOOOKIE", "Cookie Monster");
DmatchReturnTypeInAllBranches.symbols94 cookieMonster = new IceCreamMonster("Chocolate Chip", false, "COOOOOKIE", "Cookie Monster");
/third_party/node/deps/npm/node_modules/tough-cookie/lib/
Dcookie.js419 var c = new Cookie();
591 var c = new Cookie();
592 for (var i=0; i<Cookie.serializableProperties.length; i++) {
593 var prop = Cookie.serializableProperties[i];
595 obj[prop] === Cookie.prototype[prop])
690 function Cookie(options) { class
694 if (Cookie.prototype.hasOwnProperty(prop) &&
695 Cookie.prototype[prop] !== options[prop] &&
709 value: ++Cookie.cookiesCreated
713 Cookie.cookiesCreated = 0; // incremented each time a cookie is created
[all …]
/third_party/curl/
Dbackport-CVE-2022-32205.patch8 - Cap the max number of received Set-Cookie: headers to 50
22 co = calloc(1, sizeof(struct Cookie));
33 @@ -1346,7 +1350,8 @@ static struct Cookie *dup_cookie(struct Cookie *src)
37 -struct Cookie *Curl_cookie_getlist(struct CookieInfo *c,
38 +struct Cookie *Curl_cookie_getlist(struct Curl_easy *data,
43 @@ -1401,6 +1406,11 @@ struct Cookie *Curl_cookie_getlist(struct CookieInfo *c,
79 +/* Maximum number of Set-Cookie: lines accepted in a single response. If more
87 @@ -97,7 +113,8 @@ struct Cookie *Curl_cookie_add(struct Curl_easy *data,
91 -struct Cookie *Curl_cookie_getlist(struct CookieInfo *c, const char *host,
92 +struct Cookie *Curl_cookie_getlist(struct Curl_easy *data,
[all …]
Dbackport-002-CVE-2022-27774.patch44 checkprefix("Cookie:", compare)) &&
/third_party/python/Doc/library/
Dhttp.cookies.rst23 Cookie handling. As a result, the parsing rules used are a bit less strict.
27 in Cookie name (as :attr:`~Morsel.key`).
30 Allowed ':' as a valid Cookie name character.
43 incorrect :mailheader:`Set-Cookie` header, etc.
74 Cookie Objects
96 .. method:: BaseCookie.output(attrs=None, header='Set-Cookie:', sep='\\r\\n')
192 .. method:: Morsel.output(attrs=None, header='Set-Cookie:')
197 ``"Set-Cookie:"``.
255 Set-Cookie: fig=newton
256 Set-Cookie: sugar=wafer
[all …]
Dhttp.cookiejar.rst1 :mod:`http.cookiejar` --- Cookie handling for HTTP clients
31 The various named parameters found in :mailheader:`Set-Cookie` and
98 received in a :mailheader:`Set-Cookie` header with a version cookie-attribute of
102 setting the :attr:`version` attribute of the :class:`Cookie` instance to 0.
107 .. class:: Cookie()
110 expected that users of :mod:`http.cookiejar` construct their own :class:`Cookie`
132 Obsoleted by :rfc:`2965`. Uses :mailheader:`Set-Cookie` with version=1.
136 place of :mailheader:`Set-Cookie`. Not widely used.
149 contained :class:`Cookie` objects.
156 Add correct :mailheader:`Cookie` header to *request*.
[all …]
/third_party/typescript/tests/cases/compiler/
DobjectCreationOfElementAccessExpression.ts28 class Cookie extends MonsterFood { class
53 …s = new PetFood[new IceCream('Mint chocolate chip') , Cookie('Chocolate chip', false) , new Cookie variable
54 …] = new PetFood[new IceCream('Mint chocolate chip') , Cookie('Chocolate chip', false) , new Cookie variable
/third_party/node/deps/npm/node_modules/tough-cookie/
DREADME.md11 var Cookie = tough.Cookie;
12 var cookie = Cookie.parse(header);
76 alias for `Cookie.parse(cookieString[, options])`
80 alias for `Cookie.fromJSON(string)`
99 var cookies = [ /* unsorted array of Cookie objects */ ];
103Cookie()`. This preserves the spirit of the RFC sorting: older cookies go first. This works great …
114 ## Cookie section in API
116 Exported via `tough.Cookie`.
118 ### `Cookie.parse(cookieString[, options])` argument
120 Parses a single Cookie or Set-Cookie HTTP header into a `Cookie` object. Returns `undefined` if th…
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DSignals.cpp52 void *Cookie; member
67 (*RunMe.Callback)(RunMe.Cookie); in RunSignalHandlers()
69 RunMe.Cookie = nullptr; in RunSignalHandlers()
76 void *Cookie) { in insertSignalHandler() argument
84 SetMe.Cookie = Cookie; in insertSignalHandler()
DDebug.cpp121 static void debug_user_sig_handler(void *Cookie) { in debug_user_sig_handler() argument
/third_party/node/deps/npm/node_modules/request/lib/
Dcookies.js5 var Cookie = tough.Cookie variable
15 return Cookie.parse(str, {loose: true})
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86WinEHState.cpp97 Constant *Cookie = nullptr; member in __anon925087260111::WinEHStatePass
135 Cookie = nullptr; in doFinalization()
328 Cookie = TheModule->getOrInsertGlobal("__security_cookie", Int32Ty); in emitExceptionRegistrationRecord()
329 Value *Val = Builder.CreateLoad(Int32Ty, Cookie, "cookie"); in emitExceptionRegistrationRecord()
336 Value *Val = Builder.CreateLoad(Int32Ty, Cookie); in emitExceptionRegistrationRecord()
478 OptionalArgs.push_back(Cookie); in rewriteSetJmpCallSite()
/third_party/libwebsockets/minimal-examples/api-tests/api-test-lws_cache/
Dtext1.txt1 # Netscape HTTP Cookie File
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DSignals.h62 void AddSignalHandler(void (*FnPtr)(void *), void *Cookie);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DSignals.h63 void AddSignalHandler(SignalHandlerCallback FnPtr, void *Cookie);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
DDebug.cpp114 static void debug_user_sig_handler(void *Cookie) { in debug_user_sig_handler() argument
/third_party/mesa3d/docs/ci/
Dfdo-cache25 proxy_ignore_headers Cache-Control Set-Cookie;
/third_party/node/test/parallel/
Dtest-http.js72 Cookie: [ 'foo=bar', 'bar=baz', 'baz=quux' ] property
/third_party/flutter/flutter/packages/flutter_tools/test/src/
Dtestbed.dart325 List<Cookie> get cookies => <Cookie>[];
378 List<Cookie> get cookies => null;

12345