/lvgl-latest/src/others/vg_lite_tvg/ |
D | vg_lite_matrix.c | 69 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()
|
D | vg_lite_tvg.cpp | 2971 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/ |
D | lv_xml_table_parser.c | 84 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/ |
D | index.rst | 1 A simple row and a column layout with flexbox 25 Demonstrate column and row gap style properties
|
/lvgl-latest/examples/layouts/grid/ |
D | index.rst | 25 Demonstrate column and row gap
|
/lvgl-latest/tests/src/test_cases/widgets/ |
D | test_table.c | 31 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/ |
D | flex.rst | 31 - **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 …
|
D | grid.rst | 127 If you set the column and/or row grid descriptors of a widget to ``NULL`` it will use
|
/lvgl-latest/src/draw/vg_lite/ |
D | lv_vg_lite_utils.c | 1132 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/ |
D | table.rst | 65 the Table Widget will be set to the sum of all column widths. 119 currently selected cell. Row and column will be set to
|
D | tileview.rst | 42 tile on the ``col_id``\ -th column and ``row_id``\ -th row. ``dir`` can be
|
D | chart.rst | 231 that point, column, or scatter-point.
|
/lvgl-latest/docs/details/other-components/ |
D | gridnav.rst | 20 column. This is useful, for example, to simplify navigation among items in a
|
D | file_explorer.rst | 95 - ``File Table``: with 1 column, 86% of ``Browser Panel`` height
|
/lvgl-latest/docs/ |
D | README.md | 70 … editing windows. So please wrap the text around column 86 or narrower. Wrapping at *exactly* co…
|
D | CHANGELOG.rst | 386 - **docs(tileview): fix tileview column/row argument order** `6388 <https://github.com/lvgl/lvgl/pu…
|
/lvgl-latest/docs/details/integration/chip/ |
D | alif.rst | 186 Under "Run and Debug" \> "Run Configuration" (column) \> "alif" (row), click the dropdown and select
|
/lvgl-latest/docs/details/base-widget/ |
D | coord.rst | 536 can be used to automatically arrange the children into a line or column,
|
/lvgl-latest/docs/details/main-components/ |
D | display.rst | 560 buffer in I1 color format from a row-wise (htiled) to a column-wise (vtiled) buffer
|
/lvgl-latest/docs/details/base-widget/styles/ |
D | style-properties.rst | 1578 Set column in which Widget should be placed.
|