Home
last modified time | relevance | path

Searched refs:column (Results 1 – 20 of 20) sorted by relevance

/lvgl-latest/src/others/vg_lite_tvg/
Dvg_lite_matrix.c69 int row, column; in multiply() local
74 for(column = 0; column < 3; column++) { in multiply()
76 temp.m[row][column] = (matrix->m[row][0] * mult->m[0][column]) in multiply()
77 + (matrix->m[row][1] * mult->m[1][column]) in multiply()
78 + (matrix->m[row][2] * mult->m[2][column]); in multiply()
Dvg_lite_tvg.cpp2971 int row, column; in vg_lite_matrix_multiply() local
2976 for(column = 0; column < 3; column++) { in vg_lite_matrix_multiply()
2978 temp.m[row][column] = (matrix->m[row][0] * mult->m[0][column]) in vg_lite_matrix_multiply()
2979 + (matrix->m[row][1] * mult->m[1][column]) in vg_lite_matrix_multiply()
2980 + (matrix->m[row][2] * mult->m[2][column]); in vg_lite_matrix_multiply()
/lvgl-latest/src/others/xml/parsers/
Dlv_xml_table_parser.c84 int32_t column = lv_xml_atoi(lv_xml_get_value_of(attrs, "column")); in lv_xml_table_column_apply() local
90 if(lv_streq("width", name)) lv_table_set_column_width(table, column, lv_xml_atoi(value)); in lv_xml_table_column_apply()
109 int32_t column = lv_xml_atoi(lv_xml_get_value_of(attrs, "column")); in lv_xml_table_cell_apply() local
115 if(lv_streq("value", name)) lv_table_set_cell_value(table, row, column, value); in lv_xml_table_cell_apply()
126 lv_table_add_cell_ctrl(table, row, column, ctrl); in lv_xml_table_cell_apply()
/lvgl-latest/examples/layouts/flex/
Dindex.rst1 A simple row and a column layout with flexbox
25 Demonstrate column and row gap style properties
/lvgl-latest/examples/layouts/grid/
Dindex.rst25 Demonstrate column and row gap
/lvgl-latest/tests/src/test_cases/widgets/
Dtest_table.c31 uint16_t column = 0; in test_table_should_return_assigned_cell_value() local
34 lv_table_set_cell_value(table, row, column, value); in test_table_should_return_assigned_cell_value()
36 TEST_ASSERT_EQUAL_STRING(value, lv_table_get_cell_value(table, row, column)); in test_table_should_return_assigned_cell_value()
/lvgl-latest/docs/details/base-widget/layouts/
Dflex.rst31 - **main direction**: row or column, the direction in which multiple items are
66 - :cpp:enumerator:`LV_FLEX_FLOW_COLUMN`: Place the children in a column without wrapping
68 - :cpp:enumerator:`LV_FLEX_FLOW_COLUMN_WRAP`: Place the children in a column with wrapping
70 - :cpp:enumerator:`LV_FLEX_FLOW_COLUMN_REVERSE`: Place the children in a column without wrapping bu…
72 - :cpp:enumerator:`LV_FLEX_FLOW_COLUMN_WRAP_REVERSE`: Place the children in a column with wrapping …
Dgrid.rst127 If you set the column and/or row grid descriptors of a widget to ``NULL`` it will use
/lvgl-latest/src/draw/vg_lite/
Dlv_vg_lite_utils.c1132 int row, column; in lv_vg_lite_matrix_multiply() local
1138 for(column = 0; column < 3; column++) { in lv_vg_lite_matrix_multiply()
1140 temp.m[row][column] = (m[row][0] * mult->m[0][column]) in lv_vg_lite_matrix_multiply()
1141 + (m[row][1] * mult->m[1][column]) in lv_vg_lite_matrix_multiply()
1142 + (m[row][2] * mult->m[2][column]); in lv_vg_lite_matrix_multiply()
/lvgl-latest/docs/details/widgets/
Dtable.rst65 the Table Widget will be set to the sum of all column widths.
119 currently selected cell. Row and column will be set to
Dtileview.rst42 tile on the ``col_id``\ -th column and ``row_id``\ -th row. ``dir`` can be
Dchart.rst231 that point, column, or scatter-point.
/lvgl-latest/docs/details/other-components/
Dgridnav.rst20 column. This is useful, for example, to simplify navigation among items in a
Dfile_explorer.rst95 - ``File Table``: with 1 column, 86% of ``Browser Panel`` height
/lvgl-latest/docs/
DREADME.md70 … editing windows. So please wrap the text around column 86 or narrower. Wrapping at *exactly* co…
DCHANGELOG.rst386 - **docs(tileview): fix tileview column/row argument order** `6388 <https://github.com/lvgl/lvgl/pu…
/lvgl-latest/docs/details/integration/chip/
Dalif.rst186 Under "Run and Debug" \> "Run Configuration" (column) \> "alif" (row), click the dropdown and select
/lvgl-latest/docs/details/base-widget/
Dcoord.rst536 can be used to automatically arrange the children into a line or column,
/lvgl-latest/docs/details/main-components/
Ddisplay.rst560 buffer in I1 color format from a row-wise (htiled) to a column-wise (vtiled) buffer
/lvgl-latest/docs/details/base-widget/styles/
Dstyle-properties.rst1578 Set column in which Widget should be placed.