/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/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/storage/browser/database/ |
vfs_backend.h | 24 static base::File OpenTempFileInDirectory(const base::FilePath& dir_path,
|
vfs_backend.cc | 97 base::File VfsBackend::OpenTempFileInDirectory(const base::FilePath& dir_path, 108 if (!base::CreateTemporaryFileInDir(dir_path, &temp_file_path))
|
/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/chrome/common/extensions/docs/server2/ |
caching_file_system.py | 43 dir_path, file_path = posixpath.split(path) 44 dir_path = ToDirectory(dir_path) 50 if path == dir_path: 56 (path, dir_path, dir_stat.child_versions)) 59 dir_stat = self._stat_cache.Get(dir_path).Get() 66 self._stat_cache.Set(dir_path, dir_stat) 68 return self._MemoizedStatAsyncFromFileSystem(dir_path).Then(next) 71 def _MemoizedStatAsyncFromFileSystem(self, dir_path): 76 assert IsDirectory(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/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/tools/telemetry/telemetry/core/ |
discover.py | 27 for dir_path, _, filenames in os.walk(start_dir): 38 module_rel_path = os.path.relpath(os.path.join(dir_path, filename),
|
/external/chromium_org/tools/checkperms/ |
checkperms.py | 229 def get_git_root(dir_path): 231 root = capture(['git', 'rev-parse', '--show-toplevel'], dir_path).strip() 397 def get_scm(dir_path, bare): 400 root = get_git_root(dir_path or cwd) 404 return ApiGit(dir_path or root, bare) 408 print('Failed to determine the SCM for %s' % dir_path) 409 return ApiBase(dir_path or cwd, bare)
|
/external/chromium_org/ui/base/resource/ |
resource_bundle_unittest.cc | 394 const base::FilePath& locale_path = dir_path().Append( 407 const base::FilePath& dir_path() { return dir_.path(); } function in class:ui::ResourceBundleImageTest 419 base::FilePath data_path = dir_path().Append(FILE_PATH_LITERAL("sample.pak")); 442 base::FilePath data_path = dir_path().Append(FILE_PATH_LITERAL("sample.pak")); 444 dir_path().Append(FILE_PATH_LITERAL("sample_2x.pak")); 482 base::FilePath data_1x_path = dir_path().AppendASCII("sample_1x.pak"); 483 base::FilePath data_2x_path = dir_path().AppendASCII("sample_2x.pak"); 538 base::FilePath data_path = dir_path().AppendASCII("sample.pak"); 539 base::FilePath data_2x_path = dir_path().AppendASCII("sample_2x.pak"); 577 base::FilePath data_path = dir_path().AppendASCII("sample.pak") [all...] |
/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/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 + storage::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/build/android/gyp/util/ |
md5_check.py | 43 def _UpdateMd5ForDirectory(md5, dir_path): 44 for root, _, files in os.walk(dir_path):
|
/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
|
export_v8_tarball.py | 82 dir_path = os.path.join(GetV8Directory(), nonessential_dir) 83 if (name.startswith(dir_path) and
|
/external/chromium_org/ppapi/native_client/tests/breakpad_crash_test/ |
crash_dump_tester.py | 66 def ListPathsInDir(dir_path): 67 if os.path.exists(dir_path): 68 return [os.path.join(dir_path, name) 69 for name in os.listdir(dir_path)]
|
/development/testrunner/coverage/ |
coverage.py | 268 def _TidyDir(self, dir_path): 269 """Recursively tidy all html files in given dir_path.""" 270 html_file_pattern = os.path.join(dir_path, "*.html") 274 sub_dirs = os.listdir(dir_path) 276 sub_dir_path = os.path.join(dir_path, sub_dir_name)
|