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

1 2 3 4

  /external/chromium_org/remoting/host/
ipc_constants.cc 23 base::FilePath dir_path; local
24 if (!PathService::Get(base::DIR_EXE, &dir_path)) {
29 base::FilePath path = dir_path.Append(binary);
sas_injector_win.cc 144 base::FilePath dir_path; local
145 if (!PathService::Get(base::DIR_EXE, &dir_path)) {
150 sas_dll_.Reset(base::LoadNativeLibrary(dir_path.Append(kSasDllFileName),
  /external/chromium_org/chrome/common/extensions/docs/server2/
caching_file_system.py 45 dir_path, file_path = posixpath.split(path)
46 if dir_path and not dir_path.endswith('/'):
47 dir_path += '/'
53 if path == dir_path:
59 (path, dir_path, dir_stat.child_versions))
62 dir_stat = self._stat_object_store.Get(dir_path).Get()
66 dir_stat_future = self._MemoizedStatAsyncFromFileSystem(dir_path)
71 self._stat_object_store.Set(dir_path, dir_stat)
76 def _MemoizedStatAsyncFromFileSystem(self, dir_path)
    [all...]
test_file_system.py 84 dir_path = path[:slash_index] + '/'
85 self._path_stats[dir_path] = max(self._path_stats.get(dir_path, 0),
87 if dir_path == '/':
  /external/chromium_org/net/test/
python_utils.cc 22 std::string dir_path; local
24 dir_path = base::WideToUTF8(dir.value());
26 dir_path = dir.value();
29 env->SetVar(kPythonPathEnv, dir_path.c_str());
30 } else if (old_path.find(dir_path) == std::string::npos) {
37 new_path.append(dir_path.c_str());
  /external/chromium_org/webkit/browser/database/
vfs_backend.h 24 static base::File OpenTempFileInDirectory(const base::FilePath& dir_path,
  /external/chromium_org/tools/checkperms/
checkperms.py 229 def get_svn_info(dir_path):
231 if not os.path.isdir(dir_path):
233 out = capture(['svn', 'info', '.', '--non-interactive'], dir_path)
237 def get_svn_url(dir_path):
238 return get_svn_info(dir_path).get('URL')
241 def get_svn_root(dir_path):
243 svn_url = get_svn_url(dir_path)
248 parent = os.path.dirname(dir_path)
249 if parent == dir_path:
253 return dir_path
    [all...]
  /packages/apps/Browser/tools/
get_search_engines.py 211 dir_path = os.path.join(self.resdir, 'values-' + language + '-r' + country)
213 self.writeEngineList(dir_path, country)
215 def writeEngineList(self, dir_path, country):
216 if os.path.exists(dir_path) and not os.path.isdir(dir_path):
217 print "File exists in output directory path " + dir_path + ". Please remove it and try again."
239 os.path.join(dir_path, 'donottranslate-search_engines.xml'),
252 dir_path = os.path.dirname(out_path)
253 if not os.path.exists(dir_path):
254 os.makedirs(dir_path)
    [all...]
  /external/chromium_org/content/common/
plugin_list_posix.cc 18 void PluginList::GetPluginsInDir(const base::FilePath& dir_path,
  /external/chromium_org/net/url_request/
url_request_file_dir_job.cc 27 const base::FilePath& dir_path)
29 lister_(dir_path, this),
30 dir_path_(dir_path),
url_request_file_dir_job.h 23 const base::FilePath& dir_path);
  /system/media/camera/docs/
metadata-generate 82 local dir_path="$(dirname "$file")"
83 echo "Trying to cd into $dir_path" >& /dev/null
85 local git_path="$(cd "$dir_path";
89 local diff_result="$(cd "$dir_path";
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/
filereader.py 135 for dir_path, dir_names, file_names in os.walk(directory):
137 file_path = self.filesystem.join(dir_path, file_name)
  /external/chromium_org/ui/base/resource/
resource_bundle_unittest.cc 363 const base::FilePath& locale_path = dir_path().Append(
377 const base::FilePath& dir_path() { return dir_.path(); } function in class:ui::ResourceBundleImageTest
389 base::FilePath data_path = dir_path().Append(FILE_PATH_LITERAL("sample.pak"));
412 base::FilePath data_path = dir_path().Append(FILE_PATH_LITERAL("sample.pak"));
414 dir_path().Append(FILE_PATH_LITERAL("sample_2x.pak"));
452 base::FilePath data_1x_path = dir_path().AppendASCII("sample_1x.pak");
453 base::FilePath data_2x_path = dir_path().AppendASCII("sample_2x.pak");
508 base::FilePath data_path = dir_path().AppendASCII("sample.pak");
509 base::FilePath data_2x_path = dir_path().AppendASCII("sample_2x.pak");
547 base::FilePath data_path = dir_path().AppendASCII("sample.pak")
    [all...]
  /external/chromium_org/build/android/gyp/util/
build_utils.py 32 def MakeDirectory(dir_path):
34 os.makedirs(dir_path)
39 def DeleteDirectory(dir_path):
40 if os.path.exists(dir_path):
41 shutil.rmtree(dir_path)
md5_check.py 43 def _UpdateMd5ForDirectory(md5, dir_path):
44 for root, _, files in os.walk(dir_path):
  /external/chromium_org/net/base/
directory_lister_unittest.cc 119 base::FilePath dir_path = dir_data.first.AppendASCII(dir_name); variable
120 ASSERT_TRUE(base::CreateDirectory(dir_path));
121 directories.push_back(std::make_pair(dir_path, dir_data.second + 1));
  /external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/test/
bwe_test_baselinefile.cc 120 std::string dir_path = webrtc::test::OutputPath() + kResourceSubDir; local
121 if (!webrtc::test::CreateDir(dir_path)) {
122 printf("WARNING: Cannot create output dir: %s\n", dir_path.c_str());
  /external/chromium_org/tools/perf/benchmarks/
blink_perf.py 27 def _AddDir(dir_path, skipped):
28 for candidate_path in os.listdir(dir_path):
31 candidate_path = os.path.join(dir_path, candidate_path)
  /external/chromium_org/content/browser/renderer_host/pepper/
pepper_internal_file_ref_backend.cc 227 std::string dir_path = path_; local
228 if (dir_path.empty() || dir_path[dir_path.size() - 1] != '/')
229 dir_path += '/';
244 dir_path + fileapi::FilePathToString(base::FilePath(it->name));
  /external/chromium_org/tools/grit/grit/tool/
resize.py 238 dir_path = os.path.join(self.base_folder, project_name)
239 if not os.path.isdir(dir_path):
240 os.mkdir(dir_path)
251 fname = os.path.join(dir_path, '%s.vcproj' % project_name)
275 fname = os.path.join(dir_path, '%s.rc' % project_name)
282 fname = os.path.join(dir_path, 'resource.h')
  /external/chromium_org/chrome/browser/history/
in_memory_url_index.h 246 void set_history_dir(const base::FilePath& dir_path) {
247 history_dir_ = dir_path;
  /external/chromium_org/tools/export_tarball/
export_tarball.py 103 dir_path = os.path.join(GetSourceDirectory(), nonessential_dir)
104 if (name.startswith(dir_path) and
  /external/chromium_org/tools/telemetry/telemetry/core/
discover.py 29 for dir_path, _, filenames in os.walk(start_dir):
40 module_rel_path = os.path.relpath(os.path.join(dir_path, filename),
  /external/chromium_org/chrome/browser/media_galleries/linux/
mtp_device_task_helper.h 68 // |dir_path| specifies the directory file path.
76 void ReadDirectoryByPath(const std::string& dir_path,

Completed in 2654 milliseconds

1 2 3 4