Home
last modified time | relevance | path

Searched refs:dir_path (Results 1 – 24 of 24) sorted by relevance

/external/chromium/net/test/
Dpython_utils.cc21 std::string dir_path; in AppendToPythonPath() local
23 dir_path = WideToUTF8(dir.value()); in AppendToPythonPath()
25 dir_path = dir.value(); in AppendToPythonPath()
28 env->SetVar(kPythonPathEnv, dir_path.c_str()); in AppendToPythonPath()
29 } else if (old_path.find(dir_path) == std::string::npos) { in AppendToPythonPath()
36 new_path.append(dir_path.c_str()); in AppendToPythonPath()
/external/chromium/chrome/browser/ui/download/
Ddownload_tab_helper.cc53 const FilePath& dir_path, in SavePage() argument
59 new SavePackage(tab_contents(), save_type, main_file, dir_path); in SavePage()
Ddownload_tab_helper.h30 bool SavePage(const FilePath& main_file, const FilePath& dir_path,
/external/linux-tools-perf/util/
Dparse-events.c175 char dir_path[MAXPATHLEN]; in tracepoint_id_to_path() local
186 snprintf(dir_path, MAXPATHLEN, "%s/%s", debugfs_path, in tracepoint_id_to_path()
188 evt_dir = opendir(dir_path); in tracepoint_id_to_path()
194 snprintf(evt_path, MAXPATHLEN, "%s/%s/id", dir_path, in tracepoint_id_to_path()
914 char dir_path[MAXPATHLEN]; in print_tracepoint_events() local
928 snprintf(dir_path, MAXPATHLEN, "%s/%s", debugfs_path, in print_tracepoint_events()
930 evt_dir = opendir(dir_path); in print_tracepoint_events()
958 char dir_path[MAXPATHLEN]; in is_valid_tracepoint() local
969 snprintf(dir_path, MAXPATHLEN, "%s/%s", debugfs_path, in is_valid_tracepoint()
971 evt_dir = opendir(dir_path); in is_valid_tracepoint()
/external/webkit/Tools/Scripts/webkitpy/style/
Dfilereader.py137 for dir_path, dir_names, file_names in os.walk(directory):
139 file_path = os.path.join(dir_path, file_name)
/external/webkit/Tools/Scripts/webkitpy/test/
Dmain.py44 for dir_path, dir_names, file_names in os.walk(webkitpy_dir):
48 unittest_path = os.path.join(dir_path, file_name)
/external/webkit/Source/JavaScriptCore/tests/mozilla/
Druntests.pl50 local $dir_path = $path . $dir;
51 chdir $dir_path;
53 opendir ( DIR, ${dir_path} );
/external/chromium/chrome/browser/download/
Ddownload_manager.h98 void GetTemporaryDownloads(const FilePath& dir_path,
103 void GetAllDownloads(const FilePath& dir_path,
108 void GetCurrentDownloads(const FilePath& dir_path,
Ddownload_manager.cc138 const FilePath& dir_path, std::vector<DownloadItem*>* result) { in GetTemporaryDownloads() argument
144 it->second->full_path().DirName() == dir_path) in GetTemporaryDownloads()
150 const FilePath& dir_path, std::vector<DownloadItem*>* result) { in GetAllDownloads() argument
156 (dir_path.empty() || it->second->full_path().DirName() == dir_path)) in GetAllDownloads()
162 const FilePath& dir_path, std::vector<DownloadItem*>* result) { in GetCurrentDownloads() argument
177 if (!dir_path.empty() && (it->second->full_path().DirName() != dir_path)) in GetCurrentDownloads()
186 original_profile->GetDownloadManager()->GetCurrentDownloads(dir_path, in GetCurrentDownloads()
Dsave_package.h177 static bool GetSafePureFileName(const FilePath& dir_path,
Dsave_package.cc385 bool SavePackage::GetSafePureFileName(const FilePath& dir_path, in GetSafePureFileName() argument
391 dir_path.value().length() - in GetSafePureFileName()
394 if (!file_util::EndsWithSeparator(dir_path)) in GetSafePureFileName()
/external/chromium/chrome/browser/extensions/
Dextension_browsertest.cc134 FilePath ExtensionBrowserTest::PackExtension(const FilePath& dir_path) { in PackExtension() argument
147 if (!file_util::PathExists(dir_path)) { in PackExtension()
148 ADD_FAILURE() << "Extension dir not found: " << dir_path.value(); in PackExtension()
153 if (!creator->Run(dir_path, in PackExtension()
Dextension_browsertest.h46 FilePath PackExtension(const FilePath& dir_path);
Dextension_service_unittest.cc539 void PackAndInstallCrx(const FilePath& dir_path, in PackAndInstallCrx() argument
559 ASSERT_TRUE(creator->Run(dir_path, in PackAndInstallCrx()
569 void PackAndInstallCrx(const FilePath& dir_path, in PackAndInstallCrx() argument
571 PackAndInstallCrx(dir_path, FilePath(), should_succeed); in PackAndInstallCrx()
/external/webkit/Tools/Scripts/
Dtest-webkitpy128 for dir_path, dir_names, file_names in os.walk(dir_to_clean):
131 file_path = os.path.join(dir_path, file_name)
/external/chromium/net/url_request/
Durl_request_file_dir_job.cc25 const FilePath& dir_path) in URLRequestFileDirJob() argument
27 dir_path_(dir_path), in URLRequestFileDirJob()
Durl_request_file_dir_job.h23 URLRequestFileDirJob(URLRequest* request, const FilePath& dir_path);
/external/chromium/base/
Dfile_util.cc170 bool IsDirectoryEmpty(const FilePath& dir_path) { in IsDirectoryEmpty() argument
171 FileEnumerator files(dir_path, false, in IsDirectoryEmpty()
Dfile_util.h252 BASE_API bool IsDirectoryEmpty(const FilePath& dir_path);
Dfile_util_unittest.cc393 FilePath dir_path = temp_dir_.path().Append(FPL("dir")); in TEST_F() local
394 FilePath file_b_path = dir_path.Append(FPL("file_b")); in TEST_F()
395 file_util::CreateDirectory(dir_path); in TEST_F()
/external/chromium/chrome/browser/tab_contents/
Dtab_contents.h588 bool SavePage(const FilePath& main_file, const FilePath& dir_path,
/external/chromium/chrome/browser/automation/
Dtesting_automation_provider.h247 const FilePath& dir_path,
Dtesting_automation_provider.cc1476 const FilePath& dir_path, in SavePage() argument
1501 wrapper->download_tab_helper()->SavePage(file_name, dir_path, save_type); in SavePage()
/external/webkit/Tools/android/flex-2.5.4a/MISC/Atari/
DAtari.patches487 X+ fprintf(stderr,"Options : a dir_path : directory path for temporary files\n");