/third_party/typescript/src/server/ |
D | protocol.ts | 220 export interface Response extends Message { interface 300 export interface StatusResponse extends Response { 314 export interface DocCommandTemplateResponse extends Response { 339 export interface TodoCommentsResponse extends Response { 390 export interface OutliningSpansResponse extends Response { 406 export interface OutliningSpansResponseFull extends Response { 421 export interface IndentationResponse extends Response { 526 export interface ProjectInfoResponse extends Response { 579 export interface GetApplicableRefactorsResponse extends Response { 654 export interface GetEditsForRefactorResponse extends Response { [all …]
|
/third_party/typescript/lib/ |
D | protocol.d.ts | 127 interface Response extends Message { interface 191 interface StatusResponse extends Response { 203 interface DocCommandTemplateResponse extends Response { 225 interface TodoCommentsResponse extends Response { 267 interface OutliningSpansResponse extends Response { 280 interface IndentationResponse extends Response { 376 interface ProjectInfoResponse extends Response { 416 interface GetApplicableRefactorsResponse extends Response { 479 interface GetEditsForRefactorResponse extends Response { 505 interface OrganizeImportsResponse extends Response { [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | augmentExportEquals5.symbols | 8 export interface Response { } 9 >Response : Symbol(Response, Decl(express.d.ts, 1, 32)) 85 interface Response extends Express.Response { 86 >Response : Symbol(Response, Decl(express.d.ts, 30, 9)) 87 >Express.Response : Symbol(Express.Response, Decl(express.d.ts, 1, 32)) 89 >Response : Symbol(Express.Response, Decl(express.d.ts, 1, 32)) 92 >charset : Symbol(Response.charset, Decl(express.d.ts, 32, 53)) 98 (err: any, req: Request, res: Response, next: Function): any; 103 >Response : Symbol(Response, Decl(express.d.ts, 30, 9)) 111 (req: Request, res: Response, next: Function): any; [all …]
|
D | augmentExportEquals5.types | 4 export interface Response { } 53 interface Response extends Express.Response { 61 (err: any, req: Request, res: Response, next: Function): any; 64 >res : Response 69 (req: Request, res: Response, next: Function): any; 71 >res : Response 78 (req: Request, res: Response, next: Function, param: any): any; 80 >res : Response
|
D | augmentExportEquals5.js | 6 export interface Response { } 36 interface Response extends Express.Response { 41 (err: any, req: Request, res: Response, next: Function): any; 45 (req: Request, res: Response, next: Function): any; 51 (req: Request, res: Response, next: Function, param: any): any;
|
D | contextualTypingOfTooShortOverloads.symbols | 97 (req: Request, res: Response, next: NextFunction): any; 101 >Response : Symbol(Response, Decl(contextualTypingOfTooShortOverloads.ts, 40, 1)) 109 (err: any, req: Request, res: Response, next: NextFunction): any; 114 >Response : Symbol(Response, Decl(contextualTypingOfTooShortOverloads.ts, 40, 1)) 126 interface Response { 127 >Response : Symbol(Response, Decl(contextualTypingOfTooShortOverloads.ts, 40, 1)) 130 >statusCode : Symbol(Response.statusCode, Decl(contextualTypingOfTooShortOverloads.ts, 42, 20))
|
D | contextualTypingOfTooShortOverloads.types | 69 (req: Request, res: Response, next: NextFunction): any; 71 >res : Response 76 (err: any, req: Request, res: Response, next: NextFunction): any; 79 >res : Response 88 interface Response {
|
D | contextualTypingOfTooShortOverloads.js | 33 (req: Request, res: Response, next: NextFunction): any; 37 (err: any, req: Request, res: Response, next: NextFunction): any; 44 interface Response {
|
/third_party/typescript/tests/cases/compiler/ |
D | augmentExportEquals5.ts | 7 export interface Response { } interface 37 interface Response extends Express.Response { 42 (err: any, req: Request, res: Response, next: Function): any; 46 (req: Request, res: Response, next: Function): any; 52 (req: Request, res: Response, next: Function, param: any): any;
|
D | contextualTypingOfTooShortOverloads.ts | 33 (req: Request, res: Response, next: NextFunction): any; 37 (err: any, req: Request, res: Response, next: NextFunction): any; 44 interface Response { interface
|
/third_party/node/deps/npm/node_modules/node-fetch-npm/src/ |
D | response.js | 21 class Response { class 53 return new Response(clone(this), { 63 Body.mixIn(Response.prototype) 65 Object.defineProperty(Response.prototype, Symbol.toStringTag, { 71 module.exports = Response
|
D | index.js | 17 const Response = require('./response') constant 156 resolve(new Response(body, responseOptions)) 172 resolve(new Response(body, responseOptions)) 188 resolve(new Response(body, responseOptions)) 194 resolve(new Response(body, responseOptions)) 213 exports.Response = Response
|
/third_party/rust/crates/tracing/examples/examples/ |
D | tower-server.rs | 2 use http::{Request, Response}; 31 type Response = Response<Body>; typedef 33 type Future = future::Ready<Result<Self::Response, Self::Error>>; 40 let rsp = Response::builder(); in call() 72 type Response = Svc; typedef 74 type Future = future::Ready<Result<Self::Response, Self::Error>>;
|
D | tower-load.rs | 31 use http::{header, Method, Request, Response, StatusCode}; 91 type Response = Response<Body>; typedef 93 type Future = Ready<Result<Self::Response, Self::Error>>; 176 type Response = Svc; typedef 178 type Future = Ready<Result<Self::Response, Self::Error>>; 205 type Response = AdminSvc<S>; typedef 207 type Future = Ready<Result<Self::Response, Self::Error>>; 222 type Response = Response<Body>; typedef 224 type Future = Pin<Box<dyn Future<Output = Result<Response<Body>, Err>> + std::marker::Send>>; 271 fn rsp(status: StatusCode, body: impl Into<Body>) -> Response<Body> { in rsp() [all …]
|
/third_party/typescript/tests/baselines/reference/user/ |
D | puppeteer.log | 3 …Response>) | typeof import("../../../node_modules/@types/node-fetch/index")' is not assignable to … 4 …index")' is not assignable to type '(input: RequestInfo, init?: RequestInit) => Promise<Response>'. 5 … provides no match for the signature '(input: RequestInfo, init?: RequestInit): Promise<Response>'.
|
/third_party/typescript/tests/baselines/reference/convertToAsyncFunction/ |
D | convertToAsyncFunction_CatchFollowedByThenMismatchTypes02.ts | 11 function rej(reject): Response{ 18 let result: number | Response; 32 function rej(reject): Response{
|
D | convertToAsyncFunction_NoRes3.ts | 3 function /*[#|*/f/*|]*/():Promise<void | Response> { 9 async function f():Promise<void | Response> {
|
D | convertToAsyncFunction_NoRes2.ts | 3 function /*[#|*/f/*|]*/():Promise<void | Response> { 9 async function f():Promise<void | Response> {
|
D | convertToAsyncFunction_NoRes.ts | 3 function /*[#|*/f/*|]*/():Promise<void | Response> { 9 async function f():Promise<void | Response> {
|
D | convertToAsyncFunction_ResRef2.ts | 4 public /*[#|*/method/*|]*/(): Promise<Response> { 14 public async method(): Promise<Response> {
|
/third_party/flutter/flutter/packages/flutter_tools/lib/src/test/ |
D | flutter_web_platform.dart | 136 Future<shelf.Response> _handleStaticArtifact(shelf.Request request) async { 138 return shelf.Response.ok( 143 return shelf.Response.ok(ahem.openRead()); 145 return shelf.Response.ok( 151 return shelf.Response.ok( 156 return shelf.Response.ok( 161 return shelf.Response.ok( 166 return shelf.Response.notFound('Not Found'); 186 shelf.Response _wrapperHandler(shelf.Request request) { 192 return shelf.Response.ok(''' [all …]
|
/third_party/openssl/doc/internal/man3/ |
D | ossl_cmp_certreq_new.pod | 83 =item * B<OSSL_CMP_PKIBODY_IP> - Initialization Response 85 =item * B<OSSL_CMP_PKIBODY_CP> - Certification Response 87 =item * B<OSSL_CMP_PKIBODY_KUP> - Key Update Response 122 ossl_cmp_rp_new() creates a Revocation Response message with I<si> and I<cid>. 136 ossl_cmp_pollRep_new() creates a Polling Response message with certReqId set to 141 ossl_cmp_genp_new() creates a new General Response with an empty ITAV stack.
|
/third_party/typescript/src/testRunner/unittests/tsserver/ |
D | projectReferences.ts | 421 interface Action<Req = protocol.Request, Response = {}> { 424 expectedResponse: Response; 426 interface ActionInfo<Req = protocol.Request, Response = {}> { 427 action: (fn: number) => Action<Req, Response>; 437 … type ActionInfoGetterFn<Req = protocol.Request, Response = {}> = () => ActionInfo<Req, Response>; 438 type ActionInfoSpreader<Req = protocol.Request, Response = {}> = [ 440 (actionInfo: ActionInfo<Req, Response>) => Partial<ActionInfo<Req, Response>> 442 …ter<Req = protocol.Request, Response = {}> = ActionInfoGetterFn<Req, Response> | ActionKey | Actio… 449 interface ActionInfoVerifier<Req = protocol.Request, Response = {}> { 450 main: ActionInfoGetter<Req, Response>; [all …]
|
/third_party/node/test/parallel/ |
D | test-http-outgoing-message-inheritance.js | 12 class Response extends OutgoingMessage { class 16 const res = new Response();
|
/third_party/nghttp2/src/ |
D | shrpx_downstream.h | 236 struct Response { struct 237 Response(BlockAllocator &balloc) in Response() function 416 const Response &response() const { return resp_; } in response() 417 Response &response() { return resp_; } in response() 546 Response resp_;
|