Home
last modified time | relevance | path

Searched refs:GetIsCountDown (Results 1 – 14 of 14) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_v2/inspector/
H A Dtexttimer_composed_element.cpp28 …CountDown", [](const TextTimerComposedElement& inspector) { return inspector.GetIsCountDown(); } }, in __anon977ee0c20202()
43 DumpLog::GetInstance().AddDesc(std::string("isCountDown: ").append(GetIsCountDown())); in Dump()
62 std::string TextTimerComposedElement::GetIsCountDown() const in GetIsCountDown() function in OHOS::Ace::V2::TextTimerComposedElement
66 return ConvertBoolToString(render->GetIsCountDown()); in GetIsCountDown()
H A Dtexttimer_composed_element.h37 std::string GetIsCountDown() const;
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/texttimer/
H A Dtexttimer_component.cpp51 bool TextTimerComponent::GetIsCountDown() const in GetIsCountDown() function in OHOS::Ace::TextTimerComponent
53 return declaration_->GetIsCountDown(); in GetIsCountDown()
H A Dtexttimer_component.h40 bool GetIsCountDown() const;
H A Drender_texttimer.h38 bool GetIsCountDown() const in GetIsCountDown() function
H A Drender_texttimer.cpp49 isCountDown_ = timerComponent->GetIsCountDown(); in Update()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/texttimer/
H A Dtext_timer_pattern.cpp192 isCountDown_ = GetIsCountDown(); in OnModifyDone()
270 bool TextTimerPattern::GetIsCountDown() const in GetIsCountDown() function in OHOS::Ace::NG::TextTimerPattern
274 return textTimerLayoutProperty->GetIsCountDown().value_or(false); in GetIsCountDown()
381 auto isCountDown = textTimerLayoutProperty->GetIsCountDown().value_or(false); in BuildContentModifierNode()
392 auto isCountDown = textTimerLayoutProperty->GetIsCountDown().value_or(false); in DumpInfo()
H A Dtext_timer_pattern.h125 bool GetIsCountDown() const;
/ohos5.0/base/notification/distributed_notification_service/interfaces/inner_api/
H A Dnotification_time.h46 bool GetIsCountDown() const;
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/declaration/texttimer/
H A Dtexttimer_declaration.h67 bool GetIsCountDown() const in GetIsCountDown() function
/ohos5.0/base/notification/distributed_notification_service/frameworks/ans/src/
H A Dnotification_time.cpp40 bool NotificationTime::GetIsCountDown() const in GetIsCountDown() function in OHOS::Notification::NotificationTime
/ohos5.0/base/notification/distributed_notification_service/frameworks/ans/test/unittest/
H A Dnotification_time_test.cpp57 EXPECT_EQ(rrc->GetIsCountDown(), isCountDown);
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/text_timer/
H A Dtext_timer_test_ng.cpp171 EXPECT_EQ(textTimerLayoutProperty->GetIsCountDown(), IS_COUNT_DOWN);
230 EXPECT_EQ(layoutProperty->GetIsCountDown(), true);
671 EXPECT_EQ(layoutProperty->GetIsCountDown(), true);
735 EXPECT_EQ(textTimerLayoutProperty->GetIsCountDown(), IS_COUNT_DOWN);
/ohos5.0/base/notification/distributed_notification_service/frameworks/js/napi/src/
H A Dcommon_convert_liveview.cpp175 napi_get_boolean(env, time.GetIsCountDown(), &value); in SetTime()