Lines Matching defs:obj

188     lv_obj_t * obj = lv_obj_class_create_obj(MY_CLASS, parent);  in lv_textarea_create()  local
197 void lv_textarea_add_char(lv_obj_t * obj, uint32_t c) in lv_textarea_add_char()
269 void lv_textarea_add_text(lv_obj_t * obj, const char * txt) in lv_textarea_add_text()
319 void lv_textarea_delete_char(lv_obj_t * obj) in lv_textarea_delete_char()
363 void lv_textarea_delete_char_forward(lv_obj_t * obj) in lv_textarea_delete_char_forward()
376 void lv_textarea_set_text(lv_obj_t * obj, const char * txt) in lv_textarea_set_text()
422 void lv_textarea_set_placeholder_text(lv_obj_t * obj, const char * txt) in lv_textarea_set_placeholder_text()
451 void lv_textarea_set_cursor_pos(lv_obj_t * obj, int32_t pos) in lv_textarea_set_cursor_pos()
503 void lv_textarea_set_cursor_click_pos(lv_obj_t * obj, bool en) in lv_textarea_set_cursor_click_pos()
511 void lv_textarea_set_password_mode(lv_obj_t * obj, bool en) in lv_textarea_set_password_mode()
542 void lv_textarea_set_password_bullet(lv_obj_t * obj, const char * bullet) in lv_textarea_set_password_bullet()
572 void lv_textarea_set_one_line(lv_obj_t * obj, bool en) in lv_textarea_set_one_line()
596 void lv_textarea_set_accepted_chars(lv_obj_t * obj, const char * list) in lv_textarea_set_accepted_chars()
605 void lv_textarea_set_max_length(lv_obj_t * obj, uint32_t num) in lv_textarea_set_max_length()
614 void lv_textarea_set_insert_replace(lv_obj_t * obj, const char * txt) in lv_textarea_set_insert_replace()
622 void lv_textarea_set_text_selection(lv_obj_t * obj, bool en) in lv_textarea_set_text_selection()
638 void lv_textarea_set_password_show_time(lv_obj_t * obj, uint32_t time) in lv_textarea_set_password_show_time()
647 void lv_textarea_set_align(lv_obj_t * obj, lv_text_align_t align) in lv_textarea_set_align()
670 const char * lv_textarea_get_text(const lv_obj_t * obj) in lv_textarea_get_text()
687 const char * lv_textarea_get_placeholder_text(lv_obj_t * obj) in lv_textarea_get_placeholder_text()
696 lv_obj_t * lv_textarea_get_label(const lv_obj_t * obj) in lv_textarea_get_label()
704 uint32_t lv_textarea_get_cursor_pos(const lv_obj_t * obj) in lv_textarea_get_cursor_pos()
712 bool lv_textarea_get_cursor_click_pos(lv_obj_t * obj) in lv_textarea_get_cursor_click_pos()
720 bool lv_textarea_get_password_mode(const lv_obj_t * obj) in lv_textarea_get_password_mode()
728 const char * lv_textarea_get_password_bullet(lv_obj_t * obj) in lv_textarea_get_password_bullet()
745 bool lv_textarea_get_one_line(const lv_obj_t * obj) in lv_textarea_get_one_line()
753 const char * lv_textarea_get_accepted_chars(lv_obj_t * obj) in lv_textarea_get_accepted_chars()
762 uint32_t lv_textarea_get_max_length(lv_obj_t * obj) in lv_textarea_get_max_length()
770 bool lv_textarea_text_is_selected(const lv_obj_t * obj) in lv_textarea_text_is_selected()
790 bool lv_textarea_get_text_selection(lv_obj_t * obj) in lv_textarea_get_text_selection()
803 uint32_t lv_textarea_get_password_show_time(lv_obj_t * obj) in lv_textarea_get_password_show_time()
812 uint32_t lv_textarea_get_current_char(lv_obj_t * obj) in lv_textarea_get_current_char()
829 void lv_textarea_clear_selection(lv_obj_t * obj) in lv_textarea_clear_selection()
846 void lv_textarea_cursor_right(lv_obj_t * obj) in lv_textarea_cursor_right()
855 void lv_textarea_cursor_left(lv_obj_t * obj) in lv_textarea_cursor_left()
866 void lv_textarea_cursor_down(lv_obj_t * obj) in lv_textarea_cursor_down()
895 void lv_textarea_cursor_up(lv_obj_t * obj) in lv_textarea_cursor_up()
923 static void lv_textarea_constructor(const lv_obj_class_t * class_p, lv_obj_t * obj) in lv_textarea_constructor()
962 static void lv_textarea_destructor(const lv_obj_class_t * class_p, lv_obj_t * obj) in lv_textarea_destructor()
991 lv_obj_t * obj = lv_event_get_current_target(e); in lv_textarea_event() local
1050 static void cursor_blink_anim_cb(void * obj, int32_t show) in cursor_blink_anim_cb()
1072 static void pwd_char_hider_anim(void * obj, int32_t x) in pwd_char_hider_anim()
1084 lv_obj_t * obj = a->var; in pwd_char_hider_anim_completed() local
1092 static void pwd_char_hider(lv_obj_t * obj) in pwd_char_hider()
1128 static bool char_is_accepted(lv_obj_t * obj, uint32_t c) in char_is_accepted()
1149 static void start_cursor_blink(lv_obj_t * obj) in start_cursor_blink()
1171 static void refr_cursor_area(lv_obj_t * obj) in refr_cursor_area()
1257 lv_obj_t * obj = lv_event_get_current_target(e); in update_cursor_position_on_click() local
1370 static lv_result_t insert_handler(lv_obj_t * obj, const char * txt) in insert_handler()
1392 lv_obj_t * obj = lv_event_get_current_target(e); in draw_placeholder() local
1424 lv_obj_t * obj = lv_event_get_current_target(e); in draw_cursor() local
1471 static void auto_hide_characters(lv_obj_t * obj) in auto_hide_characters()
1491 static void auto_hide_characters_cancel(lv_obj_t * obj) in auto_hide_characters_cancel()