Searched refs:FilePath (Results 1 - 25 of 4037) sorted by relevance

1234567891011>>

/external/chromium_org/base/files/
H A Dfile_path_constants.cc10 const FilePath::CharType FilePath::kSeparators[] = FILE_PATH_LITERAL("\\/");
12 const FilePath::CharType FilePath::kSeparators[] = FILE_PATH_LITERAL("/");
15 const size_t FilePath::kSeparatorsLength = arraysize(kSeparators);
17 const FilePath::CharType FilePath::kCurrentDirectory[] = FILE_PATH_LITERAL(".");
18 const FilePath::CharType FilePath::kParentDirectory[] = FILE_PATH_LITERAL("..");
20 const FilePath
[all...]
/external/chromium_org/content/shell/app/
H A Dpaths_mac.h9 class FilePath;
19 base::FilePath GetResourcesPakFilePath();
22 base::FilePath GetInfoPlistPath();
/external/chromium_org/net/base/
H A Dtest_data_directory.h12 // Returns the FilePath object representing the absolute path in the source
14 base::FilePath GetTestCertsDirectory();
16 // Returns the base::FilePath object representing the path to client
20 base::FilePath GetTestClientCertsDirectory();
22 // Returns the base::FilePath object representing the relative path containing
23 // resource files for testing WebSocket. Typically the FilePath will be used as
25 base::FilePath GetWebSocketTestDataDirectory();
H A Dtest_data_directory.cc13 const base::FilePath::CharType kCertificateRelativePath[] =
17 base::FilePath GetTestCertsDirectory() {
18 base::FilePath src_root;
23 base::FilePath GetTestClientCertsDirectory() {
25 return base::FilePath(kCertificateRelativePath);
31 base::FilePath GetWebSocketTestDataDirectory() {
32 base::FilePath data_dir(FILE_PATH_LITERAL("net/data/websocket"));
/external/chromium_org/net/tools/dump_cache/
H A Ddump_files.h15 int GetMajorVersion(const base::FilePath& input_path);
18 int DumpContents(const base::FilePath& input_path);
21 int DumpHeaders(const base::FilePath& input_path);
/external/deqp/framework/delibs/decpp/
H A DdeFilePath.hpp36 class FilePath class in namespace:de
50 FilePath (void);
51 FilePath (const std::string& path);
52 FilePath (const char* path);
53 FilePath (const std::vector<std::string>& components);
54 ~FilePath (void);
64 static FilePath join (const FilePath& a, const FilePath& b);
65 FilePath
88 inline FilePath::FilePath (void) function in class:de::FilePath
92 inline FilePath::FilePath (const std::string& path) function in class:de::FilePath
97 inline FilePath::FilePath (const char* path) function in class:de::FilePath
[all...]
/external/chromium_org/components/webdata/common/
H A Dwebdata_constants.cc7 const base::FilePath::CharType kWebDataFilename[] =
/external/chromium_org/chrome/test/chromedriver/chrome/
H A Dchrome_finder.h13 class FilePath;
17 bool FindChrome(base::FilePath* browser_exe);
22 const base::Callback<bool(const base::FilePath&)>& exists_func,
23 const std::vector<base::FilePath>& rel_paths,
24 const std::vector<base::FilePath>& locations,
25 base::FilePath* out_path);
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
H A Dgtest-filepath.h48 // FilePath - a class for file and directory pathname manipulation which
53 // A FilePath with a value ending in a path separator ("like/this/") represents
59 class GTEST_API_ FilePath { class in namespace:testing::internal
61 FilePath() : pathname_("") { } function in class:testing::internal::FilePath
62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } function in class:testing::internal::FilePath
64 explicit FilePath(const char* pathname) : pathname_(pathname) { function in class:testing::internal::FilePath
68 explicit FilePath(const String& pathname) : pathname_(pathname) { function in class:testing::internal::FilePath
72 FilePath& operator=(const FilePath
[all...]
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-filepath.h48 // FilePath - a class for file and directory pathname manipulation which
53 // A FilePath with a value ending in a path separator ("like/this/") represents
59 class GTEST_API_ FilePath { class in namespace:testing::internal
61 FilePath() : pathname_("") { } function in class:testing::internal::FilePath
62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } function in class:testing::internal::FilePath
64 explicit FilePath(const char* pathname) : pathname_(pathname) { function in class:testing::internal::FilePath
68 explicit FilePath(const String& pathname) : pathname_(pathname) { function in class:testing::internal::FilePath
72 FilePath& operator=(const FilePath
[all...]
/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-filepath.h48 // FilePath - a class for file and directory pathname manipulation which
53 // A FilePath with a value ending in a path separator ("like/this/") represents
59 class GTEST_API_ FilePath { class in namespace:testing::internal
61 FilePath() : pathname_("") { } function in class:testing::internal::FilePath
62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } function in class:testing::internal::FilePath
64 explicit FilePath(const char* pathname) : pathname_(pathname) { function in class:testing::internal::FilePath
68 explicit FilePath(const String& pathname) : pathname_(pathname) { function in class:testing::internal::FilePath
72 FilePath& operator=(const FilePath
[all...]
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-filepath.h48 // FilePath - a class for file and directory pathname manipulation which
53 // A FilePath with a value ending in a path separator ("like/this/") represents
59 class FilePath { class in namespace:testing::internal
61 FilePath() : pathname_("") { } function in class:testing::internal::FilePath
62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } function in class:testing::internal::FilePath
64 explicit FilePath(const char* pathname) : pathname_(pathname) { function in class:testing::internal::FilePath
68 explicit FilePath(const String& pathname) : pathname_(pathname) { function in class:testing::internal::FilePath
72 FilePath& operator=(const FilePath
[all...]
/external/chromium_org/testing/gtest/include/gtest/internal/
H A Dgtest-filepath.h48 // FilePath - a class for file and directory pathname manipulation which
53 // A FilePath with a value ending in a path separator ("like/this/") represents
59 class GTEST_API_ FilePath { class in namespace:testing::internal
61 FilePath() : pathname_("") { } function in class:testing::internal::FilePath
62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } function in class:testing::internal::FilePath
64 explicit FilePath(const std::string& pathname) : pathname_(pathname) { function in class:testing::internal::FilePath
68 FilePath& operator=(const FilePath& rhs) {
73 void Set(const FilePath
[all...]
/external/gtest/include/gtest/internal/
H A Dgtest-filepath.h48 // FilePath - a class for file and directory pathname manipulation which
53 // A FilePath with a value ending in a path separator ("like/this/") represents
59 class GTEST_API_ FilePath { class in namespace:testing::internal
61 FilePath() : pathname_("") { } function in class:testing::internal::FilePath
62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } function in class:testing::internal::FilePath
64 explicit FilePath(const std::string& pathname) : pathname_(pathname) { function in class:testing::internal::FilePath
68 FilePath& operator=(const FilePath& rhs) {
73 void Set(const FilePath
[all...]
/external/chromium_org/extensions/common/
H A Dextension_resource.h15 // JavaScript file. This is more complicated than just a simple FilePath
30 const base::FilePath& extension_root,
31 const base::FilePath& relative_path);
43 const base::FilePath& GetFilePath() const;
53 static base::FilePath GetFilePath(const base::FilePath& extension_root,
54 const base::FilePath& relative_path,
59 const base::FilePath& extension_root() const { return extension_root_; }
60 const base::FilePath& relative_path() const { return relative_path_; }
65 base::FilePath
[all...]
/external/chromium_org/base/android/
H A Dpath_utils.h14 class FilePath;
19 // application. The result is placed in the FilePath pointed to by 'result'.
22 BASE_EXPORT bool GetDataDirectory(FilePath* result);
26 BASE_EXPORT bool GetDatabaseDirectory(FilePath* result);
29 // the FilePath pointed to by 'result'. This method is dedicated for
32 BASE_EXPORT bool GetCacheDirectory(FilePath* result);
35 // in the FilePath pointed to by 'result'.
36 BASE_EXPORT bool GetDownloadsDirectory(FilePath* result);
40 // the FilePath pointed to by 'result'.
41 BASE_EXPORT bool GetNativeLibraryDirectory(FilePath* resul
[all...]
/external/chromium_org/components/autofill/core/browser/
H A Ddata_driven_test.h27 void RunDataDrivenTest(const base::FilePath& input_directory,
28 const base::FilePath& output_directory,
29 const base::FilePath::StringType& file_name_pattern);
38 // Return |base::FilePath|s to the test input and output subdirectories
40 base::FilePath GetInputDirectory(const base::FilePath::StringType& test_name);
41 base::FilePath GetOutputDirectory(
42 const base::FilePath::StringType& test_name);
45 DataDrivenTest(const base::FilePath& test_data_directory);
49 base::FilePath test_data_directory
[all...]
/external/chromium_org/third_party/zlib/google/
H A Dzip.h20 typedef base::Callback<bool(const base::FilePath&)> FilterCallback;
21 bool ZipWithFilterCallback(const base::FilePath& src_dir,
22 const base::FilePath& dest_file,
28 bool Zip(const base::FilePath& src_dir, const base::FilePath& dest_file,
36 bool ZipFiles(const base::FilePath& src_dir,
37 const std::vector<base::FilePath>& src_relative_paths,
42 bool Unzip(const base::FilePath& zip_file, const base::FilePath& dest_dir);
/external/chromium_org/chrome/installer/setup/
H A Darchive_patch_helper.h34 ArchivePatchHelper(const base::FilePath& working_directory,
35 const base::FilePath& compressed_archive,
36 const base::FilePath& patch_source,
37 const base::FilePath& target);
45 static bool UncompressAndPatch(const base::FilePath& working_directory,
46 const base::FilePath& compressed_archive,
47 const base::FilePath& patch_source,
48 const base::FilePath& target);
53 bool Uncompress(base::FilePath* last_uncompressed_file);
63 const base::FilePath
[all...]
/external/chromium_org/ui/shell_dialogs/
H A Dselected_file_info.h19 base::FilePath file_path;
27 base::FilePath local_path;
33 base::FilePath::StringType display_name;
36 SelectedFileInfo(const base::FilePath& in_file_path,
37 const base::FilePath& in_local_path);
/external/chromium_org/chrome/common/
H A Dchrome_constants.h28 extern const base::FilePath::CharType kBrowserProcessExecutableName[];
29 extern const base::FilePath::CharType kHelperProcessExecutableName[];
30 extern const base::FilePath::CharType kBrowserProcessExecutablePath[];
31 extern const base::FilePath::CharType kHelperProcessExecutablePath[];
32 extern const base::FilePath::CharType kBrowserProcessExecutableNameChromium[];
33 extern const base::FilePath::CharType kHelperProcessExecutableNameChromium[];
34 extern const base::FilePath::CharType kBrowserProcessExecutablePathChromium[];
35 extern const base::FilePath::CharType kHelperProcessExecutablePathChromium[];
41 extern const base::FilePath::CharType kFrameworkName[];
51 extern const base::FilePath
[all...]
/external/chromium_org/base/test/
H A Dtest_file_util.h22 class FilePath;
28 bool EvictFileFromSystemCacheWithRetry(const FilePath& file);
33 bool DieFileDie(const FilePath& file, bool recurse);
37 bool EvictFileFromSystemCache(const FilePath& file);
41 bool VolumeSupportsADS(const FilePath& path);
47 bool HasInternetZoneIdentifier(const FilePath& full_path);
52 bool MakeFileUnreadable(const FilePath& path) WARN_UNUSED_RESULT;
53 bool MakeFileUnwritable(const FilePath& path) WARN_UNUSED_RESULT;
58 explicit FilePermissionRestorer(const FilePath& path);
62 const FilePath path
[all...]
H A Dtest_shortcut_win.h18 void ValidatePathsAreEqual(const base::FilePath& expected_path,
19 const base::FilePath& actual_path);
24 void ValidateShortcut(const FilePath& shortcut_path,
/external/chromium_org/chrome/browser/first_run/
H A Dfirst_run_internal_linux.cc20 base::FilePath MasterPrefsPath() {
22 base::FilePath master_prefs;
24 return base::FilePath();
/external/chromium_org/chrome/browser/policy/
H A Dpolicy_path_parser.h49 base::FilePath::StringType ExpandPathVariables(
50 const base::FilePath::StringType& untranslated_string);
61 void CheckUserDataDirPolicy(base::FilePath* user_data_dir);

Completed in 570 milliseconds

1234567891011>>