Searched defs:FilePath (Results 1 - 10 of 10) sorted by relevance

/external/chromium/sdch/open-vcdiff/src/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
63 explicit FilePath(const char* pathname) : pathname_(pathname) { } function in class:testing::internal::FilePath
64 explicit FilePath(const String& pathname) : pathname_(pathname) { } function in class:testing::internal::FilePath
66 void Set(const FilePath& rhs) {
77 static FilePath MakeFileNam
[all...]
/external/chromium/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 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/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/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/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/base/
H A Dfile_path.h5 // FilePath is a container for pathnames stored in a platform's native string
25 // FilePath objects are intended to be used anywhere paths are. An
26 // application may pass FilePath objects around internally, masking the
29 // OpenFile(const FilePath &) function may be made available, allowing all
38 // Several methods are available to perform common operations on a FilePath
41 // to an existing FilePath object (Append). These methods are highly
47 // instances of FilePath objects, and are therefore safe to use on const
50 // To aid in initialization of FilePath objects from string literals, a
55 // Because a FilePath object should not be instantiated at the global scope,
56 // instead, use a FilePath
127 class BASE_API FilePath { class
[all...]
H A Dfile_path.cc33 const FilePath::CharType FilePath::kSeparators[] = FILE_PATH_LITERAL("\\/");
35 const FilePath::CharType FilePath::kSeparators[] = FILE_PATH_LITERAL("/");
38 const FilePath::CharType FilePath::kCurrentDirectory[] = FILE_PATH_LITERAL(".");
39 const FilePath::CharType FilePath::kParentDirectory[] = FILE_PATH_LITERAL("..");
41 const FilePath::CharType FilePath
164 FilePath::FilePath() { function in class:FilePath
167 FilePath::FilePath(const FilePath& that) : path_(that.path_) { function in class:FilePath
170 FilePath::FilePath(const StringType& path) : path_(path) { function in class:FilePath
[all...]
/external/chromium/base/files/
H A Dfile_path_watcher_browsertest.cc101 virtual void OnFilePathChanged(const FilePath&) { argument
105 virtual void OnFilePathError(const FilePath& path) {
118 SetupWatchTask(const FilePath& target,
135 const FilePath target_;
164 FilePath test_file() {
169 bool WriteFile(const FilePath& file, const std::string& content) {
175 bool SetupWatch(const FilePath& target,
229 FilePath source_file(temp_dir_.path().AppendASCII("source"));
262 virtual void OnFilePathChanged(const FilePath& path) {
311 FilePath di
[all...]
/external/llvm/lib/Archive/
H A DArchiveWriter.cpp69 Archive* Archive::CreateEmpty(const sys::Path& FilePath, LLVMContext& C) { argument
70 Archive* result = new Archive(FilePath, C);
/external/chromium/chrome/browser/profiles/
H A Dprofile_impl.cc143 void GetCacheParameters(ContextType type, FilePath* cache_path,
168 FilePath GetCachePath(const FilePath& base) {
172 FilePath GetMediaCachePath(const FilePath& base) {
179 explicit ProfileSizeTask(const FilePath& path) : path_(path) {}
184 FilePath path_;
232 Profile* Profile::CreateProfile(const FilePath& path) {
244 Profile* Profile::CreateProfileAsync(const FilePath&path, argument
262 ProfileImpl::ProfileImpl(const FilePath
[all...]

Completed in 313 milliseconds