HomeSort by relevance Sort by last modified time
    Searched refs:file_path (Results 1 - 25 of 684) 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/browser/value_store/
leveldb_value_store_unittest.cc 12 ValueStore* Param(const base::FilePath& file_path) {
13 return new LeveldbValueStore(file_path);
testing_value_store_unittest.cc 13 ValueStore* Param(const base::FilePath& file_path) {
  /external/chromium_org/media/base/
test_data_util.cc 15 base::FilePath file_path; local
16 CHECK(PathService::Get(base::DIR_SOURCE_ROOT, &file_path));
18 file_path = file_path.Append(FILE_PATH_LITERAL("media"))
21 return file_path;
25 base::FilePath file_path; local
26 CHECK(PathService::Get(base::DIR_SOURCE_ROOT, &file_path));
28 file_path = file_path.Append(FILE_PATH_LITERAL("media"))
33 CHECK(base::GetFileSize(file_path, &tmp)
    [all...]
  /external/chromium/chrome/browser/download/
download_types.cc 17 : file_path(info.file_path),
25 file_path = info.file_path;
  /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/base/
value_conversions.cc 7 #include "base/file_path.h"
19 std::string FilePathToUTF8(const FilePath& file_path) {
21 return WideToUTF8(SysNativeMBToWide(file_path.value()));
23 return UTF16ToUTF8(file_path.value());
43 bool GetValueAsFilePath(const Value& value, FilePath* file_path) {
47 if (file_path)
48 *file_path = UTF8ToFilePath(str);
  /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/bookmarks/
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/chrome/browser/chromeos/file_manager/
open_util.h 21 // by |file_path|.
26 // |file_path|. In this case the tab will automatically close on |file_path|
28 void OpenRemovableDrive(Profile* profile, const base::FilePath& file_path);
35 void OpenItem(Profile* profile, const base::FilePath& file_path);
38 // |file_path|, with the item selected.
39 void ShowItemInFolder(Profile* profile, const base::FilePath& file_path);
mime_util.h 22 // Returns the MIME type of |file_path|. Returns "" if the MIME type is
24 std::string GetMimeTypeForPath(const base::FilePath& file_path);
mime_util.cc 8 #include "base/files/file_path.h"
15 std::string GetMimeTypeForPath(const base::FilePath& file_path) {
17 StringToLowerASCII(file_path.Extension());
  /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...]
filereader_unittest.py 46 def should_process(self, file_path):
47 return not file_path.endswith('should_not_process.txt')
49 def process(self, lines, file_path, test_kwarg=None):
50 self.processed.append((lines, file_path, test_kwarg))
67 file_path = self.filesystem.join(self._temp_dir, rel_path)
68 self.filesystem.write_text_file(file_path, text)
69 return file_path
111 file_path = self._create_file('should_not_process.txt', 'contents')
113 self._file_reader.process_file(file_path)
117 file_path = self._create_file('foo.txt', 'line one\r\nline two\n'
    [all...]
  /external/chromium_org/chrome/browser/safe_browsing/
signature_util_posix.cc 17 const base::FilePath& 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/chromium_org/webkit/browser/database/
vfs_backend.h 21 static void OpenFile(const base::FilePath& file_path,
29 static int DeleteFile(const base::FilePath& file_path, bool sync_dir);
31 static uint32 GetFileAttributes(const base::FilePath& file_path);
33 static int64 GetFileSize(const base::FilePath& 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...]
  /external/chromium_org/ui/shell_dialogs/
selected_file_info.cc 13 : file_path(in_file_path),
16 local_path = file_path;

Completed in 299 milliseconds

1 2 3 4 5 6 7 8 91011>>