HomeSort by relevance Sort by last modified time
    Searched refs:source_path (Results 1 - 25 of 85) sorted by null

1 2 3 4

  /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/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/chrome/browser/importer/
importer_data_types.h 38 FilePath source_path; member in struct:importer::SourceProfile
  /external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
file_browser_private_apitest.cc 38 std::string source_path; member in struct:__anon6830::TestMountPoint
184 DiskMountManager::MountPointInfo(kTestMountPoints[i].source_path,
196 kTestMountPoints[i].source_path,
198 kTestMountPoints[i].source_path,
224 const std::string& source_path) {
226 volumes_.find(source_path);
mounted_disk_monitor.cc 76 disk_mount_manager->FindDiskBySourcePath(mount_info.source_path);
79 mounted_disks_[mount_info.source_path] = disk->fs_uuid();
84 DiskMap::iterator it = mounted_disks_.find(mount_info.source_path);
  /external/chromium_org/chromeos/dbus/
fake_cros_disks_client.cc 21 void FakeCrosDisksClient::Mount(const std::string& source_path,
90 const std::string& source_path,
95 mount_completed_handler_.Run(error_code, source_path, mount_type, mount_path);
cros_disks_client.cc 90 virtual void Mount(const std::string& source_path,
98 writer.AppendString(source_path);
326 std::string source_path; local
330 !reader.PopString(&source_path) ||
336 handler.Run(static_cast<MountError>(error_code), source_path, local
366 virtual void Mount(const std::string& source_path,
379 FinishMount(MOUNT_ERROR_PATH_ALREADY_MOUNTED, source_path, type,
388 base::Bind(&PerformFakeMount, source_path, mounted_path),
391 source_path,
450 static MountError PerformFakeMount(const std::string& source_path,
    [all...]
  /external/chromium_org/chrome/common/importer/
importer_data_types.h 41 base::FilePath source_path; member in struct:importer::SourceProfile
  /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,
copy_tree_work_item.h 42 CopyTreeWorkItem(const base::FilePath& 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/chromeos/drive/
test_util.cc 128 base::FilePath source_path;
129 if (!file_util::CreateTemporaryFileInDir(temp_dir.path(), &source_path))
139 source_path,
  /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/chromeos/disks/
disk_mount_manager.cc 56 virtual void MountPath(const std::string& source_path,
62 DiskMap::const_iterator it = disks_.find(source_path);
64 OnMountCompleted(MOUNT_ERROR_INTERNAL, source_path, type, "");
69 source_path,
78 source_path,
110 std::string device_path = mount_point->second.source_path;
201 virtual const Disk* FindDiskBySourcePath(const std::string& source_path)
203 DiskMap::const_iterator disk_it = disks_.find(source_path);
232 disks_.find(mount_point.source_path) == disks_.end()) {
265 if (StartsWithASCII(it->second.source_path, mount_path
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
check.py 127 source_path = StringIO()
133 reporter = SilentReporter(source_path,
141 document = nodes.document(settings, reporter, source=source_path)
142 document.note_source(source_path, -1)

Completed in 663 milliseconds

1 2 3 4