/third_party/node/deps/v8/src/inspector/ |
H A D | v8-webdriver-serializer.cc | 17 using protocol::Response; 19 protocol::Response _serializeRecursively( in _serializeRecursively() 24 Response response = in _serializeRecursively() 27 if (!webDriver_value) return Response::InternalError(); in _serializeRecursively() 40 return Response::Success(); in _serializeRecursively() 73 protocol::Response _serializeRegexp( in _serializeRegexp() 93 return Response::Success(); in _serializeRegexp() 96 protocol::Response _serializeDate( in _serializeDate() 105 return Response::Success(); in _serializeDate() 108 protocol::Response _serializeArrayValu [all...] |
H A D | v8-debugger-agent-impl.cc | 279 Response buildScopes(v8::Isolate* isolate, v8::debug::ScopeIterator* iterator, 283 if (!injectedScript) return Response::Success(); 284 if (iterator->Done()) return Response::Success(); 290 Response result = 321 return Response::Success(); 335 Response isValidPosition(protocol::Debugger::ScriptPosition* position) { in isValidPosition() 337 return Response::ServerError("Position missing 'line' or 'line' < 0."); in isValidPosition() 339 return Response::ServerError("Position missing 'column' or 'column' < 0."); in isValidPosition() 340 return Response::Success(); in isValidPosition() 343 Response isValidRangeOfPosition [all...] |
H A D | v8-runtime-agent-impl.cc | 104 Response response = injectedScript->wrapEvaluateResult( in wrapEvaluateResultAsync() 133 Response response = scope.injectedScript()->resolveCallArgument( in innerCallFunctionOn() 160 Response response = scope.initialize(); in innerCallFunctionOn() 176 callback->sendFailure(Response::ServerError( in innerCallFunctionOn() 210 Response ensureContext(V8InspectorImpl* inspector, int contextGroupId, in ensureContext() 215 return Response::InvalidParams( in ensureContext() 222 return Response::InvalidParams("invalid uniqueContextId"); in ensureContext() 224 if (!id) return Response::InvalidParams("uniqueContextId not found"); in ensureContext() 231 return Response::ServerError("Cannot find default execution context"); in ensureContext() 235 return Response in ensureContext() [all...] |
H A D | v8-debugger-agent-impl.h | 29 using protocol::Response; 47 Response enable(Maybe<double> maxScriptsCacheSize, 49 Response disable() override; 50 Response setBreakpointsActive(bool active) override; 51 Response setSkipAllPauses(bool skip) override; 52 Response setBreakpointByUrl( 59 Response setBreakpoint( 63 Response setBreakpointOnFunctionCall(const String16& functionObjectId, 66 Response setInstrumentationBreakpoint(const String16& instrumentation, 68 Response removeBreakpoin [all...] |
H A D | v8-heap-profiler-agent-impl.h | 23 using protocol::Response; 37 Response enable() override; 38 Response startTrackingHeapObjects(Maybe<bool> trackAllocations) override; 39 Response stopTrackingHeapObjects(Maybe<bool> reportProgress, 43 Response disable() override; 45 Response takeHeapSnapshot(Maybe<bool> reportProgress, 49 Response getObjectByHeapObjectId( 52 Response addInspectedHeapObject( 54 Response getHeapObjectId(const String16& objectId, 57 Response startSamplin [all...] |
H A D | v8-runtime-agent-impl.h | 55 using protocol::Response; 68 Response enable() override; 69 Response disable() override; 92 Response releaseObject(const String16& objectId) override; 93 Response getProperties( 104 Response releaseObjectGroup(const String16& objectGroup) override; 105 Response runIfWaitingForDebugger() override; 106 Response setCustomObjectFormatterEnabled(bool) override; 107 Response setMaxCallStackSizeToCapture(int) override; 108 Response discardConsoleEntrie [all...] |
H A D | v8-profiler-agent-impl.h | 25 using protocol::Response; 38 Response enable() override; 39 Response disable() override; 40 Response setSamplingInterval(int) override; 41 Response start() override; 42 Response stop(std::unique_ptr<protocol::Profiler::Profile>*) override; 44 Response startPreciseCoverage(Maybe<bool> binary, Maybe<bool> detailed, 47 Response stopPreciseCoverage() override; 48 Response takePreciseCoverage( 52 Response getBestEffortCoverag [all...] |
H A D | v8-heap-profiler-agent-impl.cc | 226 Response V8HeapProfilerAgentImpl::startTrackingHeapObjects( in startTrackingHeapObjects() 233 return Response::Success(); in startTrackingHeapObjects() 236 Response V8HeapProfilerAgentImpl::stopTrackingHeapObjects( in stopTrackingHeapObjects() 244 return Response::Success(); in stopTrackingHeapObjects() 247 Response V8HeapProfilerAgentImpl::enable() { in enable() 249 return Response::Success(); in enable() 252 Response V8HeapProfilerAgentImpl::disable() { in disable() 261 return Response::Success(); in disable() 264 Response V8HeapProfilerAgentImpl::takeHeapSnapshot( in takeHeapSnapshot() 268 if (!profiler) return Response in takeHeapSnapshot() [all...] |
H A D | v8-console-agent-impl.cc | 29 Response V8ConsoleAgentImpl::enable() { in enable() 30 if (m_enabled) return Response::Success(); in enable() 34 return Response::Success(); in enable() 37 Response V8ConsoleAgentImpl::disable() { in disable() 38 if (!m_enabled) return Response::Success(); in disable() 41 return Response::Success(); in disable() 44 Response V8ConsoleAgentImpl::clearMessages() { return Response::Success(); } in clearMessages()
|
H A D | injected-script.h | 57 using protocol::Response; 78 Response getProperties( 86 Response getInternalAndPrivateProperties( 98 Response wrapObject(v8::Local<v8::Value>, const String16& groupName, 101 Response wrapObject(v8::Local<v8::Value>, const String16& groupName, 106 Response wrapObjectMirror( 119 Response findObject(const RemoteObjectId&, v8::Local<v8::Value>*) const; 123 Response resolveCallArgument(protocol::Runtime::CallArgument*, 126 Response createExceptionDetails( 129 Response createExceptionDetail [all...] |
H A D | injected-script.cc | 80 callback->sendFailure(Response::InternalError()); in add() 84 callback->sendFailure(Response::InternalError()); in add() 107 callback->sendFailure(Response::InternalError()); in add() 183 Response response = scope.initialize(); in thenCallback() 228 Response response = scope.initialize(); in catchCallback() 321 Response response = scope.initialize(); in sendPromiseCollected() 326 callback->sendFailure(Response::ServerError("Promise was collected")); in sendPromiseCollected() 361 Response InjectedScript::getProperties( in getProperties() 390 Response response = wrapObjectMirror( in getProperties() 398 Response respons in getProperties() [all...] |
H A D | v8-profiler-agent-impl.cc | 220 Response V8ProfilerAgentImpl::enable() { in enable() 226 return Response::Success(); in enable() 229 Response V8ProfilerAgentImpl::disable() { in disable() 241 return Response::Success(); in disable() 244 Response V8ProfilerAgentImpl::setSamplingInterval(int interval) { in setSamplingInterval() 246 return Response::ServerError( in setSamplingInterval() 250 return Response::Success(); in setSamplingInterval() 277 Response V8ProfilerAgentImpl::start() { in start() 278 if (m_recordingCPUProfile) return Response::Success(); in start() 279 if (!m_enabled) return Response in start() [all...] |
H A D | remote-object-id.cc | 49 Response RemoteObjectId::parse(const String16& objectId, in parse() 53 return Response::ServerError("Invalid remote object id"); in parse() 55 return Response::Success(); in parse() 63 Response RemoteCallFrameId::parse(const String16& objectId, in parse() 67 return Response::ServerError("Invalid call frame id"); in parse() 69 return Response::Success(); in parse()
|
H A D | v8-console-agent-impl.h | 17 using protocol::Response; 27 Response enable() override; 28 Response disable() override; 29 Response clearMessages() override;
|
H A D | value-mirror.cc | 28 using protocol::Response; 34 Response toProtocolValue(v8::Local<v8::Context> context, 38 Response arrayToProtocolValue(v8::Local<v8::Context> context, in arrayToProtocolValue() 47 return Response::InternalError(); in arrayToProtocolValue() 49 Response response = toProtocolValue(context, value, maxDepth - 1, &element); in arrayToProtocolValue() 54 return Response::Success(); in arrayToProtocolValue() 57 Response objectToProtocolValue( in objectToProtocolValue() 64 return Response::InternalError(); in objectToProtocolValue() 69 return Response::InternalError(); in objectToProtocolValue() 81 return Response in objectToProtocolValue() [all...] |
H A D | value-mirror.h | 55 virtual protocol::Response buildRemoteObject( 69 virtual protocol::Response buildWebDriverValue( 91 protocol::Response toProtocolValue(v8::Local<v8::Context> context, 94 protocol::Response arrayToProtocolValue( 97 protocol::Response objectToProtocolValue(
|
H A D | remote-object-id.h | 14 using protocol::Response; 34 static Response parse(const String16&, std::unique_ptr<RemoteObjectId>*); 43 static Response parse(const String16&, std::unique_ptr<RemoteCallFrameId>*);
|
H A D | v8-inspector-session-impl.cc | 241 Response V8InspectorSessionImpl::findInjectedScript( in findInjectedScript() 247 return Response::ServerError("Cannot find context with specified id"); in findInjectedScript() 254 return Response::Success(); in findInjectedScript() 257 Response V8InspectorSessionImpl::findInjectedScript( in findInjectedScript() 260 return Response::ServerError("Cannot find context with specified id"); in findInjectedScript() 282 Response response = unwrapObject(toString16(objectId), object, context, in unwrapObject() 296 Response V8InspectorSessionImpl::unwrapObject(const String16& objectId, in unwrapObject() 301 Response response = RemoteObjectId::parse(objectId, &remoteId); in unwrapObject() 310 return Response::Success(); in unwrapObject()
|
H A D | v8-schema-agent-impl.h | 18 using protocol::Response; 28 Response getDomains(
|
H A D | v8-schema-agent-impl.cc | 19 Response V8SchemaAgentImpl::getDomains( in getDomains() 24 return Response::Success(); in getDomains()
|
H A D | v8-inspector-session-impl.h | 30 using protocol::Response; 56 Response findInjectedScript(int contextId, InjectedScript*&); 57 Response findInjectedScript(RemoteObjectIdBase*, InjectedScript*&); 69 Response unwrapObject(const String16& objectId, v8::Local<v8::Value>*,
|
/third_party/node/deps/undici/src/lib/fetch/ |
H A D | response.js | 34 class Response { 35 // Creates network error Response. 41 // Response object, given a new network error, "immutable", and this’s 43 const responseObject = new Response() 54 webidl.argumentLengthCheck(arguments, 1, { header: 'Response.json' }) 68 // 3. Let responseObject be the result of creating a Response object, given a new response, 71 const responseObject = new Response() 83 // Creates a redirect Response that redirects to url with status status. 87 webidl.argumentLengthCheck(arguments, 1, { header: 'Response.redirect' }) 110 // 4. Let responseObject be the result of creating a Response objec [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A 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;
|
H A 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/node/deps/npm/node_modules/minipass-fetch/lib/ |
H A D | response.js | 9 const INTERNALS = Symbol('Response internals') 11 class Response extends Body { 64 return new Response(clone(this), { 76 return 'Response' 80 module.exports = Response 82 Object.defineProperties(Response.prototype, {
|