| /external/mesa3d/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...] |
| /ndk/sources/third_party/googletest/googletest/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/chromium_org/chrome/browser/extensions/ |
| extension_assets_manager_chromeos.h | 42 const base::FilePath& unpacked_extension_root, 43 const base::FilePath& local_install_dir, 49 const base::FilePath& local_install_dir, 50 const base::FilePath& extension_root) OVERRIDE; 53 static base::FilePath GetSharedInstallDir(); 60 std::multimap<std::string, base::FilePath>* live_extension_paths); 62 static void SetSharedInstallDirForTesting(const base::FilePath& install_dir); 83 const base::FilePath& unpacked_extension_root, 84 const base::FilePath& local_install_dir, 92 const base::FilePath& unpacked_extension_root) [all...] |
| /external/chromium_org/chrome/browser/chromeos/file_manager/ |
| filesystem_api_util.h | 19 class FilePath; 27 bool IsUnderNonNativeLocalPath(Profile* profile, const base::FilePath& path); 33 const base::FilePath& path, 40 const base::FilePath& path, 48 const base::FilePath& path,
|
| path_util_unittest.cc | 43 const base::FilePath kDownloads = GetDownloadsFolderForProfile(&profile); 45 base::FilePath path; 49 base::FilePath::FromUTF8Unsafe("/home/chronos/user/Downloads"), 55 base::FilePath::FromUTF8Unsafe("/home/chronos/user/Downloads/a/b"), 68 base::FilePath::FromUTF8Unsafe("/home/chronos/user/dl"), 75 const base::FilePath kDrive = drive::util::GetDriveMountPointPath(profile); 76 ASSERT_EQ(base::FilePath::FromUTF8Unsafe("/special/drive-hash"), kDrive); 78 base::FilePath path; 82 base::FilePath::FromUTF8Unsafe("/special/drive"), 88 base::FilePath::FromUTF8Unsafe("/special/drive/a/b") [all...] |
| file_manager_jstest.cc | 17 void RunTest(const base::FilePath& file) { 19 base::FilePath(FILE_PATH_LITERAL("file_manager/unit_tests")), file); 33 RunTest(base::FilePath( 39 RunTest(base::FilePath( 45 RunTest(base::FilePath( 51 RunTest(base::FilePath(FILE_PATH_LITERAL("device_handler_unittest.html"))); 56 RunTest(base::FilePath(FILE_PATH_LITERAL("metadata_cache_unittest.html")));
|
| /external/chromium_org/chrome/browser/importer/ |
| firefox_profile_lock.h | 70 explicit FirefoxProfileLock(const base::FilePath& path); 84 static const base::FilePath::CharType* kLockFileName; 85 static const base::FilePath::CharType* kOldLockFileName; 90 base::FilePath lock_file_; 101 base::FilePath old_lock_file_;
|
| /external/chromium_org/chrome/browser/media/ |
| webrtc_log_list.cc | 24 base::FilePath log_list_path = GetWebRtcLogListFileForDirectory( 30 base::FilePath WebRtcLogList::GetWebRtcLogDirectoryForProfile( 31 const base::FilePath& profile_path) { 37 base::FilePath WebRtcLogList::GetWebRtcLogListFileForDirectory( 38 const base::FilePath& dir) {
|
| /external/chromium_org/chrome/browser/media_galleries/fileapi/ |
| iapps_data_provider.h | 28 explicit IAppsDataProvider(const base::FilePath& library_path); 36 const base::FilePath& library_path() const; 46 virtual void DoParseLibrary(const base::FilePath& library_path, 50 virtual void OnLibraryChanged(const base::FilePath& path, bool error); 58 const base::FilePath library_path_;
|
| media_path_filter.h | 22 static bool ShouldSkip(const base::FilePath& path); 28 bool Match(const base::FilePath& path); 32 MediaGalleryScanFileType GetType(const base::FilePath& path); 35 typedef std::vector<base::FilePath::StringType> MediaFileExtensionList; 39 typedef base::hash_map<base::FilePath::StringType, int> MediaFileExtensionMap; 47 const base::FilePath::CharType* const* extensions_list, 51 const base::FilePath::CharType* extension,
|
| /external/chromium_org/chrome/browser/sync_file_system/ |
| subtree_set.h | 12 class FilePath; 25 bool IsDisjointWith(const base::FilePath& subtree_root) const; 29 bool insert(const base::FilePath& subtree_root); 33 bool erase(const base::FilePath& subtree_root); 48 typedef base::FilePath::StringType StringType;
|
| /external/chromium_org/chrome/browser/web_applications/ |
| web_app_win.h | 29 base::FilePath CreateShortcutInWebAppDir(const base::FilePath& web_app_path, 40 bool CheckAndSaveIcon(const base::FilePath& icon_file, 43 base::FilePath GetIconFilePath(const base::FilePath& web_app_path,
|
| /external/chromium_org/chrome/common/ |
| logging_chrome.h | 16 class FilePath; 39 base::FilePath GetSessionLogFile(const base::CommandLine& command_line); 49 base::FilePath GetLogFileName(); 69 base::FilePath GenerateTimestampedName(const base::FilePath& base_path,
|
| /external/chromium_org/chrome/utility/image_writer/ |
| image_writer_handler.h | 15 class FilePath; 41 void OnWriteStart(const base::FilePath& image, const base::FilePath& device); 42 void OnVerifyStart(const base::FilePath& image, const base::FilePath& device);
|
| /external/chromium_org/components/storage_monitor/ |
| mtab_watcher_linux.h | 30 typedef std::map<base::FilePath, base::FilePath> MountPointDeviceMap; 40 MtabWatcherLinux(const base::FilePath& mtab_path, 49 void OnFilePathChanged(const base::FilePath& path, bool error); 52 const base::FilePath mtab_path_;
|
| /external/chromium_org/extensions/browser/api/storage/ |
| leveldb_settings_storage_factory.cc | 15 base::FilePath GetDatabasePath(const base::FilePath& base_path, 23 const base::FilePath& base_path, 29 const base::FilePath& base_path, 31 base::FilePath path = GetDatabasePath(base_path, extension_id);
|
| /external/chromium_org/net/disk_cache/simple/ |
| simple_index_file_win.cc | 16 const base::FilePath& cache_path, 18 const base::FilePath current_directory(FILE_PATH_LITERAL(".")); 19 const base::FilePath parent_directory(FILE_PATH_LITERAL("..")); 20 const base::FilePath::StringType file_pattern = FILE_PATH_LITERAL("*"); 24 for (base::FilePath file_path = enumerator.Next(); !file_path.empty();
|
| /external/protobuf/gtest/src/ |
| gtest-filepath.cc | 32 #include <gtest/internal/gtest-filepath.h> 85 FilePath FilePath::GetCurrentDir() { 89 return FilePath(kCurrentDirectoryString); 92 return FilePath(_getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd); 95 return FilePath(getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd); 99 // Returns a copy of the FilePath with the case-insensitive extension removed. 100 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns 101 // FilePath("dir/file"). If a case-insensitive extension is not 102 // found, returns a copy of the original FilePath [all...] |
| /external/chromium_org/base/files/ |
| file_enumerator.h | 35 // for (base::FilePath name = enum.Next(); !name.empty(); name = enum.Next()) 50 FilePath GetName() const; 71 FilePath filename_; 104 FileEnumerator(const FilePath& root_path, 107 FileEnumerator(const FilePath& root_path, 110 const FilePath::StringType& pattern); 118 FilePath Next(); 125 bool ShouldSkip(const FilePath& path); 136 const FilePath& source, bool show_links); 145 FilePath root_path_ [all...] |
| /external/chromium_org/chrome/browser/download/ |
| download_target_determiner_delegate.h | 16 class FilePath; 34 const base::FilePath& new_virtual_path, 42 typedef base::Callback<void(const base::FilePath& reserved_path, 50 typedef base::Callback<void(const base::FilePath& virtual_path)> 57 typedef base::Callback<void(const base::FilePath&)> LocalPathCallback; 74 const base::FilePath& virtual_path, 92 const base::FilePath& virtual_path, 101 const base::FilePath& virtual_path, 109 const base::FilePath& virtual_path, 115 const base::FilePath& virtual_path [all...] |
| download_file_picker.h | 12 class FilePath; 30 typedef base::Callback<void(const base::FilePath& virtual_path)> 37 const base::FilePath& suggested_path, 42 const base::FilePath& suggested_path, 48 void OnFileSelected(const base::FilePath& virtual_path); 51 virtual void FileSelected(const base::FilePath& path, 57 base::FilePath suggested_path_;
|
| /external/chromium_org/chrome/browser/profiles/ |
| profile_info_cache_unittest.h | 18 class FilePath; 30 virtual void OnProfileAdded(const base::FilePath& profile_path) OVERRIDE; 32 const base::FilePath& profile_path) OVERRIDE; 34 const base::FilePath& profile_path, 37 const base::FilePath& profile_path, 39 virtual void OnProfileAvatarChanged(const base::FilePath& profile_path) OVERRIDE; 57 base::FilePath GetProfilePath(const std::string& base_name);
|
| /external/chromium_org/chrome/test/base/ |
| javascript_browser_test.h | 16 static const base::FilePath::CharType kA11yAuditLibraryJSPath[]; 17 static const base::FilePath::CharType kMockJSPath[]; 18 static const base::FilePath::CharType kWebUILibraryJS[]; 19 static const base::FilePath::CharType kWebUITestFolder[]; 26 void AddLibrary(const base::FilePath& library_path); 50 std::vector<base::FilePath> user_libraries_; 53 std::vector<base::FilePath> library_search_paths_;
|
| /external/chromium_org/components/nacl/browser/ |
| test_nacl_browser_delegate.cc | 18 bool TestNaClBrowserDelegate::GetCacheDirectory(base::FilePath* cache_dir) { 22 bool TestNaClBrowserDelegate::GetPluginDirectory(base::FilePath* plugin_dir) { 26 bool TestNaClBrowserDelegate::GetPnaclDirectory(base::FilePath* pnacl_dir) { 30 bool TestNaClBrowserDelegate::GetUserDirectory(base::FilePath* user_dir) { 46 const base::FilePath& profile_directory, 47 base::FilePath* file_path) { 64 const base::FilePath& profile_directory,
|
| test_nacl_browser_delegate.h | 28 virtual bool GetCacheDirectory(base::FilePath* cache_dir) OVERRIDE; 29 virtual bool GetPluginDirectory(base::FilePath* plugin_dir) OVERRIDE; 30 virtual bool GetPnaclDirectory(base::FilePath* pnacl_dir) OVERRIDE; 31 virtual bool GetUserDirectory(base::FilePath* user_dir) OVERRIDE; 37 const base::FilePath& profile_directory, 38 base::FilePath* file_path) OVERRIDE; 43 virtual bool IsNonSfiModeAllowed(const base::FilePath& profile_directory,
|