Home
last modified time | relevance | path

Searched refs:found (Results 1 – 19 of 19) sorted by relevance

/GUIX-v6.2.1/common/src/
Dgx_system_timer_start.c86 GX_TIMER *found; in _gx_system_timer_start() local
104 found = _gx_system_active_timer_list; in _gx_system_timer_start() local
106 while (found) in _gx_system_timer_start()
108 if (found -> gx_timer_id == timer_id && in _gx_system_timer_start()
109 found -> gx_timer_owner == owner) in _gx_system_timer_start()
113 found -> gx_timer_initial_ticks = initial_ticks; in _gx_system_timer_start()
114 found -> gx_timer_reschedule_ticks = reschedule_ticks; in _gx_system_timer_start()
118 found = found -> gx_timer_next; in _gx_system_timer_start()
130 found = _gx_system_free_timer_list; in _gx_system_timer_start()
131 _gx_system_free_timer_list = found -> gx_timer_next; in _gx_system_timer_start()
[all …]
Dgx_tree_view_event_process.c79 GX_BOOL found = GX_FALSE; in _tree_view_selected_detect() local
83 return found; in _tree_view_selected_detect()
91 found = GX_TRUE; in _tree_view_selected_detect()
97 found = _tree_view_selected_detect(tree, (GX_MENU *)child); in _tree_view_selected_detect()
99 if (found) in _tree_view_selected_detect()
107 return found; in _tree_view_selected_detect()
161 GX_WIDGET *found = NULL; in _gx_tree_view_item_find() local
187 found = child; in _gx_tree_view_item_find()
202 found = next; in _gx_tree_view_item_find()
234 *returned_item = found; in _gx_tree_view_item_find()
Dgx_vertical_list_selected_set.c85 GX_WIDGET *found = GX_NULL; in _gx_vertical_list_selected_set() local
168 found = child; in _gx_vertical_list_selected_set()
170 _gx_vertical_list_selected_visible(vertical_list, found); in _gx_vertical_list_selected_set()
171 found -> gx_widget_style |= GX_STYLE_DRAW_SELECTED; in _gx_vertical_list_selected_set()
172 _gx_system_dirty_mark(found); in _gx_vertical_list_selected_set()
191 if (found) in _gx_vertical_list_selected_set()
Dgx_horizontal_list_selected_set.c86 GX_WIDGET *found = GX_NULL; in _gx_horizontal_list_selected_set() local
170 found = child; in _gx_horizontal_list_selected_set()
173 _gx_horizontal_list_selected_visible(horizontal_list, found); in _gx_horizontal_list_selected_set()
174 found -> gx_widget_style |= GX_STYLE_DRAW_SELECTED; in _gx_horizontal_list_selected_set()
175 _gx_system_dirty_mark(found); in _gx_horizontal_list_selected_set()
194 if (found) in _gx_horizontal_list_selected_set()
/GUIX-v6.2.1/guix_studio/
Dxml_reader.cpp69 BOOL found = FALSE; in ReadBool() local
80 found = TRUE; in ReadBool()
84 return found; in ReadBool()
90 BOOL found = FALSE; in ReadInt() local
98 found = TRUE; in ReadInt()
102 return found; in ReadInt()
108 BOOL found = FALSE; in ReadUnsigned() local
118 found = TRUE; in ReadUnsigned()
122 return found; in ReadUnsigned()
128 BOOL found = FALSE; in ReadUByte() local
[all …]
Dapp_runner.cpp29 GX_WIDGET *found = GX_NULL; in app_child_widget_find() local
41 found = child; in app_child_widget_find()
45 found = app_child_widget_find(child, widget_name); in app_child_widget_find()
48 if (found) in app_child_widget_find()
57 if ((!found) && (parent->gx_widget_type == GX_TYPE_MENU)) in app_child_widget_find()
60 found = app_child_widget_find((GX_WIDGET *)&menu->gx_menu_list, widget_name); in app_child_widget_find()
63 return found; in app_child_widget_find()
71 GX_WIDGET *found = GX_NULL; in app_widget_find() local
93 found = screen; in app_widget_find()
97 found = app_child_widget_find(screen, widget_name); in app_widget_find()
[all …]
Dmenu_service_provider.cpp296 GX_WIDGET *found = GX_NULL; in TopLevelMenuContainerFind() local
302 found = start; in TopLevelMenuContainerFind()
311 found = parent; in TopLevelMenuContainerFind()
319 found = temp; in TopLevelMenuContainerFind()
333 found = temp; in TopLevelMenuContainerFind()
340 return found; in TopLevelMenuContainerFind()
DStudioXProject.cpp5388 BOOL found = FALSE; in GetResourceName() local
5606 res_info *found = NULL; in FindResource() local
5617 found = FindResource(pRes->child, restype, name); in FindResource()
5618 if (found) in FindResource()
5620 return found; in FindResource()
5637 res_info *found = NULL; in FindResourceFolder() local
5650 found = FindResourceFolder(pRes->child, restype, folder_id, name); in FindResourceFolder()
5651 if (found) in FindResourceFolder()
5653 return found; in FindResourceFolder()
5665 widget_info *found; in FindParentInfo() local
[all …]
Dproject_view.cpp2650 HTREEITEM found; in FindWidget() local
2657 found = FindWidget(child, widget); in FindWidget()
2658 if (found) in FindWidget()
2660 return found; in FindWidget()
2711 BOOL found = FALSE; in FindProjectTreeNode() local
2738 found = TRUE; in FindProjectTreeNode()
2744 if (found) in FindProjectTreeNode()
3377 widget_info *found = NULL; in FindTopLevelWidget() local
3392 found = info; in FindTopLevelWidget()
3402 found = info; in FindTopLevelWidget()
[all …]
/GUIX-v6.2.1/test/guix_test/regression_test/tests/
Dvalidation_guix_vertical_list_animation.c98 GX_TIMER *found; in timer_find() local
100 found = _gx_system_active_timer_list; in timer_find()
102 while(found) in timer_find()
104 if(found -> gx_timer_id == timer_id && in timer_find()
105 found -> gx_timer_owner == owner) in timer_find()
109 found = found -> gx_timer_next; in timer_find()
Dvalidation_guix_horizontal_list_animation.c98 GX_TIMER *found; in timer_find() local
100 found = _gx_system_active_timer_list; in timer_find()
102 while(found) in timer_find()
104 if(found -> gx_timer_id == timer_id && in timer_find()
105 found -> gx_timer_owner == owner) in timer_find()
109 found = found -> gx_timer_next; in timer_find()
/GUIX-v6.2.1/test/guix_test/regression_test/tests/iar/9.30.1/validaion_guix_jpeg_decoding/
Dsetenv.bat8 ECHO ERROR: IAR Embedded Workbench not found.
14 ECHO ERROR: IarBuild.exe not found.
17 ECHO INFO: IarBuild.exe found at %AZRTOS_IAR_BUILD%
22 ECHO ERROR: CSpyBat not found.
25 ECHO INFO: CSpyBat found at %AZRTOS_IAR_CSPYBAT%
Dtest.bat47 ECHO ERROR: !DEBUG_FILE! not found.
54 ECHO ERROR: %%i.ewp not found.
60 ECHO ERROR: output_results.c not found.
Dbuild.bat6 ECHO ERROR: %%i.ewp not found.
Dclean.bat6 ECHO ERROR: %%i.ewp not found.
/GUIX-v6.2.1/test/guix_studio_test/test_demo/
Dcompare_two_files.py71 found = False
74 found = True
167 found = True
171 if found == False:
/GUIX-v6.2.1/
DSECURITY.md11 If you think you have found a vulnerability in <project> you can report it using one of the followi…
/GUIX-v6.2.1/guix_studio/libs/freetype/
DLICENSE.txt17 This license applies to all files found in such packages, and
155 haven't found anything to help you in the documentation.
162 Our home page can be found at
/GUIX-v6.2.1/guix_studio/libs/libgit2/
DLICENSE.txt313 the "copyright" line and a pointer to where the full notice is found.
932 "copyright" line and a pointer to where the full notice is found.
1041 apply to all code found in this distribution, be it the RC4, RSA,