Home
last modified time | relevance | path

Searched refs:src_file (Results 1 – 25 of 50) sorted by relevance

12

/third_party/cJSON/tests/unity/examples/example_3/
Drakefile_helper.rb49 src_file = dir + header.ext(C_EXTENSION)
50 return src_file if File.exist?(src_file)
179 src_file = find_source_file(header, include_dirs)
180 obj_list << compile(src_file, test_defines) unless src_file.nil?
231 src_file = find_source_file(header, include_dirs)
232 obj_list << compile(src_file) unless src_file.nil?
/third_party/unity/examples/example_3/
Drakefile_helper.rb48 src_file = dir + header.ext(C_EXTENSION)
49 return src_file if File.exist?(src_file)
181 src_file = find_source_file(header, include_dirs)
182 obj_list << compile(src_file, test_defines) unless src_file.nil?
233 src_file = find_source_file(header, include_dirs)
234 obj_list << compile(src_file) unless src_file.nil?
/third_party/node/deps/zlib/google/
Dzip.cc175 bool Unzip(const base::FilePath& src_file, const base::FilePath& dest_dir) { in Unzip() argument
177 src_file, dest_dir, base::BindRepeating(&ExcludeNoFilesFilter), true); in Unzip()
180 bool UnzipWithFilterCallback(const base::FilePath& src_file, in UnzipWithFilterCallback() argument
184 base::File file(src_file, base::File::FLAG_OPEN | base::File::FLAG_READ); in UnzipWithFilterCallback()
186 DLOG(WARNING) << "Failed to open " << src_file.value(); in UnzipWithFilterCallback()
196 bool UnzipWithFilterAndWriters(const base::PlatformFile& src_file, in UnzipWithFilterAndWriters() argument
202 if (!reader.OpenFromPlatformFile(src_file)) { in UnzipWithFilterAndWriters()
203 DLOG(WARNING) << "Failed to open src_file " << src_file; in UnzipWithFilterAndWriters()
/third_party/skia/third_party/externals/zlib/google/
Dzip.cc175 bool Unzip(const base::FilePath& src_file, const base::FilePath& dest_dir) { in Unzip() argument
177 src_file, dest_dir, base::BindRepeating(&ExcludeNoFilesFilter), true); in Unzip()
180 bool UnzipWithFilterCallback(const base::FilePath& src_file, in UnzipWithFilterCallback() argument
184 base::File file(src_file, base::File::FLAG_OPEN | base::File::FLAG_READ); in UnzipWithFilterCallback()
186 DLOG(WARNING) << "Failed to open " << src_file.value(); in UnzipWithFilterCallback()
196 bool UnzipWithFilterAndWriters(const base::PlatformFile& src_file, in UnzipWithFilterAndWriters() argument
202 if (!reader.OpenFromPlatformFile(src_file)) { in UnzipWithFilterAndWriters()
203 DLOG(WARNING) << "Failed to open src_file " << src_file; in UnzipWithFilterAndWriters()
/third_party/flutter/skia/third_party/externals/zlib/google/
Dzip.cc175 bool Unzip(const base::FilePath& src_file, const base::FilePath& dest_dir) { in Unzip() argument
176 return UnzipWithFilterCallback(src_file, dest_dir, in Unzip()
180 bool UnzipWithFilterCallback(const base::FilePath& src_file, in UnzipWithFilterCallback() argument
184 base::File file(src_file, base::File::FLAG_OPEN | base::File::FLAG_READ); in UnzipWithFilterCallback()
186 DLOG(WARNING) << "Failed to open " << src_file.value(); in UnzipWithFilterCallback()
196 bool UnzipWithFilterAndWriters(const base::PlatformFile& src_file, in UnzipWithFilterAndWriters() argument
202 if (!reader.OpenFromPlatformFile(src_file)) { in UnzipWithFilterAndWriters()
203 DLOG(WARNING) << "Failed to open src_file " << src_file; in UnzipWithFilterAndWriters()
/third_party/cJSON/tests/unity/test/
Drakefile_helper.rb59 src_file = dir + header.ext(C_EXTENSION)
60 return src_file if File.exist?(src_file)
214 src_file = find_source_file(header, include_dirs)
216 obj_list << compile(src_file, test_defines) unless src_file.nil?
/third_party/gn/build/
Dgen.py308 def build_source(src_file, settings): argument
310 'build %s: cxx %s' % (src_to_obj(src_file),
313 os.path.join(REPO_ROOT, src_file),
321 for src_file in settings['sources']:
322 build_source(src_file, settings)
326 ' '.join([src_to_obj(src_file) for src_file in settings['sources']])))
331 for src_file in settings['sources']:
332 build_source(src_file, settings)
337 ' '.join([src_to_obj(src_file) for src_file in settings['sources']]),
/third_party/unity/test/
Drakefile_helper.rb62 src_file = dir + header.ext(C_EXTENSION)
63 return src_file if File.exist?(src_file)
274 src_file = find_source_file(header, include_dirs)
276 obj_list << compile(src_file, test_defines) unless src_file.nil?
/third_party/iptables/extensions/
DgenInit.py59 def _need_rebuild(src_file, dest_file, src_md5_file): argument
60 if os.path.exists(src_file) and os.path.exists(dest_file) and os.path.exists(src_md5_file):
61 this_md5, err, returncode = _run_cmd("md5sum " + src_file + " | awk '{print $1}'")
69 …this_md5, err, returncode = _run_cmd("md5sum " + src_file + " | awk '{print $1}' >" + src_md5_file)
/third_party/gstreamer/gstplugins_bad/tests/examples/wpe/
Dmeson.build5 src_file = '@0@.c'.format(example) variable
8 src_file,
/third_party/gstreamer/gstplugins_bad/tests/examples/opencv/
Dmeson.build5 src_file = '@0@.c'.format(example) variable
8 src_file,
/third_party/gstreamer/gstplugins_bad/tests/examples/webrtc/
Dmeson.build5 src_file = '@0@.c'.format(example) variable
8 src_file,
/third_party/python/Tools/ssl/
Dmultissltests.py171 self.src_file = os.path.join(
231 return os.path.isfile(self.src_file)
247 src_dir = os.path.dirname(self.src_file)
267 log.info("Storing {}".format(self.src_file))
268 with open(self.src_file, "wb") as f:
278 tf = tarfile.open(self.src_file)
332 log.debug("Already has src {}".format(self.src_file))
/third_party/openh264/
Dcopy_to_wels_head.py30 src_file = os.path.join(src_dir, header)
36 shutil.copy2(src_file, des_file)
/third_party/ejdb/
Dcopy_iowow_header.py59 src_file = os.path.join(src_dir, header)
65 shutil.copy2(src_file, des_file)
/third_party/gstreamer/gstreamer/tools/
Dmeson.build20 src_file = '@0@.c'.format(tool) variable
30 src_file,
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/shaders/
Dgen_mtl_internal_shaders.py113 for src_file in src_files:
114 include_str = '#include "' + src_file + '" \n'
/third_party/ntfs-3g/ntfsprogs/
Dntfscp.c66 char *src_file; /* Source file */ member
177 opts.src_file = NULL; in parse_options()
191 } else if (!opts.src_file) { in parse_options()
192 opts.src_file = argv[optind - 1]; in parse_options()
281 } else if (!opts.src_file) { in parse_options()
897 if (stat(opts.src_file, &fst) == -1) { in main()
905 in = fopen(opts.src_file, "r"); in main()
1005 filename = basename(opts.src_file); in main()
/third_party/flutter/skia/third_party/externals/sdl/src/video/directfb/
DSDL_DirectFB_video.h91 static SDL_INLINE DFBResult sdl_dfb_check(DFBResult ret, const char *src_file, int src_line) { in sdl_dfb_check() argument
93 SDL_DFB_LOG("%s (%d):%s", src_file, src_line, DirectFBErrorString (ret) ); in sdl_dfb_check()
/third_party/python/Lib/test/
Dtest_shutil.py1162 src_file = os.path.join(src_dir, 'foo')
1165 write_file(src_file, 'foo')
1174 copy_func(src_file, dir2) # should not raise exceptions
1257 src_file = os.path.join(src_dir, 'foo')
1258 write_file(src_file, 'foo')
1259 rv = shutil.copyfile(src_file, dst_file)
1261 self.assertEqual(read_file(src_file), read_file(dst_file))
1267 src_file = os.path.join(src_dir, 'foo')
1268 write_file(src_file, 'foo')
1269 self.assertRaises(SameFileError, shutil.copyfile, src_file, src_file)
[all …]
/third_party/protobuf/objectivec/DevTools/
Dpddm.py665 src_file = SourceFile(f, _ImportResolver)
668 src_file.ProcessContent(strip_expansion=opts.collapse)
674 if src_file.processed_content != src_file.original_content:
678 f.write(src_file.processed_content)
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/
Dwrjpgcom.c546 FILE *src_file; in main() local
553 src_file = (comment_file != NULL ? comment_file : stdin); in main()
554 while ((c = getc(src_file)) != EOF) { in main()
/third_party/skia/third_party/externals/libjpeg-turbo/
Dwrjpgcom.c546 FILE *src_file; in main() local
553 src_file = (comment_file != NULL ? comment_file : stdin); in main()
554 while ((c = getc(src_file)) != EOF) { in main()
/third_party/libjpeg-turbo/
Dwrjpgcom.c546 FILE *src_file; in main() local
553 src_file = (comment_file != NULL ? comment_file : stdin); in main()
554 while ((c = getc(src_file)) != EOF) { in main()
/third_party/cJSON/tests/unity/auto/
Dunity_test_summary.py90 src_file,src_line,test_name,status,msg = parts
92 src_file,src_line,test_name,status = parts

12