HomeSort by relevance Sort by last modified time
    Searched refs:dir_path (Results 26 - 50 of 80) sorted by null

12 3 4

  /external/chromium_org/tools/export_tarball/
export_tarball.py 107 dir_path = os.path.join(GetSourceDirectory(), nonessential_dir)
108 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/chrome/browser/media_galleries/linux/
mtp_device_task_helper.h 69 // |dir_path| specifies the directory file path.
77 void ReadDirectoryByPath(const std::string& dir_path,
mtp_device_task_helper.cc 75 const std::string& dir_path,
83 device_handle_, dir_path,
  /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)]
  /external/skia/gm/rebaseline_server/
server.py 108 def _create_svn_checkout(dir_path, repo_url):
113 dir_path: path to the local checkout; if this directory does not yet exist,
115 repo_url: URL of SVN repo to check out into dir_path (unless the local
119 local_checkout = svn.Svn(dir_path)
120 if not os.path.isdir(dir_path):
121 os.makedirs(dir_path)
149 dir_path=actuals_dir, repo_url=ACTUALS_SVN_REPO)
  /external/chromium/net/url_request/
url_request_file_dir_job.cc 25 const FilePath& dir_path)
27 dir_path_(dir_path),
  /external/chromium_org/webkit/browser/database/
vfs_backend.cc 103 const base::FilePath& dir_path,
115 if (!base::CreateTemporaryFileInDir(dir_path, &temp_file_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)
  /external/chromium/chrome/browser/extensions/
extension_browsertest.h 44 // Pack the extension in |dir_path| into a crx file and return its path.
46 FilePath PackExtension(const FilePath& dir_path);
extension_browsertest.cc 134 FilePath ExtensionBrowserTest::PackExtension(const FilePath& dir_path) {
147 if (!file_util::PathExists(dir_path)) {
148 ADD_FAILURE() << "Extension dir not found: " << dir_path.value();
153 if (!creator->Run(dir_path,
  /external/chromium/chrome/browser/download/
download_manager.h 98 void GetTemporaryDownloads(const FilePath& dir_path,
103 void GetAllDownloads(const FilePath& dir_path,
108 void GetCurrentDownloads(const FilePath& dir_path,
download_manager.cc 138 const FilePath& dir_path, std::vector<DownloadItem*>* result) {
144 it->second->full_path().DirName() == dir_path)
150 const FilePath& dir_path, std::vector<DownloadItem*>* result) {
156 (dir_path.empty() || it->second->full_path().DirName() == dir_path))
162 const FilePath& dir_path, std::vector<DownloadItem*>* result) {
175 // Skip items that don't match |dir_path|.
176 // If |dir_path| is empty, all remaining items match.
177 if (!dir_path.empty() && (it->second->full_path().DirName() != dir_path))
    [all...]
save_package.h 177 static bool GetSafePureFileName(const FilePath& dir_path,
  /external/chromium_org/net/base/
directory_lister_unittest.cc 124 base::FilePath dir_path = dir_data.first.AppendASCII(dir_name); variable
125 ASSERT_TRUE(base::CreateDirectory(dir_path));
126 directories.push_back(std::make_pair(dir_path, dir_data.second + 1));
  /external/chromium_org/tools/telemetry/telemetry/page/
page_test_runner.py 111 def _AddDir(dir_path):
112 for path in os.listdir(dir_path):
113 path = os.path.join(dir_path, path)
  /external/chromium_org/chrome/browser/extensions/
extension_browsertest.cc 243 const base::FilePath& dir_path) {
252 dir_path.ReplaceExtension(FILE_PATH_LITERAL(".pem"));
264 return PackExtensionWithOptions(dir_path, crx_path, pem_path, pem_path_out);
268 const base::FilePath& dir_path,
272 if (!base::PathExists(dir_path)) {
273 ADD_FAILURE() << "Extension dir not found: " << dir_path.value();
283 if (!creator->Run(dir_path,
extension_browsertest.h 100 // Pack the extension in |dir_path| into a crx file and return its path.
102 base::FilePath PackExtension(const base::FilePath& dir_path);
104 // Pack the extension in |dir_path| into a crx file at |crx_path|, using the
108 base::FilePath PackExtensionWithOptions(const base::FilePath& dir_path,
  /external/linux-tools-perf/util/
parse-events.c 175 char dir_path[MAXPATHLEN]; local
186 snprintf(dir_path, MAXPATHLEN, "%s/%s", debugfs_path,
188 evt_dir = opendir(dir_path);
194 snprintf(evt_path, MAXPATHLEN, "%s/%s/id", dir_path,
914 char dir_path[MAXPATHLEN]; local
928 snprintf(dir_path, MAXPATHLEN, "%s/%s", debugfs_path,
930 evt_dir = opendir(dir_path);
958 char dir_path[MAXPATHLEN]; local
969 snprintf(dir_path, MAXPATHLEN, "%s/%s", debugfs_path,
971 evt_dir = opendir(dir_path);
    [all...]
  /external/chromium_org/third_party/leveldatabase/
env_chromium_unittest.cc 85 base::FilePath dir_path = dir.path(); local
90 FilePathToString(dir_path.Append(FILE_PATH_LITERAL("MANIFEST-001")));
101 FilePathToString(dir_path.Append(FILE_PATH_LITERAL("000003.sst")));
  /external/skia/tools/skpdiff/
skpdiff_server.py 440 def serve_if_in_dir(self, dir_path, file_path):
441 # Determine if the file exists relative to the given dir_path AND exists
442 # under the dir_path. This is to prevent accidentally serving files
444 real_path = os.path.normpath(os.path.join(dir_path, file_path))
445 if os.path.commonprefix([real_path, dir_path]) == dir_path:
  /development/scripts/
divide_and_compress.py 208 def CompressDirectory(self, unused_id, dir_path, dir_contents):
211 This method compresses the directory 'dir_path'. It will add to an existing
219 dir_path: A string, the path to the directory to compress.
228 zip_queue.append(os.path.join(dir_path, filename))
  /external/chromium_org/base/
file_util.cc 148 bool IsDirectoryEmpty(const FilePath& dir_path) {
149 FileEnumerator files(dir_path, false,
  /external/chromium_org/tools/telemetry/telemetry/core/
memory_cache_http_server.py 180 dir_path = os.path.dirname(file_path)
181 self.resource_map[dir_path] = self.resource_map[file_path]
  /hardware/ti/omap4xxx/domx/omx_proxy_component/omx_camera/src/
omx_proxy_camera.c 551 OMX_S32 read_DCCdir(OMX_PTR buffer, OMX_STRING * dir_path, OMX_U16 numofURI)
568 d = opendir(dir_path[i]);
575 strcpy(temp, dir_path[i]);

Completed in 1688 milliseconds

12 3 4