Searched refs:src_file (Results 1 - 25 of 29) sorted by relevance

12

/external/chromium_org/courgette/
H A Dversioning_unittest.cc15 void TestApplyingOldPatch(const char* src_file,
20 void VersioningTest::TestApplyingOldPatch(const char* src_file, argument
23 std::string old_buffer = FileContents(src_file);
/external/chromium_org/tools/gyp/test/make/
H A Dgyptest-noload.py39 with open('relocate/noload/main.c', 'a') as src_file:
40 src_file.write("\n")
/external/chromium_org/remoting/host/installer/
H A Dbuild-installer-archive.py74 def remapSrcFile(dst_root, src_roots, src_file):
77 Any matching |src_roots| prefix is stripped from |src_file| before
83 src_file = 'host/installer/mac/Scripts/keystone_install.sh'
87 The |src_file| must match one of the |src_roots| prefixes. If there are no
96 src_roots: Array of path prefixes which will be stripped of |src_file|
98 src_file: Source file to be copied.
106 src_file = os.path.normpath(src_file)
107 if os.path.commonprefix([root, src_file]) == root:
108 src_file
[all...]
/external/chromium_org/tools/gn/bootstrap/
H A Dbootstrap.py350 for src_file in settings['sources']:
352 'build %s: %s %s' % (src_to_obj(src_file),
354 os.path.join(SRC_ROOT, src_file)),
369 ' '.join([src_to_obj(src_file) for src_file in settings['sources']])))
/external/chromium_org/third_party/zlib/google/
H A Dzip.cc95 bool Unzip(const base::FilePath& src_file, const base::FilePath& dest_dir) { argument
97 if (!reader.Open(src_file)) {
98 DLOG(WARNING) << "Failed to open " << src_file.value();
H A Dzip_unittest.cc125 base::FilePath src_file = src_dir.AppendASCII("test.txt"); local
143 EXPECT_EQ(1, base::WriteFile(src_file, "1", 1));
144 EXPECT_TRUE(base::TouchFile(src_file, base::Time::Now(), test_mtime));
/external/chromium_org/native_client_sdk/src/tools/
H A Doshelpers.py369 for src_file in globbed_src_args:
370 src_file = os.path.normpath(src_file)
371 src_files.append(src_file)
372 if options.recursive and os.path.isdir(src_file):
373 for root, dirs, files in os.walk(src_file):
388 new_files_to_add = [OSMakeZipPath(src_file) for src_file in src_files]
/external/chromium_org/tools/protoc_wrapper/
H A Dprotoc_wrapper.py72 with open(os.path.join(path, filename), 'r') as src_file:
74 for line in src_file:
/external/valgrind/main/cachegrind/
H A Dcg_annotate.in656 my $src_file = $_[0];
662 @ Source file '$src_file' is more recent than input file '$input_file'.
675 my ($src_more_recent_than_inputfile, $src_file, $excess_line_nums) = @_;
680 @@ cause: '$src_file' has changed since information was gathered.
686 } elsif ($src_file =~ /\.h$/) {
703 @@ Information recorded about lines past the end of '$src_file'.
733 foreach my $src_file (keys %all_ann_files) {
740 my $try_name = $include_dir . $src_file;
744 ? $src_file
745 : "$include_dir + $src_file");
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dradeon_compiler_util.h51 rc_register_file src_file,
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_compiler_util.h51 rc_register_file src_file,
/external/chromium_org/native_client_sdk/src/build_tools/
H A Dgenerate_make.py172 src_file = FindFile(src_name, root, search_dirs)
173 if not src_file:
177 if os.stat(src_file).st_mtime <= os.stat(dst_file).st_mtime:
179 src_file, dst_file))
184 buildbot_common.CopyFile(src_file, dst_file)
H A Dbuild_sdk.py285 src_file = dest_file = file_spec
287 src_file, dest_file = file_spec
289 src_file = os.path.join(src_root, src_file)
292 sources = glob.glob(src_file)
294 sources = [src_file]
/external/chromium_org/chrome/browser/chromeos/drive/
H A Dfile_cache_unittest.cc126 base::FilePath src_file; local
127 ASSERT_TRUE(base::CreateTemporaryFileInDir(temp_dir_.path(), &src_file));
136 cache_->Store(id_tmp, md5_tmp, src_file,
147 cache_->Store(id_pinned, md5_pinned, src_file,
352 base::FilePath src_file; local
353 ASSERT_TRUE(base::CreateTemporaryFileInDir(temp_dir_.path(), &src_file));
359 ASSERT_EQ(FILE_ERROR_OK, cache_->Store(id, "md5", src_file,
444 base::FilePath src_file; local
445 ASSERT_TRUE(base::CreateTemporaryFileInDir(temp_dir_.path(), &src_file));
451 ASSERT_EQ(FILE_ERROR_OK, cache_->Store(id, "md5", src_file,
487 base::FilePath src_file; local
547 base::FilePath src_file; local
[all...]
/external/chromium_org/content/browser/fileapi/
H A Dfile_system_operation_impl_unittest.cc530 FileSystemURL src_file(CreateFile("src/file"));
534 Move(src_file, dest_dir, FileSystemOperation::OPTION_NONE));
549 FileSystemURL src_file(CreateFile("src"));
553 Move(src_file, dest_file, FileSystemOperation::OPTION_NONE));
564 FileSystemURL src_file(CreateFile("src"));
568 Move(src_file, URLForPath("new"), FileSystemOperation::OPTION_NONE));
685 FileSystemURL src_file(CreateFile("src"));
689 Copy(src_file, dest_dir, FileSystemOperation::OPTION_NONE));
706 FileSystemURL src_file(CreateFile("src/file"));
708 EXPECT_EQ(base::File::FILE_OK, Truncate(src_file,
[all...]
H A Drecursive_operation_delegate_unittest.cc187 FileSystemURL src_file(CreateFile("src"));
193 context->file_system_context(), src_file,
204 EXPECT_EQ(src_file, entry.url);
/external/chromium_org/build/android/gyp/
H A Dpackage_resources.py85 src_file = os.path.join(src_dir, src_file_name)
88 shutil.move(src_file, dst_file)
/external/chromium_org/tools/memory_inspector/memory_inspector/classification/
H A Dnative_heap_classifier.py122 src_file = frame.symbol.source_info[0].source_file_path
123 src_dir = posixpath.dirname(src_file.replace('\\', '/')) + '/'
/external/valgrind/main/callgrind/
H A Dcallgrind_annotate.in982 my $src_file = $_[0];
988 @ Source file '$src_file' is more recent than input file '$input_file'.
1001 my ($src_more_recent_than_inputfile, $src_file, $excess_line_nums) = @_;
1006 @@ cause: '$src_file' has changed since information was gathered.
1012 } elsif ($src_file =~ /\.h$/) {
1029 @@ Information recorded about lines past the end of '$src_file'.
1059 foreach my $src_file (keys %all_ann_files) {
1064 my $try_name = $include_dir . $src_file;
1068 ? $src_file
1069 : "$include_dir + $src_file");
[all...]
/external/chromium_org/third_party/libjpeg_turbo/
H A Dwrjpgcom.c538 FILE * src_file; local
545 src_file = (comment_file != NULL ? comment_file : stdin);
546 while ((c = getc(src_file)) != EOF) {
/external/jpeg/
H A Dwrjpgcom.c538 FILE * src_file; local
545 src_file = (comment_file != NULL ? comment_file : stdin);
546 while ((c = getc(src_file)) != EOF) {
/external/qemu/distrib/jpeg-6b/
H A Dwrjpgcom.c538 FILE * src_file; local
545 src_file = (comment_file != NULL ? comment_file : stdin);
546 while ((c = getc(src_file)) != EOF) {
/external/chromium_org/chrome/tools/build/win/
H A Dresedit.py312 for res_type, res_lang, res_name, src_file in options.update:
313 editor.UpdateResource(res_type, int(res_lang), res_name, src_file)
/external/chromium_org/third_party/android_crazy_linker/src/tests/
H A Dtest_util.h228 ScopedFILE src_file; local
229 src_file.Open(src_path.c_str(), "rb");
238 size_t read = fread(buffer, 1, sizeof buffer, src_file.file());
/external/chromium_org/content/common/gpu/media/
H A Dvideo_encode_accelerator_unittest.cc210 base::MemoryMappedFile src_file; local
211 CHECK(src_file.Initialize(base::FilePath(test_stream->in_filename)));
216 CHECK_EQ(src_file.length() % visible_buffer_size, 0U)
219 test_stream->num_frames = src_file.length() / visible_buffer_size;
229 const uint8* src = src_file.data();

Completed in 7468 milliseconds

12