/external/chromium_org/build/win/ |
install-build-deps.py | 13 source_path = os.path.join(os.environ['ProgramFiles(x86)'], 18 backup_path = source_path + ".backup" 21 print "Backing up %s..." % source_path 22 shutil.copyfile(source_path, backup_path) 25 source_path, backup_path) 28 source = open(source_path).read() 37 open(source_path, "w").write(result) 38 print "Patched %s." % source_path
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/ |
workspace_mock.py | 34 def create_zip(self, zip_path, source_path): 36 self.source_path = source_path
|
workspace.py | 58 def create_zip(self, zip_path, source_path, zip_class=zipfile.ZipFile): 61 # for root, dirs, files in os.walk(source_path): 64 # zip_file.write(os.path.relpath(path, source_path)) 68 self._executive.run_command(['zip', '-9', '-r', zip_path, '.'], cwd=source_path) 70 _log.error("Workspace.create_zip failed in %s:\n%s" % (source_path, e.message_with_output()))
|
/external/chromium_org/chrome/installer/mini_installer/ |
decompress_test.cc | 14 base::FilePath source_path; local 15 PathService::Get(base::DIR_SOURCE_ROOT, &source_path); 16 source_path = source_path.Append(FILE_PATH_LITERAL("chrome")) 30 EXPECT_TRUE(mini_installer::Expand(source_path.value().c_str(),
|
/external/chromium_org/chrome/installer/gcapi_mac/ |
gcapi.h | 26 // |source_path| Path to an uninstalled Google Chrome.app directory, for example 39 int InstallGoogleChrome(const char* source_path,
|
/external/chromium_org/chrome/browser/chromeos/file_manager/ |
fake_disk_mount_manager.cc | 12 const std::string& source_path, 16 : source_path(source_path), 53 const std::string& source_path) const { 54 DiskMap::const_iterator iter = disks_.find(source_path); 68 void FakeDiskMountManager::MountPath(const std::string& source_path, 73 MountRequest(source_path, source_format, mount_label, type)); 76 source_path, 77 source_path, 80 mount_points_.insert(make_pair(source_path, mount_point)) [all...] |
fake_disk_mount_manager.h | 22 MountRequest(const std::string& source_path, 27 std::string source_path; member in struct:file_manager::FakeDiskMountManager::MountRequest 56 const std::string& source_path) const OVERRIDE; 59 virtual void MountPath(const std::string& source_path,
|
mounted_disk_monitor.cc | 77 disk_mount_manager_->FindDiskBySourcePath(mount_info.source_path); 80 mounted_disks_[mount_info.source_path] = disk->fs_uuid(); 85 DiskMap::iterator it = mounted_disks_.find(mount_info.source_path);
|
/external/libvpx/libvpx/build/make/ |
version.sh | 22 source_path=${1:-.} 27 if [ -d ${source_path}/.git ]; then 29 export GIT_DIR=${source_path}/.git 34 for p in "${source_path}" "${source_path}/.."; do
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_py_compile.py | 14 self.source_path = os.path.join(self.directory, '_test.py') 15 self.pyc_path = self.source_path + 'c' 18 # current working directory path and the 'self.source_path' might be 21 drive = os.path.splitdrive(self.source_path)[0] 25 with open(self.source_path, 'w') as file: 34 py_compile.compile(self.source_path, self.pyc_path) 40 py_compile.compile(os.path.basename(self.source_path), 46 py_compile.compile(os.path.relpath(self.source_path),
|
test_compileall.py | 16 self.source_path = os.path.join(self.directory, '_test.py') 17 self.bc_path = self.source_path + ('c' if __debug__ else 'o') 18 with open(self.source_path, 'w') as file: 22 shutil.copyfile(self.source_path, self.source_path2) 30 mtime = int(os.stat(self.source_path).st_mtime) 39 py_compile.compile(self.source_path) 65 compileall.compile_file(self.source_path, force=False, quiet=True)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_py_compile.py | 14 self.source_path = os.path.join(self.directory, '_test.py') 15 self.pyc_path = self.source_path + 'c' 18 # current working directory path and the 'self.source_path' might be 21 drive = os.path.splitdrive(self.source_path)[0] 25 with open(self.source_path, 'w') as file: 34 py_compile.compile(self.source_path, self.pyc_path) 40 py_compile.compile(os.path.basename(self.source_path), 46 py_compile.compile(os.path.relpath(self.source_path),
|
test_compileall.py | 16 self.source_path = os.path.join(self.directory, '_test.py') 17 self.bc_path = self.source_path + ('c' if __debug__ else 'o') 18 with open(self.source_path, 'w') as file: 22 shutil.copyfile(self.source_path, self.source_path2) 30 mtime = int(os.stat(self.source_path).st_mtime) 39 py_compile.compile(self.source_path) 65 compileall.compile_file(self.source_path, force=False, quiet=True)
|
/external/chromium_org/build/toolchain/mac/ |
setup_toolchain.py | 9 def CopyTool(source_path): 12 with open(source_path) as source_file:
|
/external/chromium/chrome/browser/importer/ |
importer_data_types.h | 38 FilePath source_path; member in struct:importer::SourceProfile
|
/external/chromium_org/chrome/browser/ |
sxs_linux.cc | 115 base::FilePath source_path; local 116 if (!PathService::Get(chrome::DIR_USER_DATA, &source_path)) { 121 base::FilePath channels_path(source_path.AppendASCII(kChannelsFileName)); 148 if (!base::Move(source_path, target_path)) { 149 LOG(ERROR) << "Failed to rename '" << source_path.value()
|
/external/chromium_org/chrome/browser/chromeos/extensions/file_manager/ |
file_browser_private_apitest.cc | 39 std::string source_path; member in struct:__anon6952::TestMountPoint 185 DiskMountManager::MountPointInfo(kTestMountPoints[i].source_path, 197 kTestMountPoints[i].source_path, 199 kTestMountPoints[i].source_path, 225 const std::string& source_path) { 227 volumes_.find(source_path);
|
/external/chromium_org/chromeos/dbus/ |
fake_cros_disks_client.cc | 26 void FakeCrosDisksClient::Mount(const std::string& source_path, 95 const std::string& source_path, 100 mount_completed_handler_.Run(error_code, source_path, mount_type, mount_path);
|
cros_disks_client.cc | 85 virtual void Mount(const std::string& source_path, 93 writer.AppendString(source_path); 345 std::string source_path; local 349 !reader.PopString(&source_path) || 355 handler.Run(static_cast<MountError>(error_code), source_path, local 386 virtual void Mount(const std::string& source_path, 399 FinishMount(MOUNT_ERROR_PATH_ALREADY_MOUNTED, source_path, type, 408 base::Bind(&PerformFakeMount, source_path, mounted_path), 411 source_path, 470 static MountError PerformFakeMount(const std::string& source_path, [all...] |
/external/chromium_org/chrome/installer/util/ |
move_tree_work_item.h | 36 // |source_path| specifies file or directory that will be moved to location 41 // whether the directory tree in source_path is entirely contained in 42 // dest_path and all files in source_path are present and of the same length 44 // attempt to move source_path to dest_path as stated above. 45 MoveTreeWorkItem(const base::FilePath& source_path,
|
work_item.cc | 42 const base::FilePath& source_path, 47 return new CopyTreeWorkItem(source_path, dest_path, temp_dir, 81 const base::FilePath& source_path, 85 return new MoveTreeWorkItem(source_path,
|
/external/libvpx/libvpx/ |
configure | 15 #source_path="`dirname \"$0\"`" 16 source_path=${0%/*} 17 . "${source_path}/build/make/configure.sh" 157 [ -f ${source_path}/${t}.mk ] && enable_feature ${t} 189 [ -d ${source_path}/../include ] && enable_feature alt_tree_layout 191 [ -d ${source_path}/${d} ] && disable_feature alt_tree_layout; 196 [ -d ${source_path}/vp8 ] && CODECS="${CODECS} vp8_encoder vp8_decoder" 197 [ -d ${source_path}/vp9 ] && CODECS="${CODECS} vp9_encoder vp9_decoder" 200 [ -f ${source_path}/../include/vpx/vp8cx.h ] && CODECS="${CODECS} vp8_encoder" 201 [ -f ${source_path}/../include/vpx/vp8dx.h ] && CODECS="${CODECS} vp8_decoder [all...] |
/external/llvm/utils/lit/lit/ |
discovery.py | 82 source_path = ts.getSourcePath(path_in_suite) 83 cfgpath = os.path.join(source_path, litConfig.local_config_name) 117 source_path = ts.getSourcePath(path_in_suite) 118 if not os.path.exists(source_path): 122 if not os.path.isdir(source_path): 138 for filename in os.listdir(source_path): 144 file_sourcepath = os.path.join(source_path, filename)
|
/external/chromium_org/chrome/browser/safe_browsing/ |
signature_util_win_unittest.cc | 24 base::FilePath source_path; local 25 ASSERT_TRUE(PathService::Get(base::DIR_SOURCE_ROOT, &source_path)); 26 testdata_path_ = source_path
|
/external/chromium_org/chrome/common/importer/ |
importer_data_types.h | 41 base::FilePath source_path; member in struct:importer::SourceProfile
|