Home
last modified time | relevance | path

Searched refs:nodeId (Results 1 - 20 of 20) sorted by relevance

/third_party/skia/tools/debugger/
H A DDebugLayerManager.cpp22 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()
32 // actually this does all of the events for this nodeId, but close enough. 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,
41 const LayerKey k = {frame, nodeId};
69 void DebugLayerManager::drawLayerEventTo(SkSurface* surface, const int nodeId, const int frame) { in drawLayerEventTo() argument
70 auto& evt = fDraws[{frame, nodeId}]; in drawLayerEventTo()
75 getLayerAsImage(const int nodeId, const int frame) getLayerAsImage() argument
115 event(int nodeId, int frame) const event() argument
179 getEventDebugCanvas(int nodeId, int frame) getEventDebugCanvas() argument
[all...]
H A DDebugLayerManager.h41 // Store an SkPicture under a given nodeId (and under the currently set frame number)
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);
57 // save the result by (nodeId, 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, in
119 int nodeId; // the render node id of the layer which was drawn to. global() member
[all...]
H A DDrawCommand.h334 const int nodeId,
H A DDrawCommand.cpp1328 const int nodeId, in DrawImageRectLayerCommand()
1337 , fNodeId(nodeId) in DrawImageRectLayerCommand()
1327 DrawImageRectLayerCommand(DebugLayerManager* layerManager, const int nodeId, const int frame, const SkRect& src, const SkRect& dst, const SkSamplingOptions& sampling, const SkPaint* paint, SkCanvas::SrcRectConstraint constraint) DrawImageRectLayerCommand() argument
/third_party/skia/src/pdf/
H A DSkPDFTag.cpp29 static SkString nodeIdToString(int nodeId) { in nodeIdToString()
31 idString.printf("node%08d", nodeId); in nodeIdToString()
145 for (int nodeId : nodeIds) { in appendNodeIdArray()
146 SkString idString = SkPDFTagNode::nodeIdToString(nodeId); in appendNodeIdArray()
163 for (int nodeId : node.fAdditionalNodeIds) { in Copy()
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, unsigne argument
301 addNodeAnnotation(int nodeId, SkPDFIndirectReference annotationRef, unsigned pageIndex) addNodeAnnotation() argument
353 int nodeId = fParentTreeAnnotationNodeIds[j]; makeStructTreeRoot() local
[all...]
H A DSkPDFTag.h28 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
H A DSkPDFDocumentPriv.h65 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);
H A DSkPDFDocument.cpp529 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()
H A DSkPDFDevice.cpp68 // If nodeId is not zero, outputs the tags to begin a marked-content sequence
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/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/PBQP/
H A DSolution.h36 /// @param nodeId Node id.
37 /// @param selection Selection for nodeId.
38 void setSelection(GraphBase::NodeId nodeId, unsigned selection) { in setSelection() argument
39 selections[nodeId] = selection; in setSelection()
43 /// @param nodeId Node id.
44 /// @return The selection for nodeId;
45 unsigned getSelection(GraphBase::NodeId nodeId) const { in getSelection()
46 SelectionsMap::const_iterator sItr = selections.find(nodeId); in getSelection()
/third_party/ltp/testcases/kernel/controllers/cpuset/cpuset_memory_spread_test/
H A Dcpuset_memory_spread_testset.sh145 # account_meminfo <nodeId>
148 local nodeId="$1"
149 local tmp="$(get_memsinfo_val $nodeId)"
151 set_memsinfo_val $nodeId $(($(get_memsinfo_val $nodeId)-$tmp))
/third_party/skia/experimental/wasm-skp-debugger/
H A Ddebugger_bindings.cpp316 item.set("nodeId", key.nodeId); in getLayerKeys()
322 // When set to a valid layer index, causes this class to playback the layer draw event at nodeId
323 // on frame fp. No validation of nodeId or fp is performed, this must be valid values obtained
326 void setInspectedLayer(int nodeId) { in setInspectedLayer() argument
327 fInspectedLayer = nodeId; in setInspectedLayer()
586 .field("nodeId", &DebugLayerManager::LayerSummary::nodeId) in EMSCRIPTEN_BINDINGS()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/video/
H A DvktVideoBaseDecodeUtils.cpp2816 int32_t nodeId = -1;
2823 nodeId = pictureParametersObject->GetPpsId(isNodeId);
2824 if (!((deUint32)nodeId < VkParserVideoPictureParameters::MAX_PPS_IDS)) {
2842 nodeId = pictureParametersObject->GetSpsId(isNodeId);
2843 if (!((deUint32)nodeId < VkParserVideoPictureParameters::MAX_SPS_IDS)) {
2851 if (spsChildId == nodeId) {
2866 nodeId = pictureParametersObject->GetVpsId(isNodeId);
2867 if (!((deUint32)nodeId < VkParserVideoPictureParameters::MAX_VPS_IDS)) {
2875 if (vpsParentId == nodeId) {
/third_party/typescript/lib/
H A DtypingsInstaller.js[all...]
H A Dtsc.js[all...]
H A Dtsserverlibrary.js[all...]
H A Dtypescript.js[all...]
H A DtypescriptServices.js[all...]
H A Dtsserver.js[all...]
/third_party/node/test/fixtures/snapshot/
H A Dtypescript.js[all...]

Completed in 213 milliseconds