Home
last modified time | relevance | path

Searched refs:isPaused (Results 1 – 25 of 39) sorted by relevance

12

/ohos5.0/base/notification/distributed_notification_service/frameworks/ans/test/unittest/
H A Dnotification_time_test.cpp69 bool isPaused = true; variable
70 rrc->SetIsPaused(isPaused);
71 EXPECT_EQ(rrc->GetIsPaused(), isPaused);
101 bool isPaused = true; variable
102 rrc->SetIsPaused(isPaused);
108 ", isPaused = " + std::to_string(isPaused) +
H A Dnotification_helper_test.cpp1317 bool isPaused = true; variable
1319 ErrCode ret = notificationHelper.UpdateNotificationTimerByUid(uid, isPaused);
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/ark_prefetcher/src/prefetcher/
H A DFetchingDriver.ts47 private isPaused: boolean;
57 this.isPaused = !autostart;
172 if (this.isPaused) {
176 this.isPaused = true;
191 if (!this.isPaused) {
195 this.isPaused = false;
225 if (this.isPaused) {
/ohos5.0/docs/zh-cn/application-dev/ui/
H A Dui-js-components-button.md129 isPaused: true,
144 this.isPaused = true;
153 if(this.isPaused){
158 this.isPaused = false;
164 this.isPaused = true;
/ohos5.0/docs/en/application-dev/ui/
H A Dui-js-components-button.md129 isPaused: true,
144 this.isPaused = true;
153 if(this.isPaused){
158 this.isPaused = false;
164 this.isPaused = true;
/ohos5.0/foundation/multimedia/audio_framework/frameworks/native/audiorenderer/test/multithreadtest/src/
H A Daudio_renderer_multithread_test.cpp123 bool isPaused = audioRenderer->Pause(); in RendererMultiTest() local
124 EXPECT_EQ(true, isPaused); in RendererMultiTest()
/ohos5.0/foundation/multimedia/audio_framework/frameworks/native/audiorenderer/test/benchmark/
H A Dbenchmark_audiorenderer_test.cpp105 bool isPaused = audioRenderer->Pause(); in BENCHMARK_F() local
106 if (isPaused == false) in BENCHMARK_F()
/ohos5.0/docs/zh-cn/application-dev/reference/apis-notification-kit/
H A Djs-apis-inner-notification-notificationContent.md139 | isPaused | boolean | 否 | 是 | 是否暂停。 |
149 isPaused: false,
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkts/
H A Djs-apis-stream.md655 将流的读取模式从暂停切换到流动模式,可用接口isPaused判断是否切换到流动模式。
681 console.info("Readable test resume", !readableStream.isPaused()); // 切换流动模式成功时,此处日志将打印"Readable tes…
688 将流的读取模式从流动切换到暂停模式,可用接口isPaused判断是否切换到暂停模式。
714 console.info("Readable test pause", readableStream.isPaused()); // Readable test pause true
764 ### isPaused subsection
766 isPaused(): boolean
793 console.info("Readable isPaused", readableStream.isPaused()); // Readable isPaused false
795 console.info("Readable isPaused", readableStream.isPaused()); // Readable isPaused true
/ohos5.0/foundation/multimedia/audio_framework/frameworks/native/audiorenderer/test/unittest/renderer_test/src/
H A Daudio_renderer_unit_test.cpp1357 EXPECT_EQ(true, isPaused);
1724 EXPECT_EQ(true, isPaused);
2755 EXPECT_EQ(true, isPaused);
2790 EXPECT_EQ(true, isPaused);
2955 EXPECT_EQ(true, isPaused);
3224 EXPECT_EQ(true, isPaused);
3305 EXPECT_EQ(true, isPaused);
3372 EXPECT_EQ(true, isPaused);
3453 EXPECT_EQ(true, isPaused);
3689 EXPECT_EQ(true, isPaused);
[all …]
H A Daudio_fast_renderer_unit_test.cpp371 bool isPaused = audioRenderer->Pause(); variable
372 EXPECT_EQ(true, isPaused);
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/
H A DjsPrefetcher.js771 this.isPaused = !autostart;
874 if (this.isPaused) {
877 this.isPaused = true;
891 if (!this.isPaused) {
894 this.isPaused = false;
918 if (this.isPaused) {
/ohos5.0/docs/zh-cn/application-dev/notification/
H A Dlive-view-notification.md79 isPaused: true,
/ohos5.0/docs/en/application-dev/reference/apis-arkts/
H A Djs-apis-stream.md661 Resumes an explicitly paused readable stream. You can use **isPaused** to check whether the stream …
687 console.info("Readable test resume", !readableStream.isPaused()); // After a successful switching, …
694 Pauses the readable stream in flowing mode. You can use **isPaused** to check whether the stream is…
720 console.info("Readable test pause", readableStream.isPaused()); // Readable test pause true
770 ### isPaused subsection
772 isPaused(): boolean
799 console.info("Readable isPaused", readableStream.isPaused()); // Readable isPaused false
801 console.info("Readable isPaused", readableStream.isPaused()); // Readable isPaused true
/ohos5.0/foundation/multimedia/media_foundation/engine/plugin/plugins/sink/audio_server_sink/
H A Daudio_server_sink_plugin.h117 AudioRendererCallbackImpl(Callback* cb, bool& isPaused);
H A Daudio_server_sink_plugin.cpp195 …erverSinkPlugin::AudioRendererCallbackImpl::AudioRendererCallbackImpl(Callback* cb, bool& isPaused) in AudioRendererCallbackImpl() argument
196 : callback_(cb), isPaused_(isPaused) in AudioRendererCallbackImpl()
/ohos5.0/docs/en/application-dev/reference/apis-notification-kit/
H A Djs-apis-inner-notification-notificationContent.md139 | isPaused | boolean | No | Yes | Whether to pause the progress. …
149 isPaused: false,
/ohos5.0/foundation/multimedia/av_codec/services/media_engine/plugins/sink/
H A Daudio_server_sink_plugin.h128 …ndererCallbackImpl(const std::shared_ptr<Pipeline::EventReceiver> &receiver, const bool &isPaused);
/ohos5.0/docs/en/application-dev/notification/
H A Dlive-view-notification.md79 isPaused: true,
/ohos5.0/base/notification/distributed_notification_service/frameworks/ans/src/
H A Dnotification_helper.cpp596 ErrCode NotificationHelper::UpdateNotificationTimerByUid(const int32_t uid, const bool isPaused) in UpdateNotificationTimerByUid() argument
598 …turn DelayedSingleton<AnsNotification>::GetInstance()->UpdateNotificationTimerByUid(uid, isPaused); in UpdateNotificationTimerByUid()
/ohos5.0/base/web/webview/test/unittest/nweb_helper_test/
H A Dnweb_helper_test.cpp428 bool isPaused = WebDownloadItem_IsPaused(download); variable
429 EXPECT_FALSE(isPaused);
/ohos5.0/base/notification/distributed_notification_service/services/ans/src/
H A Dadvanced_notification_live_view_service.cpp747 …dNotificationService::HandleUpdateLiveViewNotificationTimer(const int32_t uid, const bool isPaused) in HandleUpdateLiveViewNotificationTimer() argument
762 if (isPaused) { in HandleUpdateLiveViewNotificationTimer()
/ohos5.0/base/notification/distributed_notification_service/interfaces/inner_api/
H A Dnotification_helper.h1128 static ErrCode UpdateNotificationTimerByUid(const int32_t uid, const bool isPaused);
/ohos5.0/base/notification/distributed_notification_service/frameworks/core/include/
H A Dans_notification.h1218 ErrCode UpdateNotificationTimerByUid(const int32_t uid, const bool isPaused);
H A Dans_manager_interface.h985 virtual ErrCode UpdateNotificationTimerByUid(const int32_t uid, const bool isPaused) = 0;

12