Home
last modified time | relevance | path

Searched refs:coord (Results 1 – 5 of 5) sorted by relevance

/lvgl-latest/src/widgets/line/
Dlv_line.c174 static inline lv_value_precise_t resolve_point_coord(lv_value_precise_t coord, int32_t max) in resolve_point_coord() argument
176 if(LV_COORD_IS_PCT((int32_t)coord)) { in resolve_point_coord()
177 return LV_CLAMP(0, max * LV_COORD_GET_PCT((int32_t)coord) / 100, max); in resolve_point_coord()
180 return coord; in resolve_point_coord()
/lvgl-latest/docs/details/base-widget/
Dindex.rst13 coord
Dobj.rst70 For complete details on position, size, coordinates and layouts, see :ref:`coord`.
/lvgl-latest/scripts/gen_json/
Dpycparser_monkeypatch.py80 if hasattr(n, 'coord') and n.coord is not None:
81 if 'fake_libc_include' in n.coord.file:
83 if FILTER_PRIVATE and '_private.h' not in n.coord.file:
662 '_private.h' not in decl.coord.file and
663 '_private.h' not in td.coord.file and
664 '_private.h' not in item.coord.file
668 if decl.type.decls and '_private.h' in decl.coord.file:
671 elif item.type.decls and '_private.h' in item.coord.file:
/lvgl-latest/docs/
DCHANGELOG.rst394 - **docs(coord): fix the layout of overview** `6112 <https://github.com/lvgl/lvgl/pull/6112>`__