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

12 3 4 5 6 7 8

  /external/chromium_org/ui/base/win/
shell.cc 27 bool OpenItemWithExternalApp(const base::string16& full_path) {
32 sei.lpFile = full_path.c_str();
36 bool OpenAnyViaShell(const base::string16& full_path,
43 sei.lpFile = full_path.c_str();
51 return OpenItemWithExternalApp(full_path);
55 bool OpenItemViaShell(const base::FilePath& full_path) {
56 return OpenAnyViaShell(full_path.value(), full_path.DirName().value(),
60 bool OpenItemViaShellNoZoneCheck(const base::FilePath& full_path) {
61 return OpenAnyViaShell(full_path.value(), base::string16(), base::string16()
    [all...]
  /external/chromium_org/sandbox/win/tests/common/
controller.cc 24 base::string16 full_path(windows_path);
25 if (full_path.empty())
26 return full_path;
29 full_path.insert(0, L"\\??\\");
31 full_path += L"\\system32\\";
32 full_path += name;
33 return full_path;
42 base::string16 full_path(windows_path);
43 if (full_path.empty())
44 return full_path;
    [all...]
  /external/chromium_org/extensions/common/
extension_resource.cc 60 base::FilePath full_path = clean_extension_root.Append(relative_path);
90 full_path = base::MakeAbsoluteFilePath(full_path);
91 if (base::PathExists(full_path) &&
93 clean_extension_root.IsParent(full_path))) {
94 return full_path;
  /external/chromium_org/gpu/gles2_conform_support/
generate_gles2_embedded_data.py 65 full_path = os.path.join(scan_dir, file)
67 base_path = full_path[len(self.scan_dir) + 1:]
68 if os.path.isdir(full_path):
70 sub_dirs.append(full_path)
73 print full_path.replace("\\", "/")
82 data = open(full_path, "r")
  /external/chromium_org/chrome/installer/mini_installer/
pe_resource.cc 24 bool PEResource::WriteToDisk(const wchar_t* full_path) {
36 HANDLE out_file = ::CreateFile(full_path, GENERIC_WRITE, 0, NULL,
  /external/chromium_org/content/browser/download/
download_file.h 47 // Rename the download file to |full_path|. If that file exists
48 // |full_path| will be uniquified by suffixing " (<number>)" to the
50 virtual void RenameAndUniquify(const base::FilePath& full_path,
53 // Rename the download file to |full_path| and annotate it with
56 virtual void RenameAndAnnotate(const base::FilePath& full_path,
save_file.cc 45 DownloadInterruptReason SaveFile::Rename(const base::FilePath& full_path) {
46 return file_.Rename(full_path);
68 return file_.full_path();
base_file_unittest.cc 68 base::FilePath full_path = base_file_->full_path(); local
73 EXPECT_TRUE(base::ReadFileToString(full_path, &disk_data));
81 EXPECT_EQ(expect_file_survives_, base::PathExists(full_path));
153 file_name = file.full_path();
233 EXPECT_EQ(base::FilePath().value(), base_file_->full_path().value());
239 EXPECT_TRUE(base::PathExists(base_file_->full_path()));
241 EXPECT_FALSE(base::PathExists(base_file_->full_path()));
242 EXPECT_NE(base::FilePath().value(), base_file_->full_path().value());
283 base::FilePath initial_path(base_file_->full_path());
624 base::FilePath full_path = base_file_->full_path(); local
    [all...]
base_file.h 36 BaseFile(const base::FilePath& full_path,
48 // directory to create the temporary file in if |full_path()| is empty. If
49 // |default_directory| and |full_path()| are empty, then a temporary file will
60 virtual DownloadInterruptReason Rename(const base::FilePath& full_path);
82 base::FilePath full_path() const { return full_path_; } function in class:content::BaseFile
save_item.cc 116 void SaveItem::Rename(const base::FilePath& full_path) {
117 DCHECK(!full_path.empty() && !has_final_name());
118 full_path_ = full_path;
  /external/chromium_org/net/disk_cache/
cache_util.h 37 bool DelayedCacheCleanup(const base::FilePath& full_path);
  /external/chromium_org/build/
tree_truth.sh 81 local full_path=$CHROME_SRC/../$project
82 tt_list_commits $full_path tree_truth $project
83 tt_tag_head $full_path tree_truth
  /external/chromium_org/chrome/browser/download/
drag_download_item_views.cc 45 base::FilePath full_path = download->GetTargetFilePath(); local
47 // Overwrite |full_path| with drive cache file path when appropriate.
53 full_path = drive_download_handler->GetCacheFilePath(download);
57 ui::FileInfo(full_path, download->GetFileNameToReportUser()));
  /external/chromium_org/chrome/common/extensions/docs/server2/
update_server.py 25 full_path = os.path.join(path, 'appcfg.py') variable
26 if os.path.exists(full_path):
27 appcfg_path = full_path
gcs_file_system.py 53 full_path = Join(bucket, path)
57 if IsDirectory(full_path):
59 for filename in _ListDir(full_path))
87 full_path = Join(self._bucket, path)
89 (path, full_path))
91 result[path] = _ListDir(full_path)
93 result[path] = _ReadFile(full_path)
  /external/chromium_org/content/browser/renderer_host/pepper/
pepper_flash_file_message_filter.cc 111 base::FilePath full_path = ValidateAndConvertPepperFilePath( local
113 if (full_path.empty()) {
123 base::File file(full_path, platform_file_flags);
167 base::FilePath full_path = local
169 if (full_path.empty()) {
173 bool result = base::DeleteFile(full_path, recursive);
180 base::FilePath full_path = local
182 if (full_path.empty()) {
186 bool result = base::CreateDirectory(full_path);
194 base::FilePath full_path local
210 base::FilePath full_path = local
    [all...]
  /external/chromium_org/components/url_fixer/
url_fixer_unittest.cc 219 // full_path = "c:\foo\bar.txt"
224 base::FilePath* full_path) {
225 *full_path = dir.Append(file_name);
226 return base::WriteFile(*full_path, "", 0) == 0;
455 base::FilePath full_path, dir; local
459 ASSERT_TRUE(MakeTempFile(dir, file_part, &full_path));
460 full_path = base::MakeAbsoluteFilePath(full_path);
461 ASSERT_FALSE(full_path.empty());
475 full_path));
    [all...]
  /external/chromium_org/third_party/android_crazy_linker/src/src/
crazy_linker_library_list.cpp 281 String full_path; local
290 full_path = path;
294 full_path = GetCurrentDirectory();
295 if (full_path.size() && full_path[full_path.size() - 1] != '/')
296 full_path += '/';
297 full_path += lib_name;
300 full_path = lib_name;
302 LOG("%s: Full library path: %s\n", __FUNCTION__, full_path.c_str())
    [all...]
  /ndk/sources/android/crazy_linker/src/
crazy_linker_library_list.cpp 281 String full_path; local
290 full_path = path;
294 full_path = GetCurrentDirectory();
295 if (full_path.size() && full_path[full_path.size() - 1] != '/')
296 full_path += '/';
297 full_path += lib_name;
300 full_path = lib_name;
302 LOG("%s: Full library path: %s\n", __FUNCTION__, full_path.c_str())
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/
loader.py 209 full_path = os.path.abspath(module.__file__)
211 if os.path.basename(full_path).lower().startswith('__init__.py'):
212 return os.path.dirname(os.path.dirname(full_path))
217 return os.path.dirname(full_path)
233 def _match_path(self, path, full_path, pattern):
242 full_path = os.path.join(start_dir, path)
243 if os.path.isfile(full_path):
247 if not self._match_path(path, full_path, pattern):
250 name = self._get_name_from_path(full_path)
256 mod_file = os.path.abspath(getattr(module, '__file__', full_path))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/
loader.py 209 full_path = os.path.abspath(module.__file__)
211 if os.path.basename(full_path).lower().startswith('__init__.py'):
212 return os.path.dirname(os.path.dirname(full_path))
217 return os.path.dirname(full_path)
233 def _match_path(self, path, full_path, pattern):
242 full_path = os.path.join(start_dir, path)
243 if os.path.isfile(full_path):
247 if not self._match_path(path, full_path, pattern):
250 name = self._get_name_from_path(full_path)
256 mod_file = os.path.abspath(getattr(module, '__file__', full_path))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
compute_interfaces_info_individual.py 105 def add_paths_to_partials_dict(partial_interface_name, full_path, this_include_path=None):
107 paths_dict['full_paths'].append(full_path)
113 full_path = os.path.realpath(idl_filename)
114 idl_file_contents = get_file_contents(full_path)
123 add_paths_to_partials_dict(partial_interface_name, full_path, this_include_path)
138 'full_path': full_path,
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/
inline_js_imports.py 65 full_path = os.path.join(imports_dir, import_file_name)
66 if not os.access(full_path, os.F_OK):
70 import_file = open(full_path, 'r')
  /external/chromium_org/third_party/skia/platform_tools/android/gyp_gen/
android_framework_gyp.py 70 full_path = os.path.join(target_dir, target_file)
71 args.extend([full_path])
84 # full_path but with a 'd' on the end.
85 gypd_file = full_path + 'd'
  /external/skia/platform_tools/android/gyp_gen/
android_framework_gyp.py 70 full_path = os.path.join(target_dir, target_file)
71 args.extend([full_path])
84 # full_path but with a 'd' on the end.
85 gypd_file = full_path + 'd'

Completed in 1503 milliseconds

12 3 4 5 6 7 8