/third_party/typescript/tests/baselines/reference/ |
D | objectCreationOfElementAccessExpression.types | 83 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 …]
|
D | objectCreationOfElementAccessExpression.errors.txt | 1 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 …]
|
D | objectCreationOfElementAccessExpression.js | 29 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…
|
D | objectCreationOfElementAccessExpression.symbols | 71 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 …]
|
D | matchReturnTypeInAllBranches.types | 106 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"
|
D | matchReturnTypeInAllBranches.errors.txt | 41 cookieMonster = new IceCreamMonster("Chocolate Chip", false, "COOOOOKIE", "Cookie Monster");
|
D | matchReturnTypeInAllBranches.symbols | 94 cookieMonster = new IceCreamMonster("Chocolate Chip", false, "COOOOOKIE", "Cookie Monster");
|
/third_party/node/deps/npm/node_modules/tough-cookie/lib/ |
D | cookie.js | 419 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/ |
D | backport-CVE-2022-32205.patch | 8 - 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 …]
|
D | backport-002-CVE-2022-27774.patch | 44 checkprefix("Cookie:", compare)) &&
|
/third_party/python/Doc/library/ |
D | http.cookies.rst | 23 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 …]
|
D | http.cookiejar.rst | 1 :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/ |
D | objectCreationOfElementAccessExpression.ts | 28 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/ |
D | README.md | 11 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 */ ]; 103 …Cookie()`. 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/ |
D | Signals.cpp | 52 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()
|
D | Debug.cpp | 121 static void debug_user_sig_handler(void *Cookie) { in debug_user_sig_handler() argument
|
/third_party/node/deps/npm/node_modules/request/lib/ |
D | cookies.js | 5 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/ |
D | X86WinEHState.cpp | 97 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/ |
D | text1.txt | 1 # Netscape HTTP Cookie File
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | Signals.h | 62 void AddSignalHandler(void (*FnPtr)(void *), void *Cookie);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | Signals.h | 63 void AddSignalHandler(SignalHandlerCallback FnPtr, void *Cookie);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/ |
D | Debug.cpp | 114 static void debug_user_sig_handler(void *Cookie) { in debug_user_sig_handler() argument
|
/third_party/mesa3d/docs/ci/ |
D | fdo-cache | 25 proxy_ignore_headers Cache-Control Set-Cookie;
|
/third_party/node/test/parallel/ |
D | test-http.js | 72 Cookie: [ 'foo=bar', 'bar=baz', 'baz=quux' ] property
|
/third_party/flutter/flutter/packages/flutter_tools/test/src/ |
D | testbed.dart | 325 List<Cookie> get cookies => <Cookie>[]; 378 List<Cookie> get cookies => null;
|