Home
last modified time | relevance | path

Searched refs:lv_obj_stringify_id (Results 1 – 6 of 6) sorted by relevance

/lvgl-latest/tests/src/test_cases/widgets/
Dtest_objid.c12 lv_obj_stringify_id(obj, buf, sizeof(buf)); in test_obj_id_should_match_class_name()
17 lv_obj_stringify_id(img, buf, sizeof(buf)); in test_obj_id_should_match_class_name()
/lvgl-latest/tests/src/test_cases/
Dtest_hover.c64 lv_obj_stringify_id(label, label_hovered.id, sizeof(label_hovered.id)); in test_hover_basic()
74 lv_obj_stringify_id(btn, btn_hovered.id, sizeof(btn_hovered.id)); in test_hover_basic()
/lvgl-latest/docs/details/other-components/
Dobj_id.rst76 - :cpp:expr:`lv_obj_stringify_id(widget, buf, len)`
80 created, :cpp:expr:`lv_obj_stringify_id(widget, buf, len)` will produce a unique
90 the strings produced by :cpp:expr:`lv_obj_stringify_id(widget, buf, len)` would be
116 const char * lv_obj_stringify_id(lv_obj_t * widget, char * buf, uint32_t len);
139 :cpp:func:`lv_obj_stringify_id` converts the passed ``widget`` to a string
178 :cpp:func:`lv_obj_stringify_id` for that Widget.
/lvgl-latest/src/core/
Dlv_obj_id_builtin.c95 const char * lv_obj_stringify_id(lv_obj_t * obj, char * buf, uint32_t len) in lv_obj_stringify_id() function
Dlv_obj.h450 const char * lv_obj_stringify_id(lv_obj_t * obj, char * buf, uint32_t len);
Dlv_obj_tree.c630 id = lv_obj_stringify_id(obj, buf, sizeof(buf)); in dump_tree_core()