/third_party/node/deps/v8/src/inspector/ |
D | v8-inspector-impl.cc | 80 return contextGroupId(InspectedContext::contextId(context)); in contextGroupId() 83 int V8InspectorImpl::contextGroupId(int contextId) const { in contextGroupId() 84 auto it = m_contextIdToGroupIdMap.find(contextId); in contextGroupId() 165 int contextId) const { in getContext() 166 if (!groupId || !contextId) return nullptr; in getContext() 171 auto contextIt = contextGroupIt->second->find(contextId); in getContext() 177 InspectedContext* V8InspectorImpl::getContext(int contextId) const { in getContext() 178 return getContext(contextGroupId(contextId), contextId); in getContext() 181 v8::MaybeLocal<v8::Context> V8InspectorImpl::contextById(int contextId) { in contextById() argument 182 InspectedContext* context = getContext(contextId); in contextById() [all …]
|
D | v8-console-message.h | 52 v8::Local<v8::Context> v8Context, int contextId, int groupId, 61 const String16& message, int contextId, v8::Local<v8::Value> exception, 72 void contextDestroyed(int contextId); 121 void contextDestroyed(int contextId); 124 bool shouldReportDeprecationMessage(int contextId, const String16& method); 125 int count(int contextId, const String16& id); 126 bool countReset(int contextId, const String16& id); 127 void time(int contextId, const String16& id); 128 double timeLog(int contextId, const String16& id); 129 double timeEnd(int contextId, const String16& id); [all …]
|
D | v8-console-message.cc | 258 int contextId = m_contextId; in wrapArguments() local 259 if (!m_arguments.size() || !contextId) return nullptr; in wrapArguments() 261 inspector->getContext(contextGroupId, contextId); in wrapArguments() 289 inspectedContext = inspector->getContext(contextGroupId, contextId); in wrapArguments() 301 inspectedContext = inspector->getContext(contextGroupId, contextId); in wrapArguments() 429 v8::Local<v8::Context> v8Context, int contextId, int groupId, in createForConsoleAPI() argument 446 message->m_contextId = contextId; in createForConsoleAPI() 491 v8::Isolate* isolate, const String16& message, int contextId, in createForException() argument 499 if (contextId && !exception.IsEmpty()) { in createForException() 500 consoleMessage->m_contextId = contextId; in createForException() [all …]
|
D | v8-runtime-agent-impl.cc | 212 Maybe<String16> uniqueContextId, int* contextId) { in ensureContext() argument 218 *contextId = executionContextId.fromJust(); in ensureContext() 225 *contextId = id; in ensureContext() 232 *contextId = InspectedContext::contextId(defaultContext); in ensureContext() 263 int contextId = 0; in evaluate() local 266 std::move(uniqueContextId), &contextId); in evaluate() 272 InjectedScript::ContextScope scope(m_session, contextId); in evaluate() 405 int contextId = 0; in callFunctionOn() local 408 /* uniqueContextId */ {}, &contextId); in callFunctionOn() 413 InjectedScript::ContextScope scope(m_session, contextId); in callFunctionOn() [all …]
|
D | v8-inspector-impl.h | 68 int contextGroupId(int contextId) const; 86 v8::MaybeLocal<v8::Context> contextById(int contextId) override; 87 V8DebuggerId uniqueDebuggerId(int contextId) override; 88 void contextCollected(int contextGroupId, int contextId); 123 void discardInspectedContext(int contextGroupId, int contextId); 126 InspectedContext* getContext(int groupId, int contextId) const; 127 InspectedContext* getContext(int contextId) const;
|
D | inspected-context.cc | 20 int groupId, int contextId) in WeakCallbackData() argument 24 m_contextId(contextId) {} in WeakCallbackData() 51 const V8ContextInfo& info, int contextId) in InspectedContext() argument 54 m_contextId(contextId), in InspectedContext() 60 v8::debug::SetContextId(info.context, contextId); in InspectedContext() 97 int InspectedContext::contextId(v8::Local<v8::Context> context) { in contextId() function in v8_inspector::InspectedContext
|
D | inspected-context.h | 39 static int contextId(v8::Local<v8::Context>); 42 int contextId() const { return m_contextId; } in contextId() function 65 InspectedContext(V8InspectorImpl*, const V8ContextInfo&, int contextId);
|
D | v8-debugger.cc | 148 int contextId; in getCompiledScripts() local 149 if (!script->ContextId().To(&contextId)) continue; in getCompiledScripts() 150 if (m_inspector->contextGroupId(contextId) != contextGroupId) continue; in getCompiledScripts() 425 InspectedContext::contextId(pausedContext), exception, in handleProgramBreak() 482 int contextId; in ScriptCompiled() local 483 if (!script->ContextId().To(&contextId)) return; in ScriptCompiled() 489 m_inspector->contextGroupId(contextId), in ScriptCompiled() 559 int contextId; in IsFunctionBlackboxed() local 560 if (!script->ContextId().To(&contextId)) return false; in IsFunctionBlackboxed() 565 m_inspector->contextGroupId(contextId), in IsFunctionBlackboxed() [all …]
|
D | v8-inspector-session-impl.cc | 85 return InspectedContext::contextId(context); in executionContextId() 242 int contextId, InjectedScript*& injectedScript) { in findInjectedScript() argument 245 m_inspector->getContext(m_contextGroupId, contextId); in findInjectedScript() 261 return findInjectedScript(objectId->contextId(), injectedScript); in findInjectedScript() 326 findInjectedScript(InspectedContext::contextId(context), injectedScript); in wrapObject() 340 findInjectedScript(InspectedContext::contextId(context), injectedScript); in wrapTable()
|
D | custom-preview.cc | 31 int contextId = InspectedContext::contextId(context); in reportError() local 32 int groupId = inspector->contextGroupId(contextId); in reportError() 43 context, contextId, groupId, inspector, in reportError() 61 inspector->getContext(InspectedContext::contextId(context)); in getInjectedScript()
|
D | v8-debugger-agent-impl.cc | 788 int contextId = it->second->executionContextId(); in getPossibleBreakpoints() local 789 InspectedContext* inspected = m_inspector->getContext(contextId); in getPossibleBreakpoints() 833 int contextId = script->executionContextId(); in continueToLocation() local 834 InspectedContext* inspected = m_inspector->getContext(contextId); in continueToLocation() 964 int contextId = script->executionContextId(); in setBreakpointImpl() local 965 InspectedContext* inspected = m_inspector->getContext(contextId); in setBreakpointImpl() 1028 int contextId = it->second->executionContextId(); in setScriptSource() local 1029 InspectedContext* inspected = m_inspector->getContext(contextId); in setScriptSource() 1447 int contextId = iterator->GetContextId(); in currentCallFrames() local 1449 if (contextId) m_session->findInjectedScript(contextId, injectedScript); in currentCallFrames() [all …]
|
D | v8-console.cc | 47 m_contextId(InspectedContext::contextId(m_context)), in ConsoleHelper() 53 int contextId() const { return m_contextId; } in contextId() function in v8_inspector::__anon1e22760f0111::ConsoleHelper 322 helper.consoleMessageStorage()->count(helper.contextId(), identifier); in Count() 341 if (!helper.consoleMessageStorage()->countReset(helper.contextId(), in CountReset() 403 if (helper.consoleMessageStorage()->hasTimer(helper.contextId(), timerId)) { in timeFunction() 410 helper.consoleMessageStorage()->time(helper.contextId(), timerId); in timeFunction() 421 if (!helper.consoleMessageStorage()->hasTimer(helper.contextId(), timerId)) { in timeEndFunction() 433 helper.consoleMessageStorage()->timeLog(helper.contextId(), title); in timeEndFunction() 436 helper.consoleMessageStorage()->timeEnd(helper.contextId(), title); in timeEndFunction() 738 helper.contextId()); in inspectImpl()
|
D | remote-object-id.h | 19 int contextId() const { return m_injectedScriptId; } in contextId() function
|
D | injected-script.cc | 663 m_context->contextId(), objectGroup, wrapMode, in addPromiseCallback() 734 if (remoteObjectId->contextId() != m_context->contextId() || in resolveCallArgument() 1031 m_context->contextId(), id); in bindObject() 1046 inspector->getContext(InspectedContext::contextId(context)); in bindRemoteObjectIfNeeded()
|
D | v8-inspector-session-impl.h | 56 Response findInjectedScript(int contextId, InjectedScript*&);
|
D | v8-debugger-agent-impl.h | 154 void didPause(int contextId, v8::Local<v8::Value> exception,
|
D | v8-heap-profiler-agent-impl.cc | 65 InspectedContext::contextId(creationContext)); in GetName()
|
/third_party/jsframework/runtime/main/page/ |
D | OffscreenCanvas.ts | 17 …public getContext(contextId: '2d', options?: CanvasRenderingContext2DSettings): OffscreenCanvasRen… 50 …getContext: (contextId: '2d', options?: CanvasRenderingContext2DSettings)=>OffscreenCanvasRenderin…
|
/third_party/jsframework/runtime/main/extend/systemplugin/napi/ |
D | ohos_userIAM_userAuth.js | 22 const contextId = 1234 80 return contextId;
|
/third_party/node/test/parallel/ |
D | test-inspector-vm-global-accessors-sideeffects.js | 21 contextId: 2 // context's id property
|
D | test-inspector-vm-global-accessors-getter-sideeffect.js | 25 contextId: 2 // context's id property
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/ |
D | FrameCapture.cpp | 172 std::ostream &operator<<(std::ostream &os, gl::ContextID contextId) in operator <<() argument 174 os << static_cast<int>(contextId.value); in operator <<() 186 : contextId(contextIdIn), captureLabel(captureLabelIn) in FmtCapturePrefix() 188 gl::ContextID contextId; member 203 if (fmt.contextId == kSharedContextId) in operator <<() 207 else if (fmt.contextId != kNoContextId) in operator <<() 209 os << "_context" << fmt.contextId; in operator <<() 229 : contextId(contextIdIn), frameIndex(frameIndexIn), partId(partIdIn) in FmtReplayFunction() 231 gl::ContextID contextId; member 240 if (fmt.contextId == kSharedContextId) in operator <<() [all …]
|
/third_party/node/deps/v8/include/ |
D | v8-inspector.h | 322 virtual v8::MaybeLocal<v8::Context> contextById(int contextId) = 0; 323 virtual V8DebuggerId uniqueDebuggerId(int contextId) = 0;
|
/third_party/vk-gl-cts/modules/egl/ |
D | teglImageFormatTests.cpp | 155 ImageApi (const Library& egl, int contextId, EGLDisplay display, EGLSurface surface); 165 ImageApi::ImageApi (const Library& egl, int contextId, EGLDisplay display, EGLSurface surface) in ImageApi() argument 167 , m_contextId (contextId) in ImageApi() 297 …GLESImageApi (const Library& egl, const glw::Functions& gl, int contextId, tcu::TestLog& log, … 307 GLESImageApi::GLESImageApi (const Library& egl, const glw::Functions& gl, int contextId, tcu::TestL… in GLESImageApi() argument 308 : ImageApi (egl, contextId, display, surface) in GLESImageApi()
|
/third_party/node/lib/internal/repl/ |
D | utils.js | 311 contextId: repl[contextSymbol], property
|