/third_party/typescript/tests/baselines/reference/ |
D | genericWithIndexerOfTypeParameterType1.types | 5 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; }
|
D | indexer2.symbols | 8 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))
|
D | indexer2A.symbols | 9 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))
|
D | indexer2.types | 4 hasOwnProperty(objectId: number) : boolean; 5 >hasOwnProperty : (objectId: number) => boolean 6 >objectId : number 8 [objectId: number] : IHeapObjectProperty[]; 9 >objectId : number
|
D | indexer2A.types | 9 hasOwnProperty(objectId: number): boolean 10 >hasOwnProperty : (objectId: number) => boolean 11 >objectId : number 13 [objectId: number]: IHeapObjectProperty[] 14 >objectId : number
|
D | genericWithIndexerOfTypeParameterType1.symbols | 6 private objects = <{ [objectId: string]: T; }>{}; 8 >objectId : Symbol(objectId, Decl(genericWithIndexerOfTypeParameterType1.ts, 1, 26))
|
D | indexer2.js | 4 hasOwnProperty(objectId: number) : boolean; 5 [objectId: number] : IHeapObjectProperty[];
|
D | indexer2A.js | 5 hasOwnProperty(objectId: number): boolean 6 [objectId: number]: IHeapObjectProperty[]
|
D | indexer2A.errors.txt | 8 hasOwnProperty(objectId: number): boolean 11 [objectId: number]: IHeapObjectProperty[]
|
D | genericWithIndexerOfTypeParameterType1.js | 3 private objects = <{ [objectId: string]: T; }>{};
|
/third_party/node/deps/v8/src/inspector/ |
D | remote-object-id.cc | 26 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()
|
D | v8-inspector-session-impl.cc | 258 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()
|
D | v8-runtime-agent-impl.h | 84 const String16& expression, Maybe<String16> objectId, 92 Response releaseObject(const String16& objectId) override; 94 const String16& objectId, Maybe<bool> ownProperties,
|
D | v8-runtime-agent-impl.cc | 368 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()
|
D | v8-inspector-session-impl.h | 69 Response unwrapObject(const String16& objectId, v8::Local<v8::Value>*, 91 bool unwrapObject(std::unique_ptr<StringBuffer>*, StringView objectId,
|
D | injected-script.cc | 531 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()
|
D | v8-heap-profiler-agent-impl.h | 54 Response getHeapObjectId(const String16& objectId,
|
/third_party/node/test/fixtures/wpt/resources/ |
D | channel.sub.js | 702 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/ |
D | ServerDoers.cpp | 67 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/ |
D | indexer2.ts | 3 hasOwnProperty(objectId: number) : boolean; 4 [objectId: number] : IHeapObjectProperty[];
|
D | indexer2A.ts | 4 hasOwnProperty(objectId: number): boolean 5 [objectId: number]: IHeapObjectProperty[]
|
D | genericWithIndexerOfTypeParameterType1.ts | 2 private objects = <{ [objectId: string]: T; }>{};
|
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/ |
D | SpirvShaderControlFlow.cpp | 665 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/ |
D | Client.cpp | 70 cmd.objectId = object->id; in DestroyAllObjects() 81 cmd.objectId = object->id; in DestroyAllObjects()
|
/third_party/node/lib/internal/repl/ |
D | utils.js | 331 } else if (result.objectId) { 349 objectId: result.objectId, property
|