HomeSort by relevance Sort by last modified time
    Searched full:full_path (Results 1 - 25 of 75) sorted by null

1 2 3

  /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());
platform_util_win.cc 32 void ShowItemInFolder(const FilePath& full_path) {
33 FilePath dir = full_path.DirName();
82 const_cast<wchar_t *>(full_path.value().c_str()),
106 << "(): Can't open full_path = \""
107 << full_path.value() << "\""
116 void OpenItem(const FilePath& full_path) {
117 app::win::OpenItemViaShell(full_path);
platform_util_mac.mm 22 void ShowItemInFolder(const FilePath& full_path) {
24 NSString* path_string = base::SysUTF8ToNSString(full_path.value());
27 LOG(WARNING) << "NSWorkspace failed to select file " << full_path.value();
37 void OpenItem(const FilePath& full_path) {
39 NSString* path_string = base::SysUTF8ToNSString(full_path.value());
  /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...]
base_file.h 28 BaseFile(const FilePath& full_path,
43 virtual bool Rename(const FilePath& full_path);
57 FilePath full_path() const { return full_path_; } function in class:BaseFile
download_item.cc 278 platform_util::OpenItem(full_path());
282 NewRunnableFunction(&platform_util::OpenItem, full_path()));
290 platform_util::ShowItemInFolder(full_path());
295 full_path()));
465 void DownloadItem::Rename(const FilePath& full_path) {
467 << " full_path = \"" << full_path.value() << "\""
469 DCHECK(!full_path.empty());
470 full_path_ = full_path;
519 void DownloadItem::OnDownloadRenamedToFinalName(const FilePath& full_path) {
    [all...]
download_file_unittest.cc 75 EXPECT_TRUE(file_util::ReadFileToString((*file)->full_path(),
132 FilePath initial_path(download_file_->full_path());
141 FilePath renamed_path = download_file_->full_path();
154 renamed_path = download_file_->full_path();
165 renamed_path = download_file_->full_path();
180 renamed_path = download_file_->full_path();
save_item.cc 115 void SaveItem::Rename(const FilePath& full_path) {
116 DCHECK(!full_path.empty() && !has_final_name());
117 full_path_ = full_path;
  /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/v8/test/es5conform/
testcfg.py 91 full_path = root_path + [file[:-3]]
92 full_path = [x for x in full_path if not (x in ['data', 'TestCases'])]
93 if self.Contains(path, full_path):
94 test = ES5ConformTestCase(join(root, file), full_path, self.context,
  /external/chromium/net/tools/crash_cache/
crash_cache.cc 84 // Creates the destinaton folder for this run, and returns it on full_path.
86 FilePath* full_path) {
115 *full_path = path.AppendASCII(folders[action]);
117 if (file_util::PathExists(*full_path))
120 return file_util::CreateDirectory(*full_path);
313 FilePath full_path; local
314 if (!CreateTargetFolder(path, action, &full_path)) {
325 return SimpleInsert(full_path, action, &cache_thread);
328 return LoadOperations(full_path, action, &cache_thread);
331 return SimpleRemove(full_path, action, &cache_thread)
    [all...]
  /development/testrunner/test_defs/
native_test.py 85 full_path = os.path.join(os.sep, "system", "bin", f)
89 "(cd /sdcard;%s)" % full_path,
100 adb.SendShellCommand("rm %s" % full_path)
141 full_path = os.path.join(path, binary)
142 if os.path.exists(full_path):
163 full_path = os.path.join(android_build.GetHostBin(), binary)
164 return run_command.RunHostCommand(full_path, valgrind=valgrind)
  /external/chromium/chrome/browser/search_engines/
template_url_parser_unittest.cc 39 FilePath full_path; local
41 ASSERT_TRUE(PathService::Get(chrome::DIR_TEST_DATA, &full_path));
42 full_path = full_path.AppendASCII("osdd");
43 full_path = full_path.AppendASCII(file_name);
44 ASSERT_TRUE(file_util::PathExists(full_path));
47 ASSERT_TRUE(file_util::ReadFileToString(full_path, &contents));
  /external/chromium/chrome/browser/extensions/
file_manager_util.cc 134 void FileManagerUtil::ViewItem(const FilePath& full_path, bool enqueue) {
135 std::string ext = full_path.Extension();
141 path.append(full_path.value());
145 NewRunnableFunction(&ViewItem, full_path, enqueue));
160 mediaplayer->EnqueueMediaFile(browser->profile(), full_path, NULL);
162 mediaplayer->ForcePlayMediaFile(browser->profile(), full_path, NULL);
174 UTF8ToUTF16(full_path.BaseName().value()))
  /system/extras/ext4_utils/
make_ext4fs.c 105 full_path is an absolute or relative path, with a trailing slash, to the
110 static u32 build_directory_structure(const char *full_path, const char *dir_path,
125 if (full_path) {
126 entries = scandir(full_path, &namelist, filter_dot, (void*)alphasort);
152 asprintf(&dentries[i].full_path, "%s%s", full_path, namelist[i]->d_name);
156 ret = lstat(dentries[i].full_path, &stat);
210 readlink(dentries[i].full_path, dentries[i].link, info.block_size - 1);
228 dentries[0].full_path = NULL;
246 entry_inode = make_file(dentries[i].full_path, dentries[i].size)
    [all...]
  /external/chromium/chrome/browser/history/
download_database.cc 20 // full_path Location of the download on disk.
68 "full_path LONGVARCHAR NOT NULL,"
88 "SELECT id, full_path, url, start_time, received_bytes, "
129 "UPDATE downloads SET full_path=? WHERE id=?"));
151 "(full_path, url, start_time, received_bytes, total_bytes, state) "
  /external/v8/test/mozilla/
testcfg.py 119 full_path = root_path + [file[:-3]]
120 full_path = [x for x in full_path if x != 'data']
121 if self.Contains(path, full_path):
122 test = MozillaTestCase(join(root, file), full_path, self.context,
  /external/chromium/chrome/browser/ui/webui/
screenshot_source.cc 73 const std::string& full_path) {
76 std::string path = full_path.substr(0, full_path.find_first_of("?"));
  /external/v8/test/sputnik/
testcfg.py 97 full_path = current_path + [test.GetPath()[-1]]
98 if self.Contains(path, full_path):
99 case = SputnikTestCase(test, full_path, self.context, mode)
  /external/webkit/Source/WebKit/chromium/scripts/
concatenate_css_files.py 93 full_path = expander.expand(input_file_name)
94 if (full_path is None):
99 input_file = open(full_path, 'r')
concatenate_js_files.py 94 full_path = expander.expand(input_file_name)
95 if (full_path is None):
100 input_file = open(full_path, 'r')
inline_js_imports.py 59 full_path = os.path.join(imports_dir, import_file_name)
60 if not os.access(full_path, os.F_OK):
64 import_file = open(full_path, 'r')

Completed in 396 milliseconds

1 2 3