Lines Matching refs:has_ctrl
47 bool has_ctrl = false; in test_table_should_identify_cell_with_ctrl() local
49 has_ctrl = lv_table_has_cell_ctrl(table, 0, 0, LV_TABLE_CELL_CTRL_MERGE_RIGHT); in test_table_should_identify_cell_with_ctrl()
51 TEST_ASSERT_FALSE(has_ctrl); in test_table_should_identify_cell_with_ctrl()
54 has_ctrl = lv_table_has_cell_ctrl(table, 0, 0, LV_TABLE_CELL_CTRL_MERGE_RIGHT); in test_table_should_identify_cell_with_ctrl()
55 TEST_ASSERT_TRUE(has_ctrl); in test_table_should_identify_cell_with_ctrl()
60 bool has_ctrl = false; in test_table_should_clear_selected_cell_ctrl() local
63 has_ctrl = lv_table_has_cell_ctrl(table, 0, 0, LV_TABLE_CELL_CTRL_MERGE_RIGHT); in test_table_should_clear_selected_cell_ctrl()
64 TEST_ASSERT_TRUE(has_ctrl); in test_table_should_clear_selected_cell_ctrl()
67 has_ctrl = lv_table_has_cell_ctrl(table, 0, 0, LV_TABLE_CELL_CTRL_MERGE_RIGHT); in test_table_should_clear_selected_cell_ctrl()
68 TEST_ASSERT_FALSE(has_ctrl); in test_table_should_clear_selected_cell_ctrl()
73 bool has_ctrl = false; in test_table_should_keep_not_selected_cell_ctrl() local
78 has_ctrl = lv_table_has_cell_ctrl(table, 0, 0, LV_TABLE_CELL_CTRL_MERGE_RIGHT); in test_table_should_keep_not_selected_cell_ctrl()
79 TEST_ASSERT_FALSE(has_ctrl); in test_table_should_keep_not_selected_cell_ctrl()
81 has_ctrl = lv_table_has_cell_ctrl(table, 0, 0, LV_TABLE_CELL_CTRL_TEXT_CROP); in test_table_should_keep_not_selected_cell_ctrl()
82 TEST_ASSERT_TRUE(has_ctrl); in test_table_should_keep_not_selected_cell_ctrl()