Home
last modified time | relevance | path

Searched refs:nodeIdStr (Results 1 – 18 of 18) sorted by relevance

/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_client/test/systemtest/
H A Drs_interfaces_system_test.cpp220 std::string nodeIdStr = "123456"; variable
222 rsInterfaces->SetLayerTop(nodeIdStr, false);
234 std::string nodeIdStr = "123456"; variable
236 rsInterfaces->SetLayerTop(nodeIdStr, true);
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_client/fuzztest/rsinterfaces_fuzzer/
H A Drsinterfaces_fuzzer.cpp171 std::string nodeIdStr = GetData<std::string>(); in RSPhysicalScreenFuzzTest() local
173 rsInterfaces.SetLayerTop(nodeIdStr, isTop); in RSPhysicalScreenFuzzTest()
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/platform/ohos/
H A Drs_render_service_client_test.cpp767 const std::string nodeIdStr = "123456"; variable
768 rsClient->SetLayerTop(nodeIdStr, true);
769 rsClient->SetLayerTop(nodeIdStr, false);
H A Drs_render_service_connection_proxy_test.cpp968 const std::string nodeIdStr = "123456"; variable
969 proxy->SetLayerTop(nodeIdStr, true);
970 proxy->SetLayerTop(nodeIdStr, false);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_client/test/unittest/
H A Drs_interfaces_test.cpp1859 std::string nodeIdStr = "123456"; variable
1860 rsInterfaces->SetLayerTop(nodeIdStr, false);
1872 std::string nodeIdStr = "123456"; variable
1873 rsInterfaces->SetLayerTop(nodeIdStr, true);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/transaction/
H A Drs_interfaces.cpp760 void RSInterfaces::SetLayerTop(const std::string &nodeIdStr, bool isTop) in SetLayerTop() argument
762 renderServiceClient_->SetLayerTop(nodeIdStr, isTop); in SetLayerTop()
H A Drs_interfaces.h302 void SetLayerTop(const std::string &nodeIdStr, bool isTop);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/platform/ohos/
H A Drs_irender_service_connection.h306 virtual void SetLayerTop(const std::string &nodeIdStr, bool isTop) = 0;
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/darwin/
H A Drs_render_service_client.cpp614 void RSRenderServiceClient::SetLayerTop(const std::string &nodeIdStr, bool isTop) in SetLayerTop() argument
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/windows/
H A Drs_render_service_client.cpp614 void RSRenderServiceClient::SetLayerTop(const std::string &nodeIdStr, bool isTop) in SetLayerTop() argument
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service/core/pipeline/
H A Drs_render_service_connection.cpp2126 void RSRenderServiceConnection::SetLayerTop(const std::string &nodeIdStr, bool isTop) in SetLayerTop() argument
2131 auto task = [weakThis = wptr<RSRenderServiceConnection>(this), nodeIdStr, isTop]() -> void { in SetLayerTop()
2138 [&nodeIdStr, &isTop](const std::shared_ptr<RSSurfaceRenderNode>& surfaceNode) mutable { in SetLayerTop()
2139 if ((surfaceNode != nullptr) && (surfaceNode->GetName() == nodeIdStr) && in SetLayerTop()
H A Drs_render_service_connection.h307 void SetLayerTop(const std::string &nodeIdStr, bool isTop) override;
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/ohos/
H A Drs_render_service_connection_proxy.h295 void SetLayerTop(const std::string &nodeIdStr, bool isTop) override;
H A Drs_render_service_client.cpp1661 void RSRenderServiceClient::SetLayerTop(const std::string &nodeIdStr, bool isTop) in SetLayerTop() argument
1665 renderService->SetLayerTop(nodeIdStr, isTop); in SetLayerTop()
H A Drs_render_service_connection_proxy.cpp3012 void RSRenderServiceConnectionProxy::SetLayerTop(const std::string &nodeIdStr, bool isTop) in SetLayerTop() argument
3022 if (data.WriteString(nodeIdStr) && data.WriteBool(isTop)) { in SetLayerTop()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/form/
H A Dform_pattern.cpp2027 std::string nodeIdStr = std::to_string(host->GetId()); in DelayResetManuallyClickFlag() local
2035 std::string("ArkUIFormResetManuallyClickFlag").append(nodeIdStr)); in DelayResetManuallyClickFlag()
2046 std::string nodeIdStr = std::to_string(host->GetId()); in RemoveDelayResetManuallyClickFlagTask() local
2047 …Task(TaskExecutor::TaskType::UI, std::string("ArkUIFormResetManuallyClickFlag").append(nodeIdStr)); in RemoveDelayResetManuallyClickFlagTask()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/transaction/
H A Drs_render_service_client.h362 void SetLayerTop(const std::string &nodeIdStr, bool isTop);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service/core/transaction/
H A Drs_render_service_connection_stub.cpp1893 std::string nodeIdStr = data.ReadString(); in OnRemoteRequest() local
1895 SetLayerTop(nodeIdStr, isTop); in OnRemoteRequest()