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

1 2 3 4 5

  /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/chrome/browser/extensions/
path_util.h 13 // Prettifies |source_path|, by replacing the user's home directory with "~"
15 // For OS X, prettifies |source_path| by localizing every component of the
21 base::FilePath PrettifyPath(const base::FilePath& source_path);
path_util.cc 48 base::FilePath PrettifyPath(const base::FilePath& source_path) {
50 if (source_path.empty() || !PathService::Get(base::DIR_HOME, &home_path))
51 return source_path;
54 if (source_path == home_path)
58 DCHECK(source_path.IsAbsolute());
66 source_path.GetComponents(&components);
80 DCHECK_EQ(actual_path.value(), source_path.value());
83 if (home_path.AppendRelativePath(source_path, &display_path))
85 return 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/third_party/libvpx/source/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
  /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
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/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/tools/metrics/histograms/
update_use_counter_feature_enum.py 36 source_path = \
43 enum_dict = ReadHistogramValues(source_path, START_MARKER, END_MARKER)
48 source_enum_path=source_path,
  /external/chromium_org/build/toolchain/mac/
setup_toolchain.py 9 def CopyTool(source_path):
12 with open(source_path) as source_file:
  /external/chromium_org/chrome/browser/chromeos/file_manager/
fake_disk_mount_manager.cc 13 const std::string& source_path,
17 : source_path(source_path),
54 const std::string& source_path) const {
55 DiskMap::const_iterator iter = disks_.find(source_path);
71 void FakeDiskMountManager::MountPath(const std::string& source_path,
76 MountRequest(source_path, source_format, mount_label, type));
79 source_path,
80 source_path,
83 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;
60 virtual void MountPath(const std::string& source_path,
  /external/chromium_org/chrome/browser/chromeos/file_system_provider/operations/
copy_entry.cc 18 const base::FilePath& source_path,
22 source_path_(source_path),
39 options.source_path = source_path_.AsUTF8Unsafe();
move_entry.cc 18 const base::FilePath& source_path,
22 source_path_(source_path),
39 options.source_path = source_path_.AsUTF8Unsafe();
  /external/skia/tools/pyutils/
url_utils_test.py 44 source_path = os.path.join(tempdir_path, 'source')
45 source_url = url_utils.create_filepath_url(source_path)
46 with open(source_path, 'w') as source_handle:
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
configure 15 #source_path="`dirname \"$0\"`"
16 source_path=${0%/*}
17 . "${source_path}/build/make/configure.sh"
161 [ -f ${source_path}/${t}.mk ] && enable_feature ${t}
169 if [ "`cd ${source_path} && pwd`" != "`pwd`" ]; then
170 # test to see if source_path already configured
171 if [ -f ${source_path}/vpx_config.h ]; then
204 [ -d ${source_path}/../include ] && enable_feature alt_tree_layout
206 [ -d ${source_path}/${d} ] && disable_feature alt_tree_layout;
211 [ -d ${source_path}/vp8 ] && CODECS="${CODECS} vp8_encoder vp8_decoder
    [all...]
  /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/build/android/pylib/symbols/
elf_symbolizer.py 340 source_path = None
345 source_path = m.group(1)
355 if source_path and not posixpath.isabs(source_path):
356 path = self._symbolizer.disambiguation_table.get(source_path)
359 source_path = path if disambiguated else source_path
363 if source_path and not was_ambiguous:
364 source_path = os.path.abspath(source_path)
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/
configure 15 #source_path="`dirname \"$0\"`"
16 source_path=${0%/*}
17 . "${source_path}/build/make/configure.sh"
172 [ -f "${source_path}/${t}.mk" ] && enable_feature ${t}
180 if [ "`cd \"${source_path}\" && pwd`" != "`pwd`" ]; then
181 # test to see if source_path already configured
182 if [ -f "${source_path}/vpx_config.h" ]; then
215 [ -d "${source_path}/../include" ] && enable_feature alt_tree_layout
217 [ -d "${source_path}/${d}" ] && disable_feature alt_tree_layout;
222 [ -d "${source_path}/vp8" ] && CODECS="${CODECS} vp8_encoder vp8_decoder
    [all...]

Completed in 452 milliseconds

1 2 3 4 5