/external/chromium_org/webkit/browser/database/ |
database_util.cc | 59 base::FilePath full_path = db_tracker->GetFullDBFilePath( local 61 if (!full_path.empty() && !sqlite_suffix.empty()) { 62 DCHECK(full_path.Extension().empty()); 63 full_path = full_path.InsertBeforeExtensionASCII( 67 if (full_path.value().find(FILE_PATH_LITERAL("..")) != 70 return full_path;
|
/external/chromium_org/chrome/browser/ |
platform_util_android.cc | 13 void ShowItemInFolder(Profile* profile, const base::FilePath& full_path) { 17 void OpenItem(Profile* profile, const base::FilePath& full_path) {
|
platform_util_chromeos.cc | 23 void ShowItemInFolder(Profile* profile, const base::FilePath& full_path) { 25 file_manager::util::ShowItemInFolder(profile, full_path); 28 void OpenItem(Profile* profile, const base::FilePath& full_path) { 30 file_manager::util::OpenItem(profile, full_path);
|
platform_util_linux.cc | 55 void ShowItemInFolderOnFileThread(const base::FilePath& full_path) { 56 base::FilePath dir = full_path.DirName(); 67 void ShowItemInFolder(Profile* profile, const base::FilePath& full_path) { 70 base::Bind(&ShowItemInFolderOnFileThread, full_path)); 73 void OpenItem(Profile* profile, const base::FilePath& full_path) { 76 base::Bind(&XDGOpen, full_path.value()));
|
/external/chromium_org/remoting/host/ |
ipc_constants.cc | 22 base::FilePath* full_path) { 35 *full_path = path;
|
ipc_constants.h | 21 // Returns the full path to an installed |binary| in |full_path|. 23 base::FilePath* full_path);
|
/external/chromium_org/tools/gyp/test/win/ |
gyptest-link-aslr.py | 23 full_path = test.built_file_path(exe, chdir=CHDIR) 24 output = test.run_dumpbin('/headers', full_path)
|
gyptest-link-pdb.py | 24 full_path = test.built_file_path(pdb, chdir=CHDIR) 25 return os.path.isfile(full_path)
|
/external/chromium/chrome/browser/ |
platform_util_chromeos.cc | 39 void ShowItemInFolder(const FilePath& full_path) { 40 FilePath dir = full_path.DirName(); 53 void OpenItem(const FilePath& full_path) { 54 FileManagerUtil::ViewItem(full_path, false);
|
platform_util_linux.cc | 59 void ShowItemInFolder(const FilePath& full_path) { 60 FilePath dir = full_path.DirName(); 67 void OpenItem(const FilePath& full_path) { 68 XDGOpen(full_path.value());
|
/external/chromium_org/content/browser/download/ |
mock_download_file.h | 31 const base::FilePath& full_path)); 33 void(const base::FilePath& full_path, 36 void(const base::FilePath& full_path,
|
save_file.cc | 46 DownloadInterruptReason SaveFile::Rename(const base::FilePath& full_path) { 47 return file_.Rename(full_path); 69 return file_.full_path();
|
/external/chromium/chrome/common/extensions/ |
extension_resource.cc | 48 FilePath full_path = clean_extension_root.Append(relative_path); 57 if (file_util::AbsolutePath(&full_path) && 58 file_util::PathExists(full_path) && 59 clean_extension_root.IsParent(full_path)) { 60 return full_path;
|
/external/chromium/chrome/browser/download/ |
base_file_unittest.cc | 38 FilePath full_path = base_file_->full_path(); local 43 EXPECT_TRUE(file_util::ReadFileToString(full_path, &disk_data)); 51 EXPECT_EQ(expect_file_survives_, file_util::PathExists(full_path)); 87 EXPECT_EQ(FilePath().value(), base_file_->full_path().value()); 93 EXPECT_TRUE(file_util::PathExists(base_file_->full_path())); 95 EXPECT_FALSE(file_util::PathExists(base_file_->full_path())); 96 EXPECT_NE(FilePath().value(), base_file_->full_path().value()); 128 FilePath initial_path(base_file_->full_path()); 195 FilePath initial_path(base_file_->full_path()); [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/ui/base/win/ |
shell.cc | 27 bool OpenItemWithExternalApp(const string16& full_path) { 32 sei.lpFile = full_path.c_str(); 36 bool OpenAnyViaShell(const 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(), string16(), string16() [all...] |
shell.h | 21 // default application registered for the file specified by 'full_path', 24 UI_EXPORT bool OpenItemViaShell(const base::FilePath& full_path); 29 UI_EXPORT bool OpenItemViaShellNoZoneCheck(const base::FilePath& full_path); 35 UI_EXPORT bool OpenAnyViaShell(const string16& full_path, 41 // to open the file specified by 'full_path'. 43 bool OpenItemWithExternalApp(const string16& full_path);
|
/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/chrome/common/ |
win_safe_util.cc | 25 const FilePath& full_path, 36 return app::win::OpenItemViaShell(full_path); 54 hr = attachment_services->SetLocalPath(full_path.value().c_str()); 84 return app::win::OpenItemViaShellNoZoneCheck(full_path); 87 bool SetInternetZoneIdentifier(const FilePath& full_path) { 89 std::wstring path = full_path.value() + L":Zone.Identifier";
|
win_safe_util.h | 31 // You must provide a valid 'full_path' to the file to be opened and a well 37 // specified by 'full_path' it ask the user, via the Windows "Open With" 41 const FilePath& full_path, 48 bool SetInternetZoneIdentifier(const FilePath& full_path);
|
/external/chromium_org/content/browser/ |
safe_util_win.cc | 27 // |full_path| is the path to the downloaded file. 28 bool SetInternetZoneIdentifierDirectly(const base::FilePath& full_path) { 30 std::wstring path = full_path.value() + L":Zone.Identifier"; 54 HRESULT AVScanFile(const base::FilePath& full_path, 67 SetInternetZoneIdentifierDirectly(full_path); 77 hr = attachment_services->SetLocalPath(full_path.value().c_str());
|
/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/browser/ui/cocoa/ |
drag_util.mm | 26 base::FilePath full_path; 27 net::FileURLToFilePath(url, &full_path); 30 net::GetMimeTypeFromFile(full_path, &mime_type);
|