Searched refs:_lv_txt_is_cmd (Results 1 – 4 of 4) sorted by relevance
/lvgl-3.7.0/tests/src/test_cases/ |
D | test_txt.c | 13 bool is_cmd = _lv_txt_is_cmd(&state, character); in test_txt_should_identify_valid_start_of_command() 24 bool is_cmd = _lv_txt_is_cmd(&state, character); in test_txt_should_identify_invalid_start_of_command() 35 bool is_cmd = _lv_txt_is_cmd(&state, character); in test_txt_should_identify_scaped_command_in_parameter() 46 bool is_cmd = _lv_txt_is_cmd(&state, character); in test_txt_should_skip_color_parameter_in_parameter() 57 bool is_cmd = _lv_txt_is_cmd(&state, character); in test_txt_should_reset_state_when_receiving_color_cmd_while_processing_commands() 68 bool is_cmd = _lv_txt_is_cmd(&state, character); in test_txt_should_identify_space_after_parameter()
|
/lvgl-3.7.0/src/misc/ |
D | lv_txt.h | 123 bool _lv_txt_is_cmd(lv_text_cmd_state_t * state, uint32_t c);
|
D | lv_txt.c | 199 if(_lv_txt_is_cmd(cmd_state, letter) != false) { in lv_txt_get_next_word() 361 if(_lv_txt_is_cmd(&cmd_state, letter) != false) { in lv_txt_get_width() 382 bool _lv_txt_is_cmd(lv_text_cmd_state_t * state, uint32_t c) in _lv_txt_is_cmd() function
|
/lvgl-3.7.0/src/widgets/ |
D | lv_label.c | 486 if(_lv_txt_is_cmd(&cmd_state, bidi_txt[i]) != false) { in lv_label_get_letter_on() 588 if(_lv_txt_is_cmd(&cmd_state, txt[i]) != false) { in lv_label_is_char_under_pos()
|