Home
last modified time | relevance | path

Searched refs:file (Results 1 – 25 of 80) sorted by relevance

1234

/GUIX-v6.2.1/test/guix_studio_test/test_demo/
Dcompare_two_files.py121 for file in golden_file_list:
124 if file.endswith('MAIN_DISPLAY_resources.bin'):
127 elif file.endswith('SECONDARY_resources.bin'):
130 elif file.endswith('MAIN_DISPLAY_resources.c'):
133 elif file.endswith('SECONDARY_resources.c'):
136 elif file.endswith('resources.c'):
139 elif file.endswith('MAIN_DISPLAY_resources.h'):
142 elif file.endswith('SECONDARY_resources.h'):
145 elif file.endswith('resources.h'):
148 elif file.endswith('_specifications.c'):
[all …]
Dtest_main.py94 def test_one_project(studio_release, file): argument
95 project_pathname = os.path.abspath(file)
292 for file in remove_list:
293 if os.path.isfile(file):
294 os.remove(file)
303 file = open(path+'\\'+init_file,'a+')
304 file.close()
309 for file in gxp_projects:
312 if test_one_project(studio_release, file) == True:
328 file = open(path+'\\'+init_file,'a+')
[all …]
Dset_project_lib_version.py50 file = open(absolute_path, 'rb', -1)
51 src_lines = file.readlines()
52 file.close()
67 file = open(absolute_path, 'wb', -1)
74 file.write(line)
75 file.close()
DREADME.txt18 You should see Studio be compiled first, the produced studio executable file under "Release" direct…
20 in ignore_list file. The generated files then be verified with the old ones. Test results will come…
21 "result.txt" file.
/GUIX-v6.2.1/guix_studio/
Djpg_reader.cpp43 FILE *file = _tfopen(path.GetBuffer(), _T("rb")); in ReadImage() local
45 if (!file) in ReadImage()
58 fclose(file); in ReadImage()
62 jpeg_stdio_src(&mJpgInfo, file); in ReadImage()
66 fclose(file); in ReadImage()
77 fclose(file); in ReadImage()
88 fclose(file); in ReadImage()
104 fclose(file); in ReadImage()
115 fclose(file); in ReadImage()
133 fclose(file); in ReadImage()
[all …]
DREADME.txt9 This file contains a summary of what you will find in each of the files that
13 This is the main project file for VC++ projects generated using an application wizard.
14 It contains information about the version of Visual C++ that generated the file, and
19 This is the main header file for the application. It includes other
24 This is the main application source file that contains the application
30 in the RES subdirectory. This file can be directly edited in Microsoft
34 This is an icon file, which is used as the application's icon. This
35 icon is included by the main resource file studiox.rc.
38 This file contains resources that are not edited by Microsoft
40 the resource editor in this file.
[all …]
Dcsv_read_write.cpp29 CStdioFile file; in ExportLanguage() local
31 if (!file.Open(pathname, CFile::modeCreate | CFile::modeWrite)) in ExportLanguage()
45 file.Write(BOM_mark, 3); in ExportLanguage()
48 WriteString(&file, tag_data); in ExportLanguage()
83 WriteString(&file, csv_line); in ExportLanguage()
226 void csv_read_write::WriteString(CStdioFile *file, CString string) in WriteString() argument
232 file->Write(utf8buf, strlen(utf8buf)); in WriteString()
362 CStdioFile file(pathname, CStdioFile::modeRead | CFile::shareExclusive); in ReadFile() local
363 ULONG size = (ULONG)file.GetLength(); in ReadFile()
366 file.Read(mpBuffer, size); in ReadFile()
Dpng_reader.cpp63 FILE *file = _tfopen(path.GetBuffer(), _T("rb")); in CheckImageHasAlphaChannel() local
65 if (!file) in CheckImageHasAlphaChannel()
70 fread(signature, 1, 8, file); in CheckImageHasAlphaChannel()
73 fclose(file); in CheckImageHasAlphaChannel()
82 fclose(file); in CheckImageHasAlphaChannel()
90 fclose(file); in CheckImageHasAlphaChannel()
95 png_init_io(png_ptr, file); in CheckImageHasAlphaChannel()
133 fclose(file); in CheckImageHasAlphaChannel()
142 FILE *file = _tfopen(path.GetBuffer(), _T("rb")); in ReadImage() local
144 if (!file) in ReadImage()
[all …]
Dxml_reader.cpp30 CStdioFile file; in ReadFile() local
31 if (file.Open(pathname, CFile::modeRead)) in ReadFile()
33 ULONG size = (ULONG) file.GetLength(); in ReadFile()
35 file.Read(mpBuffer, size); in ReadFile()
36 file.Close(); in ReadFile()
/GUIX-v6.2.1/guix_studio/libs/libgit2/include/git2/sys/
Dalloc.h25 void * GIT_CALLBACK(gmalloc)(size_t n, const char *file, int line);
32 void * GIT_CALLBACK(gcalloc)(size_t nelem, size_t elsize, const char *file, int line);
35 char * GIT_CALLBACK(gstrdup)(const char *str, const char *file, int line);
41 char * GIT_CALLBACK(gstrndup)(const char *str, size_t n, const char *file, int line);
47 char * GIT_CALLBACK(gsubstrdup)(const char *str, size_t n, const char *file, int line);
54 void * GIT_CALLBACK(grealloc)(void *ptr, size_t size, const char *file, int line);
60 …void * GIT_CALLBACK(greallocarray)(void *ptr, size_t nelem, size_t elsize, const char *file, int l…
66 void * GIT_CALLBACK(gmallocarray)(size_t nelem, size_t elsize, const char *file, int line);
/GUIX-v6.2.1/guix_studio/libs/libpng/include/
Dzlib.h1363 ZEXTERN int ZEXPORT gzbuffer OF((gzFile file, unsigned size));
1379 ZEXTERN int ZEXPORT gzsetparams OF((gzFile file, int level, int strategy));
1390 ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len));
1421 gzFile file));
1446 ZEXTERN int ZEXPORT gzwrite OF((gzFile file,
1455 z_size_t nitems, gzFile file));
1468 ZEXTERN int ZEXPORTVA gzprintf Z_ARG((gzFile file, const char *format, ...));
1483 ZEXTERN int ZEXPORT gzputs OF((gzFile file, const char *s));
1491 ZEXTERN char * ZEXPORT gzgets OF((gzFile file, char *buf, int len));
1504 ZEXTERN int ZEXPORT gzputc OF((gzFile file, int c));
[all …]
/GUIX-v6.2.1/test/example_internal/thai_glyph_shaping/
Dnormalization_test.c26 static int read_line(FILE *file) in read_line() argument
37 ch = getc(file); in read_line()
41 ch = getc(file); in read_line()
91 ch = getc(file); in read_line()
138 FILE *file; in normalization_test() local
147 file = fopen(file_name, "rb"); in normalization_test()
149 if (!file) in normalization_test()
154 while (read_line(file) > 0) in normalization_test()
/GUIX-v6.2.1/test/example_internal/bidi_text_draw_32bpp/
Dbidi_character_test.c25 static int read_line(FILE *file) in read_line() argument
36 ch = getc(file); in read_line()
40 ch = getc(file); in read_line()
97 ch = getc(file); in read_line()
153 FILE *file; in bidi_character_test() local
161 file = fopen(file_name, "rb"); in bidi_character_test()
163 if (!file) in bidi_character_test()
171 while (read_line(file) > 0) in bidi_character_test()
/GUIX-v6.2.1/test/
DREADME.md33 - **cmake\CMakeLists.txt:** The CMake file that defines the build types and the test suites.
34 - **cmake\regression\CMakeLists.txt:** The CMake file that defines the test cases for each test sui…
41 …sion_test\gx_show_canvas.exe:** A tool that displays GUIX canvas data that stored in a binary file.
46 …each test point, a specified area of the GUIX canvas is saved to a binary file named `<test_name>.…
47 - A checksum value, calculated based on the canvas data, is saved to a file named `<test_name>.chec…
48 - The binary file is used for checking the correctness of the test case visually.
49 - The checksum file enables faster verification during tests by comparing expected and actual check…
135 …tput_files` directory, where the failed output binary file is generated. The generated binary file
137 …to display the content in the failed output binary file. Compare it with the corresponding golden
146 - Ensure the main source file is named as `demo_guix_<example_name>.c`.
[all …]
/GUIX-v6.2.1/
DCMakeLists.txt40 # Include the user's override file if required
42 message(STATUS "Using default gx_user.h file")
45 message(STATUS "Using custom gx_user.h file from ${GX_USER_FILE}")
54 # Enable a build target that produces a ZIP file of all sources
/GUIX-v6.2.1/test/guix_test/regression_test/utility/
Dgx_validation_compare_file_data.c9 static void cleanup_file(FILE *file, char * buffer) in cleanup_file() argument
11 if(file) in cleanup_file()
12 fclose(file); in cleanup_file()
Dgx_validation_utility.c300 void gx_validation_write_one_frame(FILE *file) in gx_validation_write_one_frame() argument
303 fprintf(file, "\n\n"FRAME_ID"%d\n", gx_validation_frame_id); in gx_validation_write_one_frame()
306 fprintf(file, FRAME_COMMENT"%s\n", gx_validation_frame_comment); in gx_validation_write_one_frame()
308 fprintf(file, FRAME_DATA"\n"); in gx_validation_write_one_frame()
311 fwrite((char *)gx_validation_frame_buffer, sizeof(char), gx_validation_frame_size, file); in gx_validation_write_one_frame()
/GUIX-v6.2.1/guix_studio/libs/libjpeg/
DLICENSE.md41 file you modified, so others can tell that you modified that file (if
42 there is not an existing copyright header in that file, then you can
43 simply add a notice stating that you modified the file.)
49 3. You must include the IJG README file, and you must not alter any of the
50 copyright or license text in that file.
/GUIX-v6.2.1/test/guix_studio_test/test_view/
Dtest_guix_lib_version_set.py16 file = open(test_project,'r')
17 lines = file.readlines()
/GUIX-v6.2.1/guix_studio/build/vs_2019/msix_package_project/
DReadme.txt1 The app packaging project can be used to generate the required app package upload file (.msixupload…
3 To generate the GUIX Studio package upload file, run "build_guix_studio_msix_package.cmd" from "scr…
/GUIX-v6.2.1/test/guix_test/regression_test/
Dgx_show_canvas.md3 `gx_show_canvas.exe` is a tool to display the picture data that stored in a bin file, which generat…
9 4. Run the following command to show canvas data stored in a binary file.
/GUIX-v6.2.1/test/guix_test/cmake/libs/
DCMakeLists.txt12 message(STATUS "Using toolchain file: ${CMAKE_TOOLCHAIN_FILE}.")
26 file(GLOB header_files ${dir}/*.h)
/GUIX-v6.2.1/scripts/
Dwin-installer-helper.psm1117 $file = [System.IO.Path]::Combine("C:\Downloads", $FileName) in Get-File() variable
120 …Invoke-WebRequest -Uri $Url -UseBasicParsing -OutFile $file -UserAgent "Mozilla/4.0 (compatible; M… in Get-File()
125 return $file in Get-File() variable
758 $file = $_.FullName in Confirm-PresenceOfVisualStudioErrorLogFile() variable
761 Trace-Warning "Found error log file $file with size $len" in Confirm-PresenceOfVisualStudioErrorLogFile() variable
765 … throw "CDPXERROR: At least one error log file $file matching $Filter was found in $Path." in Confirm-PresenceOfVisualStudioErrorLogFile() variable
770 … throw "At least one non-empty log file $file matching $filter was found in $folder" in Confirm-PresenceOfVisualStudioErrorLogFile() variable
/GUIX-v6.2.1/test/guix_studio_test/fonts/
DNotoSansHans-Regular-readme.txt107 (d) If the Work includes a "NOTICE" text file as part of its
110 within such NOTICE file, excluding those notices that do not
112 of the following places: within a NOTICE text file distributed
117 of the NOTICE file are for informational purposes only and
142 origin of the Work and reproducing the content of the NOTICE file.
185 comment syntax for the file format. We also recommend that a
186 file or class name and description of purpose be included on the
193 you may not use this file except in compliance with the License.
/GUIX-v6.2.1/test/example_internal/common_resources/fonts/
DNotoSansHans-Regular-readme.txt107 (d) If the Work includes a "NOTICE" text file as part of its
110 within such NOTICE file, excluding those notices that do not
112 of the following places: within a NOTICE text file distributed
117 of the NOTICE file are for informational purposes only and
142 origin of the Work and reproducing the content of the NOTICE file.
185 comment syntax for the file format. We also recommend that a
186 file or class name and description of purpose be included on the
193 you may not use this file except in compliance with the License.

1234