Lines Matching refs:has_ctrl
55 bool has_ctrl = false; in test_table_should_identify_cell_with_ctrl() local
57 has_ctrl = lv_table_has_cell_ctrl(table, 0, 0, LV_TABLE_CELL_CTRL_MERGE_RIGHT); in test_table_should_identify_cell_with_ctrl()
59 TEST_ASSERT_FALSE(has_ctrl); in test_table_should_identify_cell_with_ctrl()
62 has_ctrl = lv_table_has_cell_ctrl(table, 0, 0, LV_TABLE_CELL_CTRL_MERGE_RIGHT); in test_table_should_identify_cell_with_ctrl()
63 TEST_ASSERT_TRUE(has_ctrl); in test_table_should_identify_cell_with_ctrl()
68 bool has_ctrl = false; in test_table_should_clear_selected_cell_ctrl() local
71 has_ctrl = lv_table_has_cell_ctrl(table, 0, 0, LV_TABLE_CELL_CTRL_MERGE_RIGHT); in test_table_should_clear_selected_cell_ctrl()
72 TEST_ASSERT_TRUE(has_ctrl); in test_table_should_clear_selected_cell_ctrl()
75 has_ctrl = lv_table_has_cell_ctrl(table, 0, 0, LV_TABLE_CELL_CTRL_MERGE_RIGHT); in test_table_should_clear_selected_cell_ctrl()
76 TEST_ASSERT_FALSE(has_ctrl); in test_table_should_clear_selected_cell_ctrl()
81 bool has_ctrl = false; in test_table_should_keep_not_selected_cell_ctrl() local
86 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()
87 TEST_ASSERT_FALSE(has_ctrl); in test_table_should_keep_not_selected_cell_ctrl()
89 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()
90 TEST_ASSERT_TRUE(has_ctrl); in test_table_should_keep_not_selected_cell_ctrl()