HomeSort by relevance Sort by last modified time
    Searched refs:FilePath (Results 151 - 175 of 3914) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/chrome/browser/extensions/
convert_user_script.h 16 class FilePath;
30 const base::FilePath& user_script, const GURL& original_url,
31 const base::FilePath& extensions_dir, base::string16* error);
test_extension_dir.h 28 void WriteFile(const base::FilePath::StringType& filename,
33 base::FilePath Pack();
36 base::FilePath unpacked_path() {
  /external/chromium_org/chrome/browser/local_discovery/storage/
path_util.h 12 base::FilePath NormalizeFilePath(const base::FilePath& path);
15 explicit ParsedPrivetPath(const base::FilePath& path);
  /external/chromium_org/chrome/browser/media_galleries/
media_file_system_context.h 13 class FilePath;
25 const base::FilePath& path) = 0;
32 virtual base::FilePath GetRegisteredPath(
  /external/chromium_org/chrome/browser/parsers/
metadata_parser_jpeg_factory.h 13 class FilePath;
21 virtual bool CanParse(const base::FilePath& path,
24 virtual MetadataParser* CreateParser(const base::FilePath& path) OVERRIDE;
  /external/chromium_org/chrome/browser/safe_browsing/
binary_feature_extractor.h 15 class FilePath;
30 const base::FilePath& file_path,
35 const base::FilePath& file_path,
local_safebrowsing_test_server.h 18 explicit LocalSafeBrowsingTestServer(const base::FilePath& data_file);
26 base::FilePath* testserver_path) const OVERRIDE;
34 base::FilePath data_file_;
path_sanitizer.cc 18 const base::FilePath& PathSanitizer::GetHomeDirectory() const {
22 void PathSanitizer::StripHomeDirectory(base::FilePath* file_path) const {
23 base::FilePath sanitized_path(FILE_PATH_LITERAL("~"));
  /external/chromium_org/chrome/installer/setup/
setup_main.h 15 class FilePath;
29 const base::FilePath& setup_exe,
33 base::FilePath* installer_directory,
  /external/chromium_org/chrome/installer/util/
auto_launch_util.h 11 class FilePath;
37 const base::FilePath& application_path);
52 const base::FilePath& application_path);
create_dir_work_item.h 30 explicit CreateDirWorkItem(const base::FilePath& path);
38 base::FilePath path_;
41 base::FilePath top_path_;
  /external/chromium_org/chrome/utility/importer/
firefox_importer_unittest_messages_internal.h 15 base::FilePath /* dll_path */,
16 base::FilePath /* db_path */)
29 base::FilePath /* path to firefox signons db */)
  /external/chromium_org/content/browser/download/
file_metadata_mac.h 11 class FilePath;
19 void AddOriginMetadataToFile(const base::FilePath& file, const GURL& source,
26 void AddQuarantineMetadataToFile(const base::FilePath& file, const GURL& source,
  /external/chromium_org/content/browser/fileapi/
sandbox_database_test_helper.h 13 class FilePath;
18 void CorruptDatabase(const base::FilePath& db_path,
23 void DeleteDatabaseFile(const base::FilePath& db_path,
  /external/chromium_org/content/browser/indexed_db/
indexed_db_internals_ui.h 35 const base::FilePath& context_path);
37 const base::FilePath& path);
43 const base::FilePath& partition_path,
46 void OnDownloadDataReady(const base::FilePath& partition_path,
48 const base::FilePath temp_path,
49 const base::FilePath zip_path,
51 void OnDownloadStarted(const base::FilePath& partition_path,
53 const base::FilePath& temp_path,
60 const base::FilePath& partition_path,
63 void OnForcedClose(const base::FilePath& partition_path
    [all...]
  /external/chromium_org/content/test/
fileapi_test_file_set.h 22 const base::FilePath::CharType path[64];
32 void SetUpOneFileSystemTestCase(const base::FilePath& root_path,
36 void SetUpRegularFileSystemTestCases(const base::FilePath& root_path);
  /external/chromium_org/net/base/
platform_mime_util.h 21 base::FilePath::StringType* extension) const;
28 base::hash_set<base::FilePath::StringType>* extensions) const;
33 bool GetPlatformMimeTypeFromExtension(const base::FilePath::StringType& ext,
  /external/chromium_org/net/disk_cache/simple/
simple_version_upgrade.h 16 class FilePath;
27 NET_EXPORT_PRIVATE bool UpgradeSimpleCacheOnDisk(const base::FilePath& path);
46 NET_EXPORT_PRIVATE bool UpgradeIndexV5V6(const base::FilePath& cache_directory);
  /external/chromium_org/ppapi/shared_impl/
file_path.h 13 // TODO(vtl): Once we put |::FilePath| into the |base| namespace, get rid of the
29 PepperFilePath(Domain d, const base::FilePath& p);
32 const base::FilePath& path() const { return path_; }
36 base::FilePath path_;
  /external/chromium_org/chrome/browser/policy/
policy_path_parser_unittest.cc 14 void CheckForSubstitution(base::FilePath::StringType test_string,
15 base::FilePath::StringType var_name) {
16 base::FilePath::StringType var(test_string);
17 base::FilePath::StringType var_result =
19 ASSERT_EQ(var_result.find(var_name), base::FilePath::StringType::npos);
31 base::FilePath::StringType no_vars(FILE_PATH_LITERAL("//$C/shares"));
32 base::FilePath::StringType no_vars_result =
37 base::FilePath::StringType unknown_vars(FILE_PATH_LITERAL("//$C/${buggy}"));
38 base::FilePath::StringType unknown_vars_result =
43 base::FilePath::StringType no_quotes(FILE_PATH_LITERAL("//$C/\"a\"/$path"))
    [all...]
  /external/chromium_org/extensions/common/
extension_resource.cc 17 const base::FilePath& extension_root,
18 const base::FilePath& relative_path)
31 const base::FilePath& ExtensionResource::GetFilePath() const {
49 base::FilePath ExtensionResource::GetFilePath(
50 const base::FilePath& extension_root,
51 const base::FilePath& relative_path,
55 base::FilePath clean_extension_root(
58 return base::FilePath();
60 base::FilePath full_path = clean_extension_root.Append(relative_path);
65 std::vector<base::FilePath::StringType> components
    [all...]
  /external/chromium_org/testing/gtest/src/
gtest-filepath.cc 33 #include "gtest/internal/gtest-filepath.h"
99 FilePath FilePath::GetCurrentDir() {
103 return FilePath(kCurrentDirectoryString);
106 return FilePath(_getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd);
109 return FilePath(getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd);
113 // Returns a copy of the FilePath with the case-insensitive extension removed.
114 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
115 // FilePath("dir/file"). If a case-insensitive extension is not
116 // found, returns a copy of the original FilePath
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/src/
gtest-filepath.cc 32 #include "gtest/internal/gtest-filepath.h"
100 FilePath FilePath::GetCurrentDir() {
104 return FilePath(kCurrentDirectoryString);
107 return FilePath(_getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd);
110 return FilePath(getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd);
114 // Returns a copy of the FilePath with the case-insensitive extension removed.
115 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
116 // FilePath("dir/file"). If a case-insensitive extension is not
117 // found, returns a copy of the original FilePath
    [all...]
  /external/gtest/src/
gtest-filepath.cc 33 #include "gtest/internal/gtest-filepath.h"
101 FilePath FilePath::GetCurrentDir() {
105 return FilePath(kCurrentDirectoryString);
108 return FilePath(_getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd);
111 return FilePath(getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd);
115 // Returns a copy of the FilePath with the case-insensitive extension removed.
116 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
117 // FilePath("dir/file"). If a case-insensitive extension is not
118 // found, returns a copy of the original FilePath
    [all...]
  /external/llvm/utils/unittest/googletest/src/
gtest-filepath.cc 32 #include "gtest/internal/gtest-filepath.h"
98 FilePath FilePath::GetCurrentDir() {
102 return FilePath(kCurrentDirectoryString);
105 return FilePath(_getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd);
108 return FilePath(getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd);
112 // Returns a copy of the FilePath with the case-insensitive extension removed.
113 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
114 // FilePath("dir/file"). If a case-insensitive extension is not
115 // found, returns a copy of the original FilePath
    [all...]

Completed in 1191 milliseconds

1 2 3 4 5 67 8 91011>>