Home
last modified time | relevance | path

Searched refs:status (Results 1 – 25 of 1387) sorted by relevance

12345678910>>...56

/GUIX-v6.4.1/test/guix_test/regression_test/tests/
Dvalidation_guix_gxe_api_error_checking_coverage_no_output.c36 UINT status; in tx_application_define() local
42 status = gx_accordion_menu_create(GX_NULL, GX_NULL, GX_NULL, 0, 0, GX_NULL); in tx_application_define()
43 EXPECT_EQ(GX_CALLER_ERROR, status); in tx_application_define()
45 status = gx_accordion_menu_create(GX_NULL, GX_NULL, GX_NULL, 0, 0, GX_NULL); in tx_application_define()
46 EXPECT_EQ(GX_CALLER_ERROR, status); in tx_application_define()
49 status = gx_accordion_menu_event_process(GX_NULL, GX_NULL); in tx_application_define()
50 EXPECT_EQ(GX_CALLER_ERROR, status); in tx_application_define()
52 status = gx_accordion_menu_event_process(GX_NULL, GX_NULL); in tx_application_define()
53 EXPECT_EQ(GX_CALLER_ERROR, status); in tx_application_define()
56 status = gx_accordion_menu_position(GX_NULL); in tx_application_define()
[all …]
Dvalidation_guix_error_checking_api_coverage_no_output.c159 UINT status; in control_thread_entry() local
175status = gx_accordion_menu_create(GX_NULL, GX_NULL, GX_NULL, GX_NULL, GX_NULL, GX_NULL); // first … in control_thread_entry()
176 EXPECT_EQ(GX_PTR_ERROR, status); in control_thread_entry()
179status = gx_accordion_menu_create(&accordion_menu, GX_NULL, GX_NULL, GX_NULL, GX_NULL, &size); // … in control_thread_entry()
180 EXPECT_EQ(GX_ALREADY_CREATED, status); in control_thread_entry()
183status = _gxe_accordion_menu_create(&accordion_menu, GX_NULL, GX_NULL, GX_NULL, GX_NULL, &size, 0)… in control_thread_entry()
184 EXPECT_EQ(GX_INVALID_SIZE, status); in control_thread_entry()
186status = gx_accordion_menu_create(&accordion_menu, GX_NULL, GX_NULL, GX_NULL, GX_NULL, &size); // … in control_thread_entry()
187 EXPECT_EQ(GX_SUCCESS, status); in control_thread_entry()
190 status = gx_accordion_menu_event_process(&accordion_menu, 0); // event_process in control_thread_entry()
[all …]
Dvalidation_guix_generic_scroll_wheel_no_output.c48 UINT status; in control_thread_entry() local
55 status = gx_generic_scroll_wheel_create(0, 0, 0, 0, 0, 0, 0, 0); in control_thread_entry()
56 EXPECT_EQ(status, GX_PTR_ERROR); in control_thread_entry()
60 status = gx_generic_scroll_wheel_children_position(&wheel); in control_thread_entry()
61 EXPECT_EQ(status, GX_INVALID_WIDGET); in control_thread_entry()
63 status = gx_generic_scroll_wheel_event_process(&wheel, &myevent); in control_thread_entry()
64 EXPECT_EQ(status, GX_INVALID_WIDGET); in control_thread_entry()
66 status = gx_generic_scroll_wheel_row_height_set(&wheel, 50); in control_thread_entry()
67 EXPECT_EQ(status, GX_INVALID_WIDGET); in control_thread_entry()
69 status = gx_generic_scroll_wheel_total_rows_set(&wheel, 50); in control_thread_entry()
[all …]
Dvalidation_guix_widget_no_output.c50 UINT status; in control_thread_entry() local
104 status = gx_widget_color_get(widget, 0, &color); in control_thread_entry()
105 EXPECT_EQ(GX_INVALID_CANVAS, status); in control_thread_entry()
107 status = gx_widget_font_get(widget, 0, &font); in control_thread_entry()
108 EXPECT_EQ(GX_INVALID_CANVAS, status); in control_thread_entry()
111 status = _gx_widget_find(GX_NULL, 0, 0, &widget); in control_thread_entry()
112 EXPECT_EQ(GX_NOT_FOUND, status); in control_thread_entry()
115 status = _gx_widget_focus_next(GX_NULL); in control_thread_entry()
116 EXPECT_EQ(GX_FAILURE, status); in control_thread_entry()
119 status = _gx_widget_focus_previous(GX_NULL); in control_thread_entry()
[all …]
Dvalidation_guix_rich_text_view_no_output.c61 UINT status; in control_thread_entry() local
75 status = gx_rich_text_view_create(GX_NULL, "", GX_NULL, 0, &fonts, 0, 0, &size); in control_thread_entry()
76 EXPECT_EQ(GX_PTR_ERROR, status); in control_thread_entry()
78 status = gx_rich_text_view_create(&rich_view, "", GX_NULL, 0, &fonts, 0, 0, GX_NULL); in control_thread_entry()
79 EXPECT_EQ(GX_PTR_ERROR, status); in control_thread_entry()
81 status = gx_rich_text_view_create(&rich_view, "", GX_NULL, 0, GX_NULL, 0, 0, &size); in control_thread_entry()
82 EXPECT_EQ(GX_PTR_ERROR, status); in control_thread_entry()
84 status = _gxe_rich_text_view_create(&rich_view, "", GX_NULL, 0, &fonts, 0, 0, &size, 0); in control_thread_entry()
85 EXPECT_EQ(GX_INVALID_SIZE, status); in control_thread_entry()
87 status = gx_rich_text_view_create(&rich_view, "", GX_NULL, 0, &fonts, 0, 0, &size); in control_thread_entry()
[all …]
Dvalidation_guix_string_scroll_wheel_string_list_set_no_output.c77 UINT status; in control_thread_entry() local
82 status = gx_string_scroll_wheel_string_list_set_ext(GX_NULL, GX_NULL, 0); in control_thread_entry()
83 EXPECT_EQ(GX_PTR_ERROR, status); in control_thread_entry()
87status = gx_string_scroll_wheel_string_list_set_ext(&wheel, test_string_list_1, TEST_STRING_LIST_S… in control_thread_entry()
88 EXPECT_EQ(GX_INVALID_WIDGET, status); in control_thread_entry()
92status = gx_string_scroll_wheel_create_ext(&wheel, "test_wheel", NULL, 0, GX_NULL, GX_STYLE_ENABLE… in control_thread_entry()
93 EXPECT_EQ(GX_SUCCESS, status); in control_thread_entry()
96status = gx_string_scroll_wheel_string_list_set_ext(&wheel, test_string_list_1, TEST_STRING_LIST_S… in control_thread_entry()
97 EXPECT_EQ(GX_INVALID_STRING_LENGTH, status); in control_thread_entry()
100status = gx_string_scroll_wheel_string_list_set_ext(&wheel, test_string_list_2, TEST_STRING_LIST_S… in control_thread_entry()
[all …]
Dvalidation_guix_display_string_get_no_output.c99 UINT status; in control_thread_entry() local
104 status = gx_display_string_get_ext(GX_NULL, 0, &string); in control_thread_entry()
105 EXPECT_EQ(GX_PTR_ERROR, status); in control_thread_entry()
107 status = gx_display_string_get_ext(display, 0, GX_NULL); in control_thread_entry()
108 EXPECT_EQ(GX_PTR_ERROR, status); in control_thread_entry()
111 status = gx_display_string_get_ext(display, 1024, &string); in control_thread_entry()
112 EXPECT_EQ(GX_INVALID_RESOURCE_ID, status); in control_thread_entry()
114 status = gx_display_string_get_ext(display, 0, &string); in control_thread_entry()
115 EXPECT_EQ(GX_SUCCESS, status); in control_thread_entry()
119 status = gx_display_string_get(0, 0, 0); in control_thread_entry()
[all …]
Dvalidation_guix_utility_no_output.c57 UINT status; in control_thread_entry() local
95 status = gx_utility_canvas_to_bmp(root->gx_window_root_canvas, &rect, write_data_callback); in control_thread_entry()
96 EXPECT_EQ(expect_status, status); in control_thread_entry()
100 status = _gx_utility_alphamap_create(100, 0, &map); in control_thread_entry()
101 EXPECT_EQ(GX_FAILURE, status); in control_thread_entry()
107 status = gx_utility_pixelmap_resize(&map, &destination, 100, 100); in control_thread_entry()
108 EXPECT_EQ(GX_NOT_SUPPORTED, status); in control_thread_entry()
111 status = gx_utility_pixelmap_rotate(&map, 30, &destination, GX_NULL, GX_NULL); in control_thread_entry()
112 EXPECT_EQ(GX_INVALID_FORMAT, status); in control_thread_entry()
116 status = gx_utility_pixelmap_rotate(&map, 30, &destination, GX_NULL, GX_NULL); in control_thread_entry()
[all …]
Dvalidation_guix_system_private_string_copy_no_output.c51 UINT status; in control_thread_entry() local
70 status = gx_prompt_text_set_ext(prompt, &string); in control_thread_entry()
71 EXPECT_EQ(GX_MATH_OVERFLOW, status); in control_thread_entry()
76 status = gx_prompt_text_set_ext(prompt, &string); in control_thread_entry()
77 EXPECT_EQ(GX_MATH_OVERFLOW, status); in control_thread_entry()
83status = gx_string_scroll_wheel_create(&wheel, "wheel", GX_NULL, 0, GX_NULL, GX_STYLE_TEXT_COPY, 0… in control_thread_entry()
84 EXPECT_EQ(GX_SUCCESS, status); in control_thread_entry()
90 status = gx_string_scroll_wheel_string_list_set(&wheel, string_list, string_count); in control_thread_entry()
91 EXPECT_EQ(GX_MATH_OVERFLOW, status); in control_thread_entry()
95 status = gx_string_scroll_wheel_string_list_set(&wheel, string_list, string_count); in control_thread_entry()
[all …]
Dvalidation_guix_system_string_width_get_no_output.c49 UINT status; in control_thread_entry() local
59 status = gx_system_string_width_get(font, invalid_string, GX_MAX_STRING_LENGTH, &width); in control_thread_entry()
60 EXPECT_EQ(GX_INVALID_STRING_LENGTH, status); in control_thread_entry()
62 status = gx_system_string_width_get(font, invalid_string, -1, &width); in control_thread_entry()
63 EXPECT_EQ(GX_INVALID_STRING_LENGTH, status); in control_thread_entry()
65 status = gx_system_string_width_get(font, test_string, -1, &width); in control_thread_entry()
66 EXPECT_EQ(GX_SUCCESS, status); in control_thread_entry()
70 status = gx_system_string_width_get_ext(GX_NULL, &string, &width); in control_thread_entry()
71 EXPECT_EQ(GX_PTR_ERROR, status); in control_thread_entry()
73 status = gx_system_string_width_get_ext(font, GX_NULL, &width); in control_thread_entry()
[all …]
Dvalidation_guix_string_scroll_wheel_create_no_output.c64 UINT status; in control_thread_entry() local
69 status = gx_string_scroll_wheel_create_ext(GX_NULL, "", GX_NULL, 0, GX_NULL, 0, 0, GX_NULL); in control_thread_entry()
70 EXPECT_EQ(GX_PTR_ERROR, status); in control_thread_entry()
73 status = gx_string_scroll_wheel_create_ext(&wheel, "", GX_NULL, 0, GX_NULL, 0, 0, GX_NULL); in control_thread_entry()
74 EXPECT_EQ(GX_PTR_ERROR, status); in control_thread_entry()
78 status = gx_string_scroll_wheel_create_ext(&wheel, "", &parent, 0, GX_NULL, 0, 0, &size); in control_thread_entry()
79 EXPECT_EQ(GX_INVALID_WIDGET, status); in control_thread_entry()
81 status = _gxe_string_scroll_wheel_create_ext(&wheel, "", GX_NULL, 0, GX_NULL, 0, 0, &size, 0); in control_thread_entry()
82 EXPECT_EQ(GX_INVALID_SIZE, status); in control_thread_entry()
84status = gx_string_scroll_wheel_create_ext(&wheel, "", GX_NULL, sizeof(test_string_list_1)/sizeof(… in control_thread_entry()
[all …]
Dvalidation_guix_string_to_alphamap_no_output.c48 UINT status; in control_thread_entry() local
57 status = gx_utility_string_to_alphamap(invalid_string, font, &textmap); in control_thread_entry()
58 EXPECT_EQ(GX_INVALID_STRING_LENGTH, status); in control_thread_entry()
60 status = gx_utility_string_to_alphamap_ext(GX_NULL, font, &textmap); in control_thread_entry()
61 EXPECT_EQ(GX_PTR_ERROR, status); in control_thread_entry()
64 status = gx_utility_string_to_alphamap_ext(&string, font, &textmap); in control_thread_entry()
65 EXPECT_EQ(GX_PTR_ERROR, status); in control_thread_entry()
69 status = gx_utility_string_to_alphamap_ext(&string, GX_NULL, &textmap); in control_thread_entry()
70 EXPECT_EQ(GX_PTR_ERROR, status); in control_thread_entry()
72 status = gx_utility_string_to_alphamap_ext(&string, font, GX_NULL); in control_thread_entry()
[all …]
Dvalidation_guix_system_screen_stack_no_output.c57 UINT status; in control_thread_entry() local
61 status = gx_system_screen_stack_create(GX_NULL, 0); in control_thread_entry()
62 if(status != GX_PTR_ERROR) in control_thread_entry()
67 status = gx_system_screen_stack_create(screen_stack_memory, 0); in control_thread_entry()
68 if(status != GX_INVALID_VALUE) in control_thread_entry()
73 status = _gxe_system_screen_stack_create(screen_stack_memory, 4, 4); in control_thread_entry()
74 if(status != GX_INVALID_SIZE) in control_thread_entry()
79 status = gx_system_screen_stack_pop(); in control_thread_entry()
80 if(status != GX_PTR_ERROR) in control_thread_entry()
85 status = gx_system_screen_stack_get(GX_NULL, GX_NULL); in control_thread_entry()
[all …]
Dvalidation_guix_string_scroll_wheel_event_process_no_output.c69 UINT status; in control_thread_entry() local
80 status = gx_string_scroll_wheel_event_process(GX_NULL, &my_event); in control_thread_entry()
81 EXPECT_EQ(GX_PTR_ERROR, status); in control_thread_entry()
83 status = gx_string_scroll_wheel_event_process(&wheel, GX_NULL); in control_thread_entry()
84 EXPECT_EQ(GX_PTR_ERROR, status); in control_thread_entry()
88 status = gx_string_scroll_wheel_event_process(&wheel, &my_event); in control_thread_entry()
89 EXPECT_EQ(GX_INVALID_WIDGET, status); in control_thread_entry()
91status = gx_string_scroll_wheel_create_ext(&wheel, "", GX_NULL, 0, GX_NULL, GX_STYLE_TEXT_COPY, 0,… in control_thread_entry()
92 EXPECT_EQ(GX_SUCCESS, status); in control_thread_entry()
94 status = gx_string_scroll_wheel_string_list_set_ext(&wheel, test_string_list, STRING_COUNT); in control_thread_entry()
[all …]
Dvalidation_guix_animation_delete_no_output.c47 UINT status; in control_thread_entry() local
54 status = gx_animation_delete(GX_NULL, GX_NULL); in control_thread_entry()
55 EXPECT_EQ(status, GX_PTR_ERROR); in control_thread_entry()
60 status = gx_animation_delete(&animation3, GX_NULL); in control_thread_entry()
61 EXPECT_EQ(status, GX_SUCCESS); in control_thread_entry()
64 status = gx_system_animation_get(&animation); in control_thread_entry()
65 EXPECT_EQ(status, GX_SUCCESS); in control_thread_entry()
68 status = gx_animation_delete(animation, GX_NULL); in control_thread_entry()
69 EXPECT_EQ(status, GX_SUCCESS); in control_thread_entry()
71 status = gx_system_animation_get(&animation); in control_thread_entry()
[all …]
Dvalidation_guix_canvas_rotated_text_draw_no_output.c46 UINT status; in control_thread_entry() local
57 status = gx_canvas_rotated_text_draw(invalid_string, 0, 0, 90); in control_thread_entry()
58 EXPECT_EQ(GX_INVALID_STRING_LENGTH, status); in control_thread_entry()
61 status = gx_canvas_rotated_text_draw_ext(GX_NULL, 0, 0, 90); in control_thread_entry()
62 EXPECT_EQ(GX_PTR_ERROR, status); in control_thread_entry()
65 status = gx_canvas_rotated_text_draw_ext(&string, 0, 0, 90); in control_thread_entry()
66 EXPECT_EQ(GX_PTR_ERROR, status); in control_thread_entry()
70 status = gx_canvas_rotated_text_draw_ext(&string, 0, 0, 90); in control_thread_entry()
71 EXPECT_EQ(GX_INVALID_STRING_LENGTH, status); in control_thread_entry()
75 status = gx_canvas_rotated_text_draw_ext(&string, 0, 0, 90); in control_thread_entry()
[all …]
Dvalidation_guix_widget_string_get_no_output.c47 UINT status; in control_thread_entry() local
54 status = gx_widget_string_get_ext((GX_WIDGET *)&window_screen, GX_STRING_ID_ITEM_1, &string); in control_thread_entry()
55 EXPECT_EQ(GX_INVALID_CANVAS, status); in control_thread_entry()
58status = gx_widget_string_get((GX_WIDGET *)&window_screen, GX_STRING_ID_ITEM_1, &string.gx_string_… in control_thread_entry()
59 EXPECT_EQ(GX_INVALID_CANVAS, status); in control_thread_entry()
66 status = gx_widget_string_get_ext((GX_WIDGET *)&window_screen, GX_STRING_ID_ITEM_1, &string); in control_thread_entry()
67 EXPECT_EQ(GX_SUCCESS, status); in control_thread_entry()
75 status = gx_widget_string_get(&window_screen, GX_STRING_ID_ITEM_1, &string.gx_string_ptr); in control_thread_entry()
76 EXPECT_EQ(GX_SUCCESS, status); in control_thread_entry()
88 status = gx_widget_string_get_ext((GX_WIDGET *)&window_screen, GX_STRING_ID_ITEM_1, &string); in control_thread_entry()
[all …]
Dvalidation_guix_sl_input_text_set_no_output.c50 UINT status; in control_thread_entry() local
57 status = gx_single_line_text_input_text_set_ext(GX_NULL, GX_NULL); in control_thread_entry()
58 EXPECT_EQ(GX_PTR_ERROR, status); in control_thread_entry()
61 status = gx_single_line_text_input_text_set_ext(&sl_input, GX_NULL); in control_thread_entry()
62 EXPECT_EQ(GX_INVALID_WIDGET, status); in control_thread_entry()
69 status = gx_single_line_text_input_text_set_ext(&sl_input, &string); in control_thread_entry()
70 EXPECT_EQ(GX_INVALID_STRING_LENGTH, status); in control_thread_entry()
73 status = gx_single_line_text_input_text_set_ext(&sl_input, &string); in control_thread_entry()
74 EXPECT_EQ(GX_INVALID_STRING_LENGTH, status); in control_thread_entry()
76 status = gx_single_line_text_input_text_set_ext(&sl_input, GX_NULL); in control_thread_entry()
[all …]
Dvalidation_guix_display_language_table_set_no_output.c81 UINT status; in control_thread_entry() local
84status = gx_display_language_table_set_ext(GX_NULL, language_table_1, LANGUAGE_TABLE_SIZE, STRING_… in control_thread_entry()
85 EXPECT_EQ(GX_PTR_ERROR, status); in control_thread_entry()
87status = gx_display_language_table_set_ext(display, GX_NULL, LANGUAGE_TABLE_SIZE, STRING_TABLE_SIZ… in control_thread_entry()
88 EXPECT_EQ(GX_PTR_ERROR, status); in control_thread_entry()
90status = gx_display_language_table_set_ext(display, language_table_1, LANGUAGE_TABLE_SIZE, STRING_… in control_thread_entry()
91 EXPECT_EQ(GX_INVALID_STRING_LENGTH, status); in control_thread_entry()
93status = gx_display_language_table_set_ext(display, language_table_2, LANGUAGE_TABLE_SIZE, STRING_… in control_thread_entry()
94 EXPECT_EQ(GX_INVALID_STRING_LENGTH, status); in control_thread_entry()
96 status = gx_display_language_table_set_ext(display, GX_NULL, 0, 0); in control_thread_entry()
[all …]
Dvalidation_guix_standalone_binres_load_16bpp.c80 UINT status; in control_thread_entry() local
104 status = gx_binres_font_load(root_address_font_4bpp, 0, font_4bpp_buffer, &buffer_size); in control_thread_entry()
105 EXPECT_EQ(GX_INVALID_FORMAT, status); in control_thread_entry()
110 status = gx_binres_font_load(root_address_font_4bpp, 0, font_4bpp_buffer, &buffer_size); in control_thread_entry()
111 EXPECT_EQ(GX_INVALID_MEMORY_SIZE, status); in control_thread_entry()
114 status = gx_binres_font_load(root_address_font_4bpp, 2, font_4bpp_buffer, &buffer_size); in control_thread_entry()
115 EXPECT_EQ(GX_NOT_FOUND, status) in control_thread_entry()
119 status = gx_binres_font_load(root_address_font_4bpp, 0, font_4bpp_buffer, &buffer_size); in control_thread_entry()
120 EXPECT_EQ(GX_INVALID_FORMAT, status); in control_thread_entry()
123 status = gx_binres_font_load(root_address_font_4bpp, 0, font_4bpp_buffer, &buffer_size); in control_thread_entry()
[all …]
Dvalidation_guix_ml_input_char_insert_no_output.c48 UINT status; in control_thread_entry() local
55 status = gx_multi_line_text_input_char_insert_ext(GX_NULL, GX_NULL); in control_thread_entry()
56 EXPECT_EQ(GX_PTR_ERROR, status); in control_thread_entry()
58 status = gx_multi_line_text_input_char_insert_ext(&ml_input, GX_NULL); in control_thread_entry()
59 EXPECT_EQ(GX_PTR_ERROR, status); in control_thread_entry()
62 status = gx_multi_line_text_input_char_insert_ext(&ml_input, &string); in control_thread_entry()
63 EXPECT_EQ(GX_PTR_ERROR, status); in control_thread_entry()
67 status = gx_multi_line_text_input_char_insert_ext(&ml_input, &string); in control_thread_entry()
68 EXPECT_EQ(GX_INVALID_STRING_LENGTH, status); in control_thread_entry()
71 status = gx_multi_line_text_input_char_insert_ext(&ml_input, &string); in control_thread_entry()
[all …]
/GUIX-v6.4.1/common/src/
Dgx_rich_text_view_tag_enter.c107 UINT status = GX_FAILURE; in _gx_rich_text_resource_id_read() local
113 return status; in _gx_rich_text_resource_id_read()
121 return status; in _gx_rich_text_resource_id_read()
140 status = GX_SUCCESS; in _gx_rich_text_resource_id_read()
146 if (status == GX_SUCCESS) in _gx_rich_text_resource_id_read()
151 return status; in _gx_rich_text_resource_id_read()
197 UINT status = GX_FAILURE; in _gx_rich_text_view_tag_open() local
228 status = GX_SUCCESS; in _gx_rich_text_view_tag_open()
249 status = GX_SUCCESS; in _gx_rich_text_view_tag_open()
263 status = GX_SUCCESS; in _gx_rich_text_view_tag_open()
[all …]
Dgxe_canvas_text_draw.c79 UINT status; in _gxe_canvas_text_draw() local
96 status = _gx_canvas_text_draw(x_start, y_start, string, length); in _gxe_canvas_text_draw()
99 return(status); in _gxe_canvas_text_draw()
146 UINT status; in _gxe_canvas_text_draw_ext() local
163status = _gx_utility_string_length_check(string -> gx_string_ptr, &text_length, string -> gx_strin… in _gxe_canvas_text_draw_ext()
165 if (status != GX_SUCCESS) in _gxe_canvas_text_draw_ext()
167 return status; in _gxe_canvas_text_draw_ext()
176 status = _gx_canvas_text_draw_ext(x_start, y_start, string); in _gxe_canvas_text_draw_ext()
179 return(status); in _gxe_canvas_text_draw_ext()
224 UINT status; in _gxe_canvas_aligned_text_draw() local
[all …]
Dgx_multi_line_text_input_keydown_process.c87 UINT status; in _gx_multi_line_text_input_keydown_process() local
95 status = _gx_multi_line_text_input_backspace(input); in _gx_multi_line_text_input_keydown_process()
99 status = _gx_multi_line_text_input_delete(input); in _gx_multi_line_text_input_keydown_process()
103 status = _gx_multi_line_text_input_left_arrow(input); in _gx_multi_line_text_input_keydown_process()
107 status = _gx_multi_line_text_input_right_arrow(input); in _gx_multi_line_text_input_keydown_process()
111 status = _gx_multi_line_text_input_up_arrow(input); in _gx_multi_line_text_input_keydown_process()
115 status = _gx_multi_line_text_input_down_arrow(input); in _gx_multi_line_text_input_keydown_process()
123 status = _gx_multi_line_text_input_char_insert_ext(input, &string); in _gx_multi_line_text_input_keydown_process()
130 status = _gx_multi_line_text_input_char_insert_ext(input, &string); in _gx_multi_line_text_input_keydown_process()
134 status = _gx_multi_line_text_input_home(input); in _gx_multi_line_text_input_keydown_process()
[all …]
/GUIX-v6.4.1/test/guix_studio_test/test_view/golden_files/
Dgeneric_16bpp_specifications.c52 UINT status; in gx_studio_button_create() local
54status = gx_button_create(button, info->widget_name, parent, info->style, info->widget_id, &info->… in gx_studio_button_create()
55 return status; in gx_studio_button_create()
60 UINT status; in gx_studio_text_button_create() local
63status = gx_text_button_create(button, info->widget_name, parent, props->string_id, info->style, i… in gx_studio_text_button_create()
64 if (status == GX_SUCCESS) in gx_studio_text_button_create()
69 return status; in gx_studio_text_button_create()
74 UINT status; in gx_studio_multi_line_text_button_create() local
77status = gx_multi_line_text_button_create(button, info->widget_name, parent, props->string_id, inf… in gx_studio_multi_line_text_button_create()
78 if (status == GX_SUCCESS) in gx_studio_multi_line_text_button_create()
[all …]

12345678910>>...56