/foundation/arkui/ace_engine/frameworks/core/components/common/layout/ |
H A D | templates_parser.h | 41 bool isRepeat = false; 54 static bool SplitTemplate(const std::string& str, std::vector<Value>& vec, bool isRepeat = false);
|
H A D | templates_parser.cpp | 52 bool TemplatesParser::SplitTemplate(const std::string& str, std::vector<Value>& vec, bool isRepeat) in SplitTemplate() argument 66 value.isRepeat = isRepeat; in SplitTemplate() 205 if (ret.isRepeat) { in ParseArgsWithAutoFill()
|
/foundation/multimodalinput/input/frameworks/napi/input_consumer/src/ |
H A D | js_register_module.cpp | 158 bool isRepeat = true; in GetHotkeyEventInfo() local 159 if (!GetNamedPropertyBool(env, argv[1], "isRepeat", isRepeat)) { in GetHotkeyEventInfo() 162 subKeyNames += std::to_string(isRepeat); in GetHotkeyEventInfo() 163 keyOption->SetRepeat(isRepeat); in GetHotkeyEventInfo() 164 MMI_HILOGD("IsRepeat:%{public}s", (isRepeat ? "true" : "false")); in GetHotkeyEventInfo() 245 bool isRepeat = true; in GetEventInfoAPI9() local 246 if (!GetNamedPropertyBool(env, argv[1], "isRepeat", isRepeat)) { in GetEventInfoAPI9() 249 subKeyNames += std::to_string(isRepeat); in GetEventInfoAPI9() [all...] |
/foundation/communication/dsoftbus/core/common/security/sequence_verification/ |
H A D | softbus_sequence_verification.c | 32 uint64_t isRepeat = seqVerifyInfo->recvBitmap & (0x1UL << offset); in IsPassDuplicateCheck() local 33 if (isRepeat) { in IsPassDuplicateCheck()
|
/foundation/multimodalinput/input/test/unittest/interfaces/kits/ |
H A D | input_native_hotkey_test.cpp | 577 bool isRepeat = false; in HWTEST_F() local 578 result = OH_Input_GetRepeat(hotkey, &isRepeat); in HWTEST_F() 580 EXPECT_EQ(isRepeat, true); in HWTEST_F() 583 result = OH_Input_GetRepeat(hotkey, &isRepeat); in HWTEST_F() 585 EXPECT_EQ(isRepeat, false); in HWTEST_F()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/property/ |
H A D | templates_parser.cpp | 58 bool isRepeat = false; member 112 bool SplitTemplate(const std::string& str, std::vector<Value>& vec, bool isRepeat = false) in SplitTemplate() 126 value.isRepeat = isRepeat; in SplitTemplate() 226 if (ret.isRepeat) { in ParseArgsWithAutoFill() 412 if (ret.isRepeat) {
|
/foundation/resourceschedule/work_scheduler/frameworks/extension/src/ |
H A D | js_work_scheduler_extension.cpp | 280 void SetRepeatInfo(napi_env env, napi_value workInfoData, bool isRepeat, in SetRepeatInfo() argument 283 if (isRepeat) { in SetRepeatInfo() 286 napi_set_named_property(env, workInfoData, "isRepeat", isRepeatValue); in SetRepeatInfo() 359 bool isRepeat = workInfo.IsRepeat(); in OnWorkStart() local 385 SetRepeatInfo(env, workInfoData, isRepeat, timeInterval, cycleCount); in OnWorkStart() 411 bool isRepeat = workInfo.IsRepeat(); in OnWorkStop() local 437 SetRepeatInfo(env, workInfoData, isRepeat, timeInterval, cycleCount); in OnWorkStop()
|
/foundation/resourceschedule/work_scheduler/interfaces/kits/cj/work_scheduler/ |
H A D | work_scheduler_ffi.cpp | 215 if (!cwork.isRepeat && cwork.repeatCount == UNSET_INT_PARAM) { in GetRepeatInfo() 216 LOGI("Not set isRepeat or repeatCount, ignore."); in GetRepeatInfo() 219 if (cwork.isRepeat) { in GetRepeatInfo() 221 LOGI("RepeatCount has been set , ignore isRepeat."); in GetRepeatInfo() 257 cwork.isRepeat = workInfo->IsRepeat(); in ParseWorkInfo()
|
H A D | work_scheduler_ffi.h | 37 int32_t isRepeat; member
|
/foundation/arkui/ace_engine/frameworks/core/gestures/ |
H A D | long_press_recognizer.h | 74 void SendCallbackMsg(const std::unique_ptr<GestureEventFunc>& callback, bool isRepeat);
|
H A D | long_press_recognizer.cpp | 232 void LongPressRecognizer::SendCallbackMsg(const std::unique_ptr<GestureEventFunc>& callback, bool isRepeat) in SendCallbackMsg() argument 237 info.SetRepeat(isRepeat); in SendCallbackMsg()
|
/foundation/multimodalinput/input/frameworks/native/input/ |
H A D | oh_input_manager.cpp | 86 bool isRepeat { true }; 1834 void OH_Input_SetRepeat(Input_Hotkey* hotkey, bool isRepeat) in OH_Input_SetRepeat() argument 1838 hotkey->isRepeat = isRepeat; in OH_Input_SetRepeat() 1841 Input_Result OH_Input_GetRepeat(const Input_Hotkey* hotkey, bool *isRepeat) in OH_Input_GetRepeat() argument 1845 CHKPR(isRepeat, INPUT_PARAMETER_ERROR); in OH_Input_GetRepeat() 1846 *isRepeat = hotkey->isRepeat; in OH_Input_GetRepeat() 1850 std::string GetHotkeyName(std::set<int32_t> preKeys, int32_t finalKey, bool isRepeat, in GetHotkeyName() argument 1859 keyOption->SetRepeat(isRepeat); in GetHotkeyName() 1911 bool isRepeat = hotkey->isRepeat; MakeHotkeyInfo() local 1969 bool isRepeat = keyEvent->IsRepeat(); CheckHotkey() local [all...] |
/foundation/arkui/ace_engine/frameworks/core/components_ng/gestures/recognizers/ |
H A D | long_press_recognizer.h | 131 void SendCallbackMsg(const std::unique_ptr<GestureEventFunc>& callback, bool isRepeat, bool isOnAction = false);
|
H A D | long_press_recognizer.cpp | 336 const std::unique_ptr<GestureEventFunc>& callback, bool isRepeat, bool isOnAction) in SendCallbackMsg() 344 info.SetRepeat(isRepeat); in SendCallbackMsg() 335 SendCallbackMsg( const std::unique_ptr<GestureEventFunc>& callback, bool isRepeat, bool isOnAction) SendCallbackMsg() argument
|
/foundation/multimodalinput/input/interfaces/kits/c/input/ |
H A D | oh_input_manager.h | 1427 * @param isRepeat Whether to report repeated key events. 1432 void OH_Input_SetRepeat(Input_Hotkey* hotkey, bool isRepeat); 1438 * @param isRepeat Whether a key event is repeated. 1445 Input_Result OH_Input_GetRepeat(const Input_Hotkey* hotkey, bool *isRepeat);
|
/foundation/arkui/ace_engine/test/unittest/core/gestures/ |
H A D | long_press_recognizer_test_ng.cpp | 309 bool isRepeat = false; in HWTEST_F() local 317 longPressRecognizer.SendCallbackMsg(onAction, isRepeat); in HWTEST_F() 326 longPressRecognizer.SendCallbackMsg(onAction, isRepeat); in HWTEST_F() 335 longPressRecognizer.SendCallbackMsg(onAction, isRepeat); in HWTEST_F() 345 longPressRecognizer.SendCallbackMsg(onAction, isRepeat); in HWTEST_F() 356 longPressRecognizer.SendCallbackMsg(onAction, isRepeat); in HWTEST_F()
|
/foundation/multimodalinput/input/frameworks/proxy/events/include/ |
H A D | event_log_helper.h | 127 std::string isRepeat = event->IsRepeat() ? "true" : "false"; in PrintInfoLog() local 134 event->GetTargetDisplayId(), isRepeat.c_str(), isSimulate.c_str()); in PrintInfoLog() 146 event->GetTargetDisplayId(), isRepeat.c_str(), isSimulate.c_str()); in PrintInfoLog() 157 event->GetTargetDisplayId(), isRepeat.c_str(), isSimulate.c_str()); in PrintInfoLog()
|
/foundation/arkui/ace_engine/frameworks/bridge/card_frontend/ |
H A D | js_card_parser.h | 116 void SetIsRepeat(bool isRepeat) in SetIsRepeat() argument 118 isRepeat_ = isRepeat; in SetIsRepeat()
|
/foundation/multimedia/media_lite/services/player_lite/impl/player_control/player/ |
H A D | liteplayer.h | 133 int32_t IsRepeatTplayReq(TplayAttr &tplayAttr, bool &isRepeat);
|
H A D | liteplayer.cpp | 1544 int32_t PlayerControl::IsRepeatTplayReq(TplayAttr &tplayAttr, bool &isRepeat) in IsRepeatTplayReq() argument 1547 isRepeat = false; in IsRepeatTplayReq() 1552 isRepeat = true; in IsRepeatTplayReq() 1564 isRepeat = true; in IsRepeatTplayReq() 1582 bool isRepeat = false; in DoTPlay() local 1583 int32_t ret = IsRepeatTplayReq(trickPlayAttr, isRepeat); in DoTPlay() 1587 if (isRepeat) { in DoTPlay()
|
/foundation/resourceschedule/work_scheduler/interfaces/kits/js/napi/src/ |
H A D | common.cpp | 185 bool isRepeat = GetBoolProperty(env, objValue, "isRepeat", E_IS_REPEAT_ERR); in GetRepeatInfo() local 187 if (!isRepeat && repeatCount == UNSET_INT_PARAM) { in GetRepeatInfo() 188 WS_HILOGD("Not set isRepeat or repeatCount, ignore."); in GetRepeatInfo() 191 if (isRepeat) { in GetRepeatInfo() 193 WS_HILOGI("RepeatCount has been set , ignore isRepeat."); in GetRepeatInfo() 451 napi_set_named_property(env, napiWork, "isRepeat", napiIsRepeat); in GetNapiWorkInfo()
|
/foundation/multimodalinput/input/tools/inject_event/src/ |
H A D | input_manager_command.cpp | 898 std::string isRepeat = keyEventTemp->IsRepeat() ? "true" : "false"; in ParseCommand() local 901 KeyEvent::ActionToString(keyEventTemp->GetKeyAction()), isRepeat.c_str()); in ParseCommand() 906 KeyEvent::ActionToString(keyEventTemp->GetKeyAction()), isRepeat.c_str()); in ParseCommand() 917 isRepeat = keyEvent->IsRepeat() ? "true" : "false"; in ParseCommand() 920 KeyEvent::ActionToString(keyEvent->GetKeyAction()), isRepeat.c_str()); in ParseCommand() 925 KeyEvent::ActionToString(keyEvent->GetKeyAction()), isRepeat.c_str()); in ParseCommand()
|
/foundation/arkui/ace_engine/frameworks/core/components/grid_layout/ |
H A D | render_grid_layout.h | 617 bool isRepeat = false; member 629 bool SplitTemplate(const std::string& str, std::vector<Value>& vec, bool isRepeat = false);
|
/foundation/multimodalinput/input/service/subscriber/include/ |
H A D | key_subscriber_handler.h | 121 std::list<std::shared_ptr<Subscriber>> &subscribers, bool isRepeat, bool &handled);
|
/foundation/multimodalinput/input/service/subscriber/src/ |
H A D | key_subscriber_handler.cpp | 722 std::list<std::shared_ptr<Subscriber>> &subscribers, bool isRepeat, bool &handled) in NotifyKeyDownRightNow() 733 if (!isRepeat && keyEvent->GetKeyCode() == KeyRepeat->GetRepeatKeyCode()) { in NotifyKeyDownRightNow() 1166 "keyOption->finalKeyDownDuration:%{public}d, keyOption->isRepeat:%{public}s", in PrintKeyOption() 721 NotifyKeyDownRightNow(const std::shared_ptr<KeyEvent> &keyEvent, std::list<std::shared_ptr<Subscriber>> &subscribers, bool isRepeat, bool &handled) NotifyKeyDownRightNow() argument
|