Home
last modified time | relevance | path

Searched refs:depth (Results 101 - 125 of 228) sorted by relevance

12345678910

/foundation/arkui/ace_engine/frameworks/core/event/
H A Dtouch_event.h273 void Dump(std::list<std::pair<int32_t, std::string>>& dumpList, int32_t depth) const;
284 void Dump(std::list<std::pair<int32_t, std::string>>& dumpList, int32_t depth) const;
293 int32_t depth = 0; member
/foundation/arkui/ace_engine/frameworks/core/pipeline/base/
H A Delement.cpp165 void Element::DumpTree(int32_t depth) in DumpTree() argument
172 DumpLog::GetInstance().Print(depth, AceType::TypeName(this), children_.size()); in DumpTree()
176 item->DumpTree(depth + 1); in DumpTree()
/foundation/arkui/ace_engine/frameworks/core/components_ng/event/
H A Dfocus_hub.h809 void DumpFocusTree(int32_t depth, bool hasJson = false);
810 void DumpFocusNodeTree(int32_t depth);
811 void DumpFocusScopeTree(int32_t depth);
1124 void DumpFocusNodeTreeInJson(int32_t depth);
1125 void DumpFocusScopeTreeInJson(int32_t depth);
H A Dtouch_event.h32 int32_t depth = 0; member
/foundation/arkui/ace_engine/adapter/ohos/osal/
H A Djs_accessibility_manager.h259 void DumpTree(int32_t depth, int64_t nodeID, bool isDumpSimplify = false) override;
447 void DumpTreeNG(const RefPtr<NG::FrameNode>& parent, int32_t depth,
454 const RefPtr<NG::FrameNode>& node, int32_t depth, const CommonProperty& commonProperty, int32_t childSize);
456 int32_t depth, int64_t nodeID, const CommonProperty& commonProperty);
532 const RefPtr<NG::FrameNode>& node, int32_t depth, const CommonProperty& commonProperty, int32_t childSize);
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/oh_adapter/src/
H A Drd_json_object.cpp131 int depth = -1; in GetDeep() local
134 depth = std::max(depth, GetDeep(child) + 1); in GetDeep()
137 jsonDeep_ = depth; in GetDeep()
138 return depth; in GetDeep()
/foundation/graphic/graphic_2d/rosen/modules/render_service_profiler/
H A Drs_profiler_base.cpp950 std::unordered_map<NodeId, uint32_t>& mapNode2Count, int depth) in PerfTreeFlatten()
961 if (child && child->GetType() != RSRenderNodeType::EFFECT_NODE && depth < depthToAnalyze) { in PerfTreeFlatten()
962 nodeSet.emplace_back(child->id_, depth + 1); in PerfTreeFlatten()
967 drawCmdListCount += PerfTreeFlatten(child, nodeSet, mapNode2Count, depth + 1); in PerfTreeFlatten()
1129 uint32_t depth = 0; in GetNodeDepth() local
1130 for (auto curNode = node; curNode != nullptr; depth++) { in GetNodeDepth()
1133 return depth; in GetNodeDepth()
948 PerfTreeFlatten(const std::shared_ptr<RSRenderNode> node, std::vector<std::pair<NodeId, uint32_t>>& nodeSet, std::unordered_map<NodeId, uint32_t>& mapNode2Count, int depth) PerfTreeFlatten() argument
/foundation/arkui/ace_engine/frameworks/core/focus/
H A Dfocus_node.h164 virtual void DumpFocusTree(int32_t depth);
345 void DumpFocusTree(int32_t depth) override;
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/libcoap/include/coap2/
H A Dcoap_dtls.h93 * @param depth Depth in cert chain. If 0, then client cert, else a CA
104 unsigned depth,
202 uint8_t cert_chain_verify_depth; /**< recommended depth is 3 */
/device/soc/rockchip/rk3568/hardware/omx_il/osal/
H A DRockchip_OSAL_OHOS.h102 OMX_BOOL Rockchip_OSAL_Check_Use_FBCMode(OMX_VIDEO_CODINGTYPE codecId, int32_t depth, ROCKCHIP_OMX_BASEPORT *pPort);
/foundation/arkui/ace_engine/adapter/preview/osal/
H A Devent_report.cpp76 void EventReport::ReportPageDepthOverflow(const std::string& pageUrl, int32_t depth, int32_t threshold) {} in ReportPageDepthOverflow() argument
/foundation/arkui/ace_engine/test/mock/base/
H A Dmock_event_report.cpp67 void EventReport::ReportPageDepthOverflow(const std::string& pageUrl, int32_t depth, int32_t threshold) {} in ReportPageDepthOverflow() argument
/foundation/graphic/graphic_3d/lume/LumeRender/src/vulkan/
H A Dplatform_hardware_buffer_util_vk.cpp64 { desc.width, desc.height, desc.depth }, // extent in GetHwBufferImageCreateInfo()
H A Drender_backend_vk.cpp1368 clearValue.depthStencil.depth = ref.clearValue.depthStencil.depth;
1383 // (or stencilLoadOp, if the attachment has a depth/stencil format) of VK_ATTACHMENT_LOAD_OP_CLEAR
1536 { { (int32_t)ib.srcOffsets[0].width, (int32_t)ib.srcOffsets[0].height, (int32_t)ib.srcOffsets[0].depth },
1538 (int32_t)ib.srcOffsets[1].depth } }, // srcOffsets[2]
1540 { { (int32_t)ib.dstOffsets[0].width, (int32_t)ib.dstOffsets[0].height, (int32_t)ib.dstOffsets[0].depth },
1542 (int32_t)ib.dstOffsets[1].depth } }, // dstOffsets[2]
1619 const VkExtent3D imageSize { imageDesc.width >> mip, imageDesc.height >> mip, imageDesc.depth };
1624 Math::min(imageSize.depth - imageOffset.depth, bufferImageCop
[all...]
/foundation/ability/ability_base/test/unittest/want/
H A Dwant_params_test.cpp266 * @brief Helper function to generate a wantParam with desired nested depth.
267 * @param depth the desired depth.
269 WantParams MaliciousRecursionGenerator(int depth) in MaliciousRecursionGenerator() argument
272 if (depth <= 1) { in MaliciousRecursionGenerator()
277 wp.SetParam(std::to_string(depth), AAFwk::WantParamWrapper::Box(MaliciousRecursionGenerator(depth-1))); in MaliciousRecursionGenerator()
285 * @tc.desc: Test within the recursion depth limits when marshalling with nested wantParam.
298 * @tc.desc: Test exceeding the recursion depth limits when marshalling with nested wantParam.
311 * @tc.desc: Test exceeding the recursion depth limit
1134 int depth = 1; HWTEST_F() local
[all...]
/foundation/multimedia/media_library/frameworks/services/media_mtp/src/
H A Dmtp_medialibrary_manager.cpp526 if (context->depth == MTP_ALL_DEPTH && (context->handle == 0 || context->handle == MTP_ALL_HANDLE_ID)) { in GetObjectPropList()
528 context->depth = 0; in GetObjectPropList()
530 if (!(context->depth == 0 || context->depth == 1)) { in GetObjectPropList()
531 MEDIA_ERR_LOG("depth error"); in GetObjectPropList()
537 if (context->depth == 0) { in GetObjectPropList()
546 if (context->depth == 1) { in GetObjectPropList()
/foundation/graphic/graphic_3d/lume/LumeRender/src/device/
H A Dgpu_resource_manager.cpp77 // we need to know if image is a depth format when binding to descriptor set as read only
157 if (desc.width == 0 || desc.height == 0 || desc.depth == 0) { in ValidateGpuImageDesc()
159 desc.depth); in ValidateGpuImageDesc()
162 if (desc.width > MAX_IMAGE_EXTENT || desc.height > MAX_IMAGE_EXTENT || desc.depth > MAX_IMAGE_EXTENT) { in ValidateGpuImageDesc()
164 MAX_IMAGE_EXTENT, desc.width, desc.height, desc.depth); in ValidateGpuImageDesc()
218 const Size3D imageSize { desc.width >> mip, desc.height >> mip, desc.depth }; in ValidateGpuImageCopy()
220 (copy.imageOffset.depth >= imageSize.depth)) { in ValidateGpuImageCopy()
224 imageSize.width, imageSize.height, imageSize.depth, copy.imageOffset.width, copy.imageOffset.height, in ValidateGpuImageCopy()
225 copy.imageOffset.depth, nam in ValidateGpuImageCopy()
[all...]
/foundation/graphic/graphic_3d/lume/Lume_3D/src/gltf/
H A Dgltf2_exporter.cpp590 uint32_t depth; member
595 if (depth > rhs.depth) {
598 if (depth < rhs.depth) {
608 return (depth == rhs.depth) && (node == rhs.node);
620 uint32_t depth = 0; in FindSkeletonRoot() local
622 ++depth; in FindSkeletonRoot()
624 depths.push_back({ depth, join in FindSkeletonRoot()
[all...]
/device/soc/rockchip/common/sdk_linux/drivers/gpu/drm/rockchip/
H A Drockchip_drm_fbdev.c92 DRM_DEBUG_KMS("FB [%dx%d]-%d kvaddr=%p offset=%ld size=%zu\n", fb->width, fb->height, fb->format->depth, in rockchip_drm_fbdev_create()
/foundation/arkui/ace_engine/test/unittest/core/pipeline/
H A Dmock_event_manager.cpp162 void AddGestureSnapshot(int32_t finger, int32_t depth, const RefPtr<TouchEventTarget>& target, NG::EventTreeType type) in AddGestureSnapshot() argument
/foundation/graphic/graphic_3d/lume/LumeRender/api/render/device/
H A Dgpu_resource_desc.h380 uint32_t depth { 1u };
/foundation/multimedia/media_library/frameworks/services/media_mtp/src/payload_data/
H A Dget_object_prop_list_data.cpp55 context_->depth = MtpPacketTool::GetUInt32(buffer, offset); in Parser()
/foundation/graphic/graphic_2d/rosen/test/render/render/unittest/drawable/
H A Drs_node_drawable1_adapter_test.cpp162 int32_t depth = 3;
168 adapter->DumpDrawableTree(depth, out, context);
181 adapter->DumpDrawableTree(depth, out, context);
182 EXPECT_TRUE(out.size() > depth);
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service/unittest/drawable/
H A Drs_render_node_drawable_adapter_test.cpp186 int32_t depth = 3;
192 adapter->DumpDrawableTree(depth, out, context);
205 adapter->DumpDrawableTree(depth, out, context);
206 EXPECT_TRUE(out.size() > depth);
/foundation/graphic/graphic_3d/lume/LumeEcsSerializer/Util/src/util/
H A Dio_util.cpp445 size_t depth{ 0 }; in InsertIntoString()
450 depth--; in InsertIntoString()
452 depth++; in InsertIntoString()

Completed in 24 milliseconds

12345678910