/third_party/skia/tools/debugger/ |
D | DebugLayerManager.cpp | 22 void DebugLayerManager::setCommand(int nodeId, int frame, int command) { in setCommand() argument 23 auto* drawEvent = fDraws.find({frame, nodeId}); in setCommand() 26 "DebugLayerManager.\n", frame, nodeId); in setCommand() 33 auto relevantFrames = listFramesForNode(nodeId); in setCommand() 35 fDraws[{f, nodeId}].image = nullptr; in setCommand() 39 void DebugLayerManager::storeSkPicture(int nodeId, int frame, sk_sp<SkPicture> picture, in storeSkPicture() argument 41 const LayerKey k = {frame, nodeId}; in storeSkPicture() 69 void DebugLayerManager::drawLayerEventTo(SkSurface* surface, const int nodeId, const int frame) { in drawLayerEventTo() argument 70 auto& evt = fDraws[{frame, nodeId}]; in drawLayerEventTo() 75 sk_sp<SkImage> DebugLayerManager::getLayerAsImage(const int nodeId, const int frame) { in getLayerAsImage() argument [all …]
|
D | DebugLayerManager.h | 44 void storeSkPicture(int nodeId, int frame, sk_sp<SkPicture> picture, SkIRect dirty); 47 void setCommand(int nodeId, int frame, int command); 49 void drawLayerEventTo(SkSurface*, const int nodeId, const int frame); 75 sk_sp<SkImage> getLayerAsImage(const int nodeId, const int frame); 86 DrawEventSummary event(int nodeId, int frame) const; 89 int nodeId; member 104 std::vector<int> listFramesForNode(int nodeId) const; 107 void toJSON(SkJSONWriter&, UrlDataManager&, SkCanvas*, int nodeId, int frame); 119 int nodeId; // the render node id of the layer which was drawn to. member 122 return this->frame==b.frame && this->nodeId==b.nodeId;
|
D | DrawCommand.h | 334 const int nodeId,
|
D | DrawCommand.cpp | 1328 const int nodeId, in DrawImageRectLayerCommand() argument 1337 , fNodeId(nodeId) in DrawImageRectLayerCommand()
|
/third_party/skia/src/pdf/ |
D | SkPDFTag.cpp | 29 static SkString nodeIdToString(int nodeId) { in nodeIdToString() 31 idString.printf("node%08d", nodeId); in nodeIdToString() 145 for (int nodeId : nodeIds) { in appendNodeIdArray() local 146 SkString idString = SkPDFTagNode::nodeIdToString(nodeId); in appendNodeIdArray() 163 for (int nodeId : node.fAdditionalNodeIds) { in Copy() local 164 SkASSERT(!nodeMap->find(nodeId)); in Copy() 165 nodeMap->set(nodeId, dst); in Copy() 190 int SkPDFTagTree::createMarkIdForNodeId(int nodeId, unsigned pageIndex) { in createMarkIdForNodeId() argument 194 SkPDFTagNode** tagPtr = fNodeMap.find(nodeId); in createMarkIdForNodeId() 210 int SkPDFTagTree::createStructParentKeyForNodeId(int nodeId, unsigned pageIndex) { in createStructParentKeyForNodeId() argument [all …]
|
D | SkPDFTag.h | 28 int createMarkIdForNodeId(int nodeId, unsigned pageIndex); 32 int createStructParentKeyForNodeId(int nodeId, unsigned pageIndex); 34 void addNodeAnnotation(int nodeId, SkPDFIndirectReference annotationRef, unsigned pageIndex); 41 int nodeId; member
|
D | SkPDFDocumentPriv.h | 65 SkPDFLink(Type type, SkData* data, const SkRect& rect, int nodeId) in SkPDFLink() 69 , fNodeId(nodeId) {} in SkPDFLink() 122 int createMarkIdForNodeId(int nodeId); 126 int createStructParentKeyForNodeId(int nodeId);
|
D | SkPDFDocument.cpp | 529 int SkPDFDocument::createMarkIdForNodeId(int nodeId) { in createMarkIdForNodeId() argument 530 return fTagTree.createMarkIdForNodeId(nodeId, SkToUInt(this->currentPageIndex())); in createMarkIdForNodeId() 533 int SkPDFDocument::createStructParentKeyForNodeId(int nodeId) { in createStructParentKeyForNodeId() argument 534 return fTagTree.createStructParentKeyForNodeId(nodeId, SkToUInt(this->currentPageIndex())); in createStructParentKeyForNodeId()
|
D | SkPDFDevice.cpp | 73 ScopedOutputMarkedContentTags(int nodeId, SkPDFDocument* document, SkDynamicMemoryWStream* out) in ScopedOutputMarkedContentTags() argument 76 if (nodeId) { in ScopedOutputMarkedContentTags() 77 fMarkId = document->createMarkIdForNodeId(nodeId); in ScopedOutputMarkedContentTags()
|
/third_party/node/deps/v8/tools/turbolizer/src/ |
D | source-resolver.ts | 47 nodeId: number; property 249 for (const [nodeId, scriptOffset] of Object.entries<number>(map)) { constant 250 alternativeMap[nodeId] = { scriptOffset: scriptOffset, inliningId: -1 }; 255 for (const [nodeId, sourcePosition] of Object.entries<SourcePosition>(map)) { constant 257 console.log("Warning: undefined source position ", sourcePosition, " for nodeId ", nodeId); 265 this.nodePositionMap[nodeId] = sourcePosition; 270 this.positionToNodes.get(key).push(nodeId); 284 for (const nodeId of nodeIdsForPosition) { constant 285 nodeIds.add(nodeId); 293 for (const nodeId of nodeIds) { constant [all …]
|
D | text-view.ts | 133 const nodeId = anyToString(anyNodeId); constant 134 if (!this.nodeIdToHtmlElementsMap.has(nodeId)) { 135 this.nodeIdToHtmlElementsMap.set(nodeId, []); 137 this.nodeIdToHtmlElementsMap.get(nodeId).push(htmlElement); 159 for (const nodeId of nodeIds) { constant 160 const blockId = this.nodeIdToBlockId[nodeId]; constant 202 for (const nodeId of view.selection.selectedKeys()) { constant 203 const elements = this.nodeIdToHtmlElementsMap.get(nodeId);
|
D | schedule-view.ts | 63 function mkNodeLinkHandler(nodeId) { 69 view.selectionHandler.select([nodeId], true); 97 const nodeId = createElement("div", "node-id tag clickable", node.id); constant 98 nodeId.onclick = mkNodeLinkHandler(node.id); 99 view.addHtmlElementForNodeId(node.id, nodeId); 100 nodeEl.appendChild(nodeId);
|
D | node-label.ts | 6 if (origin.nodeId) { 7 return `#${origin.nodeId} in phase ${origin.phase}/${origin.reducer}`;
|
D | graph-view.ts | 24 return "" + n.nodeLabel.origin.nodeId; 685 const node = this.graph.nodeMap[origin.nodeId]; 689 selection.add(`${origin.nodeId}`);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/PBQP/ |
D | Solution.h | 38 void setSelection(GraphBase::NodeId nodeId, unsigned selection) { in setSelection() argument 39 selections[nodeId] = selection; in setSelection() 45 unsigned getSelection(GraphBase::NodeId nodeId) const { in getSelection() argument 46 SelectionsMap::const_iterator sItr = selections.find(nodeId); in getSelection()
|
/third_party/jsframework/runtime/vdom/ |
D | Node.ts | 79 this._ref = this.nodeId; 115 public get nodeId() { method in Node 119 public set nodeId(newNodeId: string) { method in Node
|
D | DocumentElement.ts | 36 delete doc.nodeMap[this.nodeId]; 78 delete this.ownerDocument.nodeMap[element.nodeId];
|
D | Document.ts | 112 delete this._nodeMap[el.nodeId];
|
D | Element.ts | 347 child.ownerDocument.nodeMap[child.nodeId] = child; 1172 doc.nodeMap[node.nodeId] = node;
|
/third_party/ltp/testcases/kernel/controllers/cpuset/cpuset_memory_spread_test/ |
D | cpuset_memory_spread_testset.sh | 148 local nodeId="$1" 149 local tmp="$(get_memsinfo_val $nodeId)" 151 set_memsinfo_val $nodeId $(($(get_memsinfo_val $nodeId)-$tmp))
|
/third_party/node/deps/v8/src/objects/ |
D | turbofan-types.tq | 247 value: Object, expectedType: TurbofanType, nodeId: Smi): Undefined { 252 Print('Type assertion failed! (value/expectedType/nodeId)'); 255 Print(nodeId);
|
/third_party/skia/experimental/wasm-skp-debugger/ |
D | debugger_bindings.cpp | 316 item.set("nodeId", key.nodeId); in getLayerKeys() 326 void setInspectedLayer(int nodeId) { in setInspectedLayer() argument 327 fInspectedLayer = nodeId; in setInspectedLayer() 586 .field("nodeId", &DebugLayerManager::LayerSummary::nodeId) in EMSCRIPTEN_BINDINGS()
|
/third_party/typescript/src/compiler/ |
D | binder.ts | 28 const nodeId = getNodeId(node); constant 29 if (visited.has(nodeId)) { 30 return visited.get(nodeId) || ModuleInstanceState.NonInstantiated; 32 visited.set(nodeId, undefined); 34 visited.set(nodeId, result);
|
D | emitter.ts | 5214 const nodeId = getNodeId(node); constant 5215 …return nodeIdToGeneratedName[nodeId] || (nodeIdToGeneratedName[nodeId] = generateNameForNode(node,…
|
/third_party/node/deps/v8/include/ |
D | js_protocol.pdl | 645 integer nodeId
|