Home
last modified time | relevance | path

Searched refs:objectId (Results 1 – 25 of 39) sorted by relevance

12

/third_party/typescript/tests/baselines/reference/
DgenericWithIndexerOfTypeParameterType1.types5 private objects = <{ [objectId: string]: T; }>{};
6 >objects : { [objectId: string]: T; }
7 ><{ [objectId: string]: T; }>{} : { [objectId: string]: T; }
8 >objectId : string
12 >array : () => { [objectId: string]: T; }
15 >this.objects : { [objectId: string]: T; }
17 >objects : { [objectId: string]: T; }
28 >lazyArray.array() : { [objectId: string]: string; }
29 >lazyArray.array : () => { [objectId: string]: string; }
31 >array : () => { [objectId: string]: string; }
Dindexer2.symbols8 hasOwnProperty(objectId: number) : boolean;
10 >objectId : Symbol(objectId, Decl(indexer2.ts, 2, 23))
12 [objectId: number] : IHeapObjectProperty[];
13 >objectId : Symbol(objectId, Decl(indexer2.ts, 3, 9))
Dindexer2A.symbols9 hasOwnProperty(objectId: number): boolean
11 >objectId : Symbol(objectId, Decl(indexer2A.ts, 3, 19))
13 [objectId: number]: IHeapObjectProperty[]
14 >objectId : Symbol(objectId, Decl(indexer2A.ts, 4, 5))
Dindexer2.types4 hasOwnProperty(objectId: number) : boolean;
5 >hasOwnProperty : (objectId: number) => boolean
6 >objectId : number
8 [objectId: number] : IHeapObjectProperty[];
9 >objectId : number
Dindexer2A.types9 hasOwnProperty(objectId: number): boolean
10 >hasOwnProperty : (objectId: number) => boolean
11 >objectId : number
13 [objectId: number]: IHeapObjectProperty[]
14 >objectId : number
DgenericWithIndexerOfTypeParameterType1.symbols6 private objects = <{ [objectId: string]: T; }>{};
8 >objectId : Symbol(objectId, Decl(genericWithIndexerOfTypeParameterType1.ts, 1, 26))
Dindexer2.js4 hasOwnProperty(objectId: number) : boolean;
5 [objectId: number] : IHeapObjectProperty[];
Dindexer2A.js5 hasOwnProperty(objectId: number): boolean
6 [objectId: number]: IHeapObjectProperty[]
Dindexer2A.errors.txt8 hasOwnProperty(objectId: number): boolean
11 [objectId: number]: IHeapObjectProperty[]
DgenericWithIndexerOfTypeParameterType1.js3 private objects = <{ [objectId: string]: T; }>{};
/third_party/node/deps/v8/src/inspector/
Dremote-object-id.cc26 bool RemoteObjectIdBase::parseId(const String16& objectId) { in parseId() argument
28 size_t firstDotPos = objectId.find(dot); in parseId()
31 int64_t isolateId = objectId.substring(0, firstDotPos).toInteger64(&ok); in parseId()
34 size_t secondDotPos = objectId.find(dot, firstDotPos); in parseId()
37 objectId.substring(firstDotPos, secondDotPos - firstDotPos) in parseId()
41 int id = objectId.substring(secondDotPos).toInteger(&ok); in parseId()
49 Response RemoteObjectId::parse(const String16& objectId, in parse() argument
52 if (!remoteObjectId->parseId(objectId)) in parse()
63 Response RemoteCallFrameId::parse(const String16& objectId, in parse() argument
66 if (!remoteCallFrameId->parseId(objectId)) in parse()
Dv8-inspector-session-impl.cc258 RemoteObjectIdBase* objectId, InjectedScript*& injectedScript) { in findInjectedScript() argument
259 if (objectId->isolateId() != m_inspector->isolateId()) in findInjectedScript()
261 return findInjectedScript(objectId->contextId(), injectedScript); in findInjectedScript()
278 std::unique_ptr<StringBuffer>* error, StringView objectId, in unwrapObject() argument
282 Response response = unwrapObject(toString16(objectId), object, context, in unwrapObject()
296 Response V8InspectorSessionImpl::unwrapObject(const String16& objectId, in unwrapObject() argument
301 Response response = RemoteObjectId::parse(objectId, &remoteId); in unwrapObject()
Dv8-runtime-agent-impl.h84 const String16& expression, Maybe<String16> objectId,
92 Response releaseObject(const String16& objectId) override;
94 const String16& objectId, Maybe<bool> ownProperties,
Dv8-runtime-agent-impl.cc368 const String16& expression, Maybe<String16> objectId, in callFunctionOn() argument
375 if (objectId.isJust() && executionContextId.isJust()) { in callFunctionOn()
380 if (!objectId.isJust() && !executionContextId.isJust()) { in callFunctionOn()
390 if (objectId.isJust()) { in callFunctionOn()
391 InjectedScript::ObjectScope scope(m_session, objectId.fromJust()); in callFunctionOn()
429 const String16& objectId, Maybe<bool> ownProperties, in getProperties() argument
442 InjectedScript::ObjectScope scope(m_session, objectId); in getProperties()
477 Response V8RuntimeAgentImpl::releaseObject(const String16& objectId) { in releaseObject() argument
478 InjectedScript::ObjectScope scope(m_session, objectId); in releaseObject()
481 scope.injectedScript()->releaseObject(objectId); in releaseObject()
Dv8-inspector-session-impl.h69 Response unwrapObject(const String16& objectId, v8::Local<v8::Value>*,
91 bool unwrapObject(std::unique_ptr<StringBuffer>*, StringView objectId,
Dinjected-script.cc531 void InjectedScript::releaseObject(const String16& objectId) { in releaseObject() argument
533 Response response = RemoteObjectId::parse(objectId, &remoteId); in releaseObject()
687 Response InjectedScript::findObject(const RemoteObjectId& objectId, in findObject() argument
689 auto it = m_idToWrappedObject.find(objectId.id()); in findObject()
696 String16 InjectedScript::objectGroupName(const RemoteObjectId& objectId) const { in objectGroupName()
697 if (objectId.id() <= 0) return String16(); in objectGroupName()
698 auto it = m_idToObjectGroupName.find(objectId.id()); in objectGroupName()
Dv8-heap-profiler-agent-impl.h54 Response getHeapObjectId(const String16& objectId,
/third_party/node/test/fixtures/wpt/resources/
Dchannel.sub.js702 constructor(type, objectId) { argument
704 this.objectId = objectId;
724 if (remoteObjectsById.has(this.objectId)) {
725 return remoteObjectsById.get(this.objectId);
736 remoteObjectsById.delete(this.objectId);
800 outputValue.objectId = lastObjectId++;
802 serialized.objectId = outputValue.objectId;
832 objectId: item.objectId property
882 if (serialized.objectId === undefined) {
946 const {type, value, objectId} = item;
[all …]
/third_party/skia/third_party/externals/dawn/generator/templates/dawn_wire/server/
DServerDoers.cpp67 bool Server::DoDestroyObject(ObjectType objectType, ObjectId objectId) {
69 if (objectId == 0) {
76 auto* data = {{type.name.CamelCase()}}Objects().Get(objectId);
81 if (!UntrackDeviceChild(data->deviceInfo, objectType, objectId)) {
114 {{type.name.CamelCase()}}Objects().Free(objectId);
/third_party/typescript/tests/cases/compiler/
Dindexer2.ts3 hasOwnProperty(objectId: number) : boolean;
4 [objectId: number] : IHeapObjectProperty[];
Dindexer2A.ts4 hasOwnProperty(objectId: number): boolean
5 [objectId: number]: IHeapObjectProperty[]
DgenericWithIndexerOfTypeParameterType1.ts2 private objects = <{ [objectId: string]: T; }>{};
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
DSpirvShaderControlFlow.cpp665 auto objectId = Object::ID(insn.word(2)); in LoadPhi() local
667 auto storageIt = state->routine->phis.find(objectId); in LoadPhi()
671 auto &dst = state->createIntermediate(objectId, type.componentCount); in LoadPhi()
675 SPIRV_SHADER_DBG("LoadPhi({0}.{1}): {2}", objectId, i, storage[i]); in LoadPhi()
683 auto objectId = Object::ID(insn.word(2)); in StorePhi() local
685 auto storageIt = state->routine->phis.find(objectId); in StorePhi()
706 objectId, i, currentBlock, blockId, varId, in.UInt(i), mask); in StorePhi()
712 SPIRV_SHADER_DBG("StorePhi({0}.{1}): {2}", objectId, i, As<SIMD::UInt>(storage[i])); in StorePhi()
/third_party/skia/third_party/externals/dawn/src/dawn_wire/client/
DClient.cpp70 cmd.objectId = object->id; in DestroyAllObjects()
81 cmd.objectId = object->id; in DestroyAllObjects()
/third_party/node/lib/internal/repl/
Dutils.js331 } else if (result.objectId) {
349 objectId: result.objectId, property

12