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

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/Launcher3/
update_gallery_files.py 48 for file_path in files.split():
49 dir = os.path.dirname(file_path)
50 if file_path.find('exif') != -1 or file_path.find('common') != -1:
51 file_path = 'gallerycommon/' + file_path variable
52 cmd = 'cp %s/%s WallpaperPicker/%s/' % (gallery_dir, file_path, dir)
update_system_wallpaper_cropper.py 51 for file_path in files.split():
52 file_path = src_dir + file_path variable
53 dir = os.path.dirname(file_path)
56 cmd = 'cp %s %s/%s' % (file_path, framework_dir, dir)
  /external/chromium_org/chrome/app/
image_pre_reader_win.h 27 static bool PreReadImage(const wchar_t* file_path,
55 static bool PartialPreReadImage(const wchar_t* file_path,
62 static bool PartialPreReadImageOnDisk(const wchar_t* file_path,
69 static bool PartialPreReadImageInMemory(const wchar_t* file_path,
  /external/chromium_org/chrome/test/mini_installer/
file_verifier.py 27 file_path = variable_expander.Expand(expectation_name)
28 file_exists = os.path.exists(file_path)
30 ('File %s exists' % file_path) if file_exists else \
31 ('File %s is missing' % file_path)
  /external/chromium_org/net/url_request/
file_protocol_handler.cc 26 base::FilePath file_path; local
27 const bool is_file = FileURLToFilePath(request->url(), &file_path);
31 !network_delegate->CanAccessFile(*request, file_path)) {
42 file_path.EndsWithSeparator() &&
43 file_path.IsAbsolute()) {
44 return new URLRequestFileDirJob(request, network_delegate, file_path);
49 return new URLRequestFileJob(request, network_delegate, file_path,
  /external/chromium_org/net/disk_cache/simple/
simple_index_file_win.cc 10 #include "base/files/file_path.h"
24 for (base::FilePath file_path = enumerator.Next(); !file_path.empty();
25 file_path = enumerator.Next()) {
26 if (file_path == current_directory || file_path == parent_directory)
28 entry_file_callback.Run(file_path);
  /external/chromium_org/chrome/browser/safe_browsing/
binary_feature_extractor_posix.cc 17 const base::FilePath& file_path,
21 const base::FilePath& file_path,
path_sanitizer.cc 22 void PathSanitizer::StripHomeDirectory(base::FilePath* file_path) const {
25 // The |file_path| is overwritten only if a relative path is found.
26 if (home_path_.AppendRelativePath(*file_path, &sanitized_path))
27 *file_path = sanitized_path;
binary_feature_extractor.h 30 const base::FilePath& file_path,
33 // Populates |image_headers| with the PE image headers of |file_path|.
35 const base::FilePath& file_path,
  /external/chromium_org/webkit/browser/database/
vfs_backend.h 21 static base::File OpenFile(const base::FilePath& file_path,
27 static int DeleteFile(const base::FilePath& file_path, bool sync_dir);
29 static uint32 GetFileAttributes(const base::FilePath& file_path);
31 static int64 GetFileSize(const base::FilePath& file_path);
  /external/chromium_org/chrome/browser/chromeos/file_manager/
open_util.h 21 // by |file_path|.
23 void OpenRemovableDrive(Profile* profile, const base::FilePath& file_path);
30 void OpenItem(Profile* profile, const base::FilePath& file_path);
33 // |file_path|, with the item selected.
34 void ShowItemInFolder(Profile* profile, const base::FilePath& file_path);
mime_util.h 19 // Returns the MIME type of |file_path|. Returns "" if the MIME type is
21 std::string GetMimeTypeForPath(const base::FilePath& file_path);
mime_util.cc 7 #include "base/files/file_path.h"
13 std::string GetMimeTypeForPath(const base::FilePath& file_path) {
14 const base::FilePath::StringType file_extension = file_path.Extension();
  /external/chromium_org/components/bookmarks/browser/
bookmark_node_data_mac.cc 19 base::FilePath file_path; local
20 if (ReadBookmarksFromPasteboard(type, elements, &file_path)) {
21 profile_path_ = file_path;
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/
filereader.py 70 def _read_lines(self, file_path):
78 if file_path == '-':
89 file = codecs.open(file_path, 'r', 'utf8', 'replace')
99 def process_file(self, file_path, **kwargs):
103 file_path: The path of the file to process.
109 SystemExit: If no file at file_path exists.
114 if not self.filesystem.exists(file_path) and file_path != "-":
115 _log.error("File does not exist: '%s'" % file_path)
118 if not self._processor.should_process(file_path)
    [all...]
  /external/chromium_org/base/files/
file_util_proxy.cc 29 void RunWorkForFilePath(const FilePath& file_path) {
30 if (!PathExists(file_path)) {
34 if (!GetFileInfo(file_path, &file_info_))
50 File::Error DeleteAdapter(const FilePath& file_path, bool recursive) {
51 if (!PathExists(file_path)) {
54 if (!base::DeleteFile(file_path, recursive)) {
55 if (!recursive && !base::IsDirectoryEmpty(file_path)) {
69 const FilePath& file_path,
75 Unretained(helper), file_path),
81 const FilePath& file_path,
    [all...]
  /external/chromium_org/media/base/
test_data_util.cc 16 base::FilePath file_path; local
17 CHECK(PathService::Get(base::DIR_SOURCE_ROOT, &file_path));
19 return file_path.AppendASCII("media")
26 base::FilePath file_path = GetTestDataFilePath(name); local
29 CHECK(base::GetFileSize(file_path, &tmp))
37 file_path, reinterpret_cast<char*>(buffer->writable_data()),
  /external/chromium_org/extensions/browser/value_store/
testing_value_store_unittest.cc 13 ValueStore* Param(const base::FilePath& file_path) {
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/
devtools_file_hashes.py 57 def calculate_file_hash(file_path):
58 with open(file_path) as file:
67 for file_path in file_paths:
68 file_name = re.sub(".*/", "", file_path)
69 if calculate_file_hash(file_path) != hashes.get(file_name, ""):
70 result.append(file_path)
76 for file_path in file_paths:
77 file_name = re.sub(".*/", "", file_path)
78 hashes[file_name] = calculate_file_hash(file_path)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
text.py 38 def __init__(self, file_path, handle_style_error):
39 self.file_path = file_path
41 self._tab_checker = TabChecker(file_path, handle_style_error)
  /external/qemu/android/filesystems/
ramdisk_extractor.h 24 // |file_path| is the path of the file within the ramdisk.
29 const char* file_path,
  /external/chromium_org/base/android/
path_service_android.cc 9 #include "base/files/file_path.h"
17 FilePath file_path(ConvertJavaStringToUTF8(env, path));
18 PathService::Override(what, file_path);
  /external/chromium_org/base/mac/
mac_logging.cc 15 OSStatusLogMessage::OSStatusLogMessage(const char* file_path,
19 : LogMessage(file_path, line, severity),
  /external/chromium_org/cc/test/
pixel_test_utils.h 8 #include "base/files/file_path.h"
17 bool WritePNGFile(const SkBitmap& bitmap, const base::FilePath& file_path,
22 bool ReadPNGFile(const base::FilePath& file_path, SkBitmap* bitmap);
  /external/chromium_org/media/tools/layout_tests/
layouttest_analyzer_helpers_unittest.py 37 file_path = os.path.join('test_data', 'base')
39 layouttest_analyzer_helpers.AnalyzerResultMap.Load(file_path))
46 file_path = os.path.join('test_data', 'less')
47 analyzerResultMapBase.Save(file_path)
49 file_path = os.path.join('test_data', 'base')
50 analyzerResultMapBase = AnalyzerResultMap.Load(file_path)
55 file_path = os.path.join('test_data', 'more')
56 analyzerResultMapBase.Save(file_path)
60 file_path = os.path.join('test_data', 'base')
61 analyzerResultMapBase = AnalyzerResultMap.Load(file_path)
    [all...]

Completed in 916 milliseconds

1 2 3 4 5 6 7 8 91011>>